/* ═══════════════════════════════════════════════════════════════
   V2 MALL AMBIKAPUR — UNIFIED STYLESHEET
   Indian Mall Design • Saffron + Gold + Maroon palette
   Includes: reset, variables, typography, layout, header, navbar,
   hero, components, forms, footer, animations, responsive
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   1. RESET
   ═══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overscroll-behavior-x: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   2. CSS VARIABLES — Indian Mall Palette
   ═══════════════════════════════════════════════════════════════ */
:root {
    /* ─── Brand Colors (Saffron / Gold / Maroon) ─── */
    --c-saffron: #E85D04;
    --c-saffron-light: #FF8F3F;
    --c-saffron-dark: #C44A00;
    --c-gold: #C9A84C;
    --c-gold-light: #E4C87A;
    --c-gold-dark: #A8871F;
    --c-maroon: #6B0F1A;
    --c-maroon-light: #8B1F2C;
    --c-kumkum: #B00020;
    --c-turmeric: #F2B705;

    /* ─── Neutrals (Cream / Warm) ─── */
    --c-cream: #FDF6EC;
    --c-cream-dark: #F5E6D3;
    --c-beige: #EAD7BC;

    /* ─── Surfaces ─── */
    --c-bg: #FFFDF8;
    --c-bg-alt: #FDF6EC;
    --c-surface: #FFFFFF;
    --c-surface-2: #FBF3E4;
    --c-surface-3: #F5E6D3;

    /* ─── Dark Surfaces (for dark sections) ─── */
    --c-dark: #1F1208;
    --c-dark-2: #2B1810;
    --c-dark-3: #3D2817;

    /* ─── Text ─── */
    --c-text: #2B1810;
    --c-text-2: #4A3525;
    --c-text-3: #6B5544;
    --c-text-4: #9A8574;
    --c-text-inverse: #FDF6EC;
    --c-text-inverse-soft: rgba(253, 246, 236, 0.72);

    /* ─── Borders ─── */
    --c-border: #EAD7BC;
    --c-border-2: #D9C4A3;
    --c-gold-border: rgba(201, 168, 76, 0.35);
    --c-gold-border-strong: rgba(201, 168, 76, 0.6);

    /* ─── Semantic ─── */
    --c-success: #1F9E82;
    --c-whatsapp: #25D366;
    --c-whatsapp-dark: #128C7E;

    /* ─── Shadows ─── */
    --shadow-sm: 0 1px 3px rgba(43, 24, 16, 0.06), 0 1px 2px rgba(43, 24, 16, 0.04);
    --shadow-md: 0 4px 12px rgba(43, 24, 16, 0.08), 0 2px 4px rgba(43, 24, 16, 0.04);
    --shadow-lg: 0 12px 32px rgba(43, 24, 16, 0.12), 0 4px 8px rgba(43, 24, 16, 0.06);
    --shadow-xl: 0 24px 64px rgba(43, 24, 16, 0.16), 0 8px 16px rgba(43, 24, 16, 0.08);
    --shadow-gold: 0 8px 24px rgba(201, 168, 76, 0.28);

    /* ─── Fonts ─── */
    --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
    --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;
    --font-hindi: "Tiro Devanagari Hindi", "Poppins", serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

    /* ─── Font Sizes ─── */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* ─── Spacing ─── */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;

    /* ─── Radius ─── */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 32px;
    --r-full: 9999px;

    /* ─── Layout ─── */
    --container: 1240px;
    --container-narrow: 860px;
    --header-h: 76px;
    --topbar-h: 40px;

    /* ─── Motion ─── */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 180ms;
    --dur: 300ms;
    --dur-slow: 500ms;
}

/* ═══════════════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--c-text);
    letter-spacing: -0.015em;
}

h1 {
    font-size: clamp(2rem, 5vw, var(--text-6xl));
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, var(--text-4xl));
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, var(--text-2xl));
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

p {
    color: var(--c-text-2);
    margin-bottom: var(--sp-4);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--c-saffron);
    transition: color var(--dur-fast) var(--ease);
}

a:hover {
    color: var(--c-saffron-dark);
}

strong,
b {
    font-weight: 600;
    color: var(--c-text);
}

em,
i {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
    color: var(--c-text-3);
}

/* Hindi text */
.hindi,
[lang="hi"],
.hero__namaste-hi,
.hero__title .line-1 {
    font-family: var(--font-hindi);
    font-weight: 400;
    letter-spacing: 0;
}

/* Lead paragraph */
.lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--c-text-2);
    font-weight: 400;
}

/* Section titles */
.section-title {
    font-size: clamp(1.75rem, 3.5vw, var(--text-4xl));
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-4);
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-saffron);
    margin-bottom: var(--sp-3);
}

.section-desc {
    font-size: var(--text-base);
    color: var(--c-text-3);
    max-width: 640px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--sp-12);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Divider — Indian ornamental style */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-saffron) 0%, var(--c-gold) 50%, var(--c-maroon) 100%);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-5);
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.divider::before {
    left: -14px;
}

.divider::after {
    right: -14px;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   4. GLOBAL / LAYOUT
   ═══════════════════════════════════════════════════════════════ */
body {
    overflow-x: hidden;
}

main {
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--sp-5);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-block: clamp(3.5rem, 8vw, 6.5rem);
    position: relative;
}

.section--dark {
    background: linear-gradient(180deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
    color: var(--c-text-inverse);
}

.section--dark .section-title,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--c-text-inverse);
}

.section--dark .section-desc,
.section--dark p {
    color: var(--c-text-inverse-soft);
}

.section--dark .section-tag {
    color: var(--c-gold-light);
}

.section--dark .divider {
    background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-saffron-light) 100%);
}

.section--dark .divider::before,
.section--dark .divider::after {
    background: var(--c-gold);
}

.section--darker {
    background: var(--c-dark);
    color: var(--c-text-inverse);
}

.section--darker .section-title,
.section--darker h1,
.section--darker h2,
.section--darker h3 {
    color: var(--c-text-inverse);
}

.section--darker .section-desc,
.section--darker p {
    color: var(--c-text-inverse-soft);
}

.section--darker .section-tag {
    color: var(--c-gold-light);
}

.section--darker .divider {
    background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-saffron-light) 100%);
}

.section--darker .divider::before,
.section--darker .divider::after {
    background: var(--c-gold);
}

.section--cream {
    background: var(--c-cream);
}

/* Decorative subtle pattern overlay for cream section */
.section--cream::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(232, 93, 4, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.section--cream > .container {
    position: relative;
    z-index: 1;
}

/* Grid utilities */
.grid {
    display: grid;
    gap: var(--sp-6);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-6);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-6);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--sp-6);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* ═══════════════════════════════════════════════════════════════
   5. TOPBAR (Announcement Ticker)
   ═══════════════════════════════════════════════════════════════ */
.topbar {
    background: linear-gradient(90deg, var(--c-maroon) 0%, var(--c-saffron-dark) 50%, var(--c-maroon) 100%);
    color: var(--c-cream);
    font-size: var(--text-xs);
    position: relative;
    z-index: 60;
    height: var(--topbar-h);
    overflow: hidden;
}

.topbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold), var(--c-gold-light), var(--c-gold), var(--c-gold-dark));
}

.topbar__inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--sp-5);
    gap: var(--sp-6);
}

.topbar__marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.topbar__track {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    white-space: nowrap;
    animation: marquee 45s linear infinite;
    will-change: transform;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.topbar__item strong {
    color: var(--c-gold-light);
    font-weight: 600;
}

.topbar__dot {
    color: var(--c-gold);
    font-size: 1.2em;
}

.topbar__utility {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
}

.topbar__link {
    color: var(--c-cream);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-xs);
    transition: color var(--dur-fast) var(--ease);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.topbar__link:hover {
    color: var(--c-gold-light);
}

.topbar__sep {
    color: var(--c-gold-border);
    opacity: 0.6;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════════
   6. HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--c-gold-border);
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    height: var(--header-h);
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--c-gold-border-strong);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
    height: var(--header-h);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
    transition: transform var(--dur-fast) var(--ease);
}

.site-logo:hover {
    transform: translateY(-1px);
}

.site-logo__mark {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
}

.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--c-maroon);
    letter-spacing: -0.02em;
}

.site-logo__sub {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--c-saffron);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    padding: var(--sp-2) var(--sp-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-text-2);
    border-radius: var(--r-sm);
    transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--c-saffron);
    background: rgba(232, 93, 4, 0.06);
}

.nav-link.active {
    color: var(--c-maroon);
    font-weight: 600;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-saffron), var(--c-gold));
    border-radius: var(--r-full);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    color: var(--c-text-2);
    background: transparent;
    border: 1px solid var(--c-border);
    transition: all var(--dur-fast) var(--ease);
}

.header-search-btn:hover {
    color: var(--c-saffron);
    border-color: var(--c-saffron);
    background: rgba(232, 93, 4, 0.05);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--r-sm);
    border: 1px solid var(--c-border);
    transition: all var(--dur-fast) var(--ease);
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--c-text);
    border-radius: var(--r-full);
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   7. MOBILE MENU
   ═══════════════════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 88vw);
    height: 100vh;
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-bg) 100%);
    z-index: 100;
    padding: var(--sp-24) var(--sp-6) var(--sp-6);
    transition: right var(--dur-slow) var(--ease);
    box-shadow: -8px 0 40px rgba(43, 24, 16, 0.18);
    overflow-y: auto;
    border-left: 3px solid var(--c-gold);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) var(--sp-3);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--c-text);
    border-bottom: 1px dashed var(--c-border);
    transition: all var(--dur-fast) var(--ease);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--c-saffron);
    padding-left: var(--sp-5);
    background: rgba(232, 93, 4, 0.04);
}

.mobile-nav-link span {
    color: var(--c-gold);
    font-size: var(--text-base);
}

.mobile-menu__footer {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
    border-top: 2px solid var(--c-gold-border);
}

.mobile-menu__hours {
    font-size: var(--text-xs);
    color: var(--c-text-3);
    line-height: 1.5;
}

.mobile-menu__hours strong {
    display: block;
    color: var(--c-maroon);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   8. SEARCH OVERLAY
   ═══════════════════════════════════════════════════════════════ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 18, 8, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: min(640px, 90vw);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.search-overlay__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--c-gold-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.search-overlay__input {
    width: 100%;
    padding: var(--sp-5) 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--c-gold);
    color: var(--c-cream);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, var(--text-3xl));
    font-weight: 400;
    outline: none;
}

.search-overlay__input::placeholder {
    color: rgba(253, 246, 236, 0.35);
}

.search-overlay__results {
    margin-top: var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.search-overlay__close {
    position: absolute;
    top: var(--sp-6);
    right: var(--sp-6);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--c-gold-border-strong);
    color: var(--c-cream);
    font-size: var(--text-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur-fast) var(--ease);
}

.search-overlay__close:hover {
    background: var(--c-saffron);
    border-color: var(--c-saffron);
    transform: rotate(90deg);
}

/* ═══════════════════════════════════════════════════════════════
   9. HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h) - var(--topbar-h));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vh, 6rem) var(--sp-5) var(--sp-20);
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(232, 93, 4, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, var(--c-cream) 0%, var(--c-bg) 40%, var(--c-bg) 100%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 60%, var(--c-bg) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Decorative elements */
.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: blobFloat 18s ease-in-out infinite;
}

.hero__blob--1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--c-saffron-light), transparent 70%);
    top: -80px;
    left: -100px;
    animation-delay: 0s;
}

.hero__blob--2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--c-gold-light), transparent 70%);
    bottom: -100px;
    right: -120px;
    animation-delay: -6s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.08); }
    66% { transform: translate(-25px, 30px) scale(0.94); }
}

/* Rangoli decorations */
.hero__rangoli {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.16;
    background-image:
        repeating-conic-gradient(from 0deg at 50% 50%,
            var(--c-saffron) 0deg 8deg,
            transparent 8deg 16deg,
            var(--c-gold) 16deg 24deg,
            transparent 24deg 32deg,
            var(--c-maroon) 32deg 40deg,
            transparent 40deg 48deg);
    border-radius: 50%;
    mask-image: radial-gradient(circle, #000 40%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 72%);
    animation: rotateSlow 90s linear infinite;
}

.hero__rangoli--tl {
    top: -60px;
    left: -60px;
}

.hero__rangoli--br {
    bottom: -60px;
    right: -60px;
    animation-direction: reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Diya (lamp) floating */
.hero__diya {
    position: absolute;
    font-size: 2rem;
    opacity: 0.85;
    filter: drop-shadow(0 0 12px rgba(242, 183, 5, 0.6));
    animation: diyaFlicker 3.5s ease-in-out infinite;
}

.hero__diya--1 {
    top: 18%;
    left: 8%;
    animation-delay: 0s;
}

.hero__diya--2 {
    bottom: 22%;
    right: 10%;
    animation-delay: -1.5s;
}

@keyframes diyaFlicker {
    0%, 100% { opacity: 0.85; transform: translateY(0) scale(1); filter: drop-shadow(0 0 12px rgba(242, 183, 5, 0.6)); }
    50% { opacity: 1; transform: translateY(-6px) scale(1.05); filter: drop-shadow(0 0 22px rgba(242, 183, 5, 0.9)); }
}

/* Sparkles */
.hero__sparkle {
    position: absolute;
    font-size: 1.25rem;
    opacity: 0.7;
    animation: sparkleTwinkle 2.5s ease-in-out infinite;
}

.hero__sparkle--1 {
    top: 30%;
    right: 22%;
    animation-delay: 0s;
}

.hero__sparkle--2 {
    bottom: 30%;
    left: 20%;
    animation-delay: -1.2s;
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.25) rotate(15deg); }
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-6);
    animation: heroFadeUp 1s var(--ease-out) both;
}

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

/* Namaste greeting */
.hero__namaste {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(232, 93, 4, 0.08));
    border: 1px solid var(--c-gold-border-strong);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--sp-2);
}

.hero__namaste-hi {
    font-family: var(--font-hindi);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--c-maroon);
    line-height: 1;
    letter-spacing: 0.02em;
}

.hero__namaste-en {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-saffron);
    font-weight: 500;
}

/* Hero Title */
.hero__title {
    font-size: clamp(2.25rem, 6.5vw, 5.25rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.hero__title .line-1 {
    font-family: var(--font-hindi);
    font-weight: 500;
    color: var(--c-maroon);
    font-size: clamp(1.75rem, 4.8vw, 3.75rem);
    letter-spacing: 0;
    line-height: 1.15;
}

.hero__title .line-2 {
    background: linear-gradient(120deg, var(--c-saffron) 0%, var(--c-gold) 45%, var(--c-maroon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
}

.hero__sub {
    font-size: clamp(1rem, 1.6vw, var(--text-lg));
    color: var(--c-text-2);
    max-width: 640px;
    line-height: 1.7;
    margin: 0;
}

/* Hero CTA */
.hero__cta {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--sp-4);
}

/* Trust markers */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-6);
    justify-content: center;
    margin-top: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px dashed var(--c-border-2);
    max-width: 640px;
    width: 100%;
}

.hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-sm);
    color: var(--c-text-3);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero__trust li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--c-saffron), var(--c-gold));
    color: var(--c-cream);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero Stats Strip */
.hero__stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container);
    padding: 0 var(--sp-5);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--c-border-2);
    border-top: 1px solid var(--c-gold-border-strong);
    border-left: 1px solid var(--c-gold-border-strong);
    border-right: 1px solid var(--c-gold-border-strong);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    overflow: hidden;
    z-index: 3;
    box-shadow: var(--shadow-lg);
    animation: heroFadeUp 1s var(--ease-out) 0.3s both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-1);
    padding: var(--sp-5) var(--sp-3);
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-surface-2) 100%);
    transition: all var(--dur) var(--ease);
    position: relative;
}

.hero__stat:hover {
    background: linear-gradient(180deg, var(--c-surface-2) 0%, var(--c-cream-dark) 100%);
    transform: translateY(-3px);
}

.hero__stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-saffron), var(--c-gold), var(--c-maroon));
    transform: scaleX(0);
    transition: transform var(--dur) var(--ease);
    transform-origin: center;
}

.hero__stat:hover::before {
    transform: scaleX(1);
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, var(--text-2xl));
    font-weight: 700;
    color: var(--c-maroon);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero__stat-label {
    font-size: var(--text-xs);
    color: var(--c-text-3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    text-align: center;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: calc(var(--sp-20) + 100px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    z-index: 2;
    opacity: 0.6;
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--c-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-text-3);
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   10. QUICK INFO STRIP
   ═══════════════════════════════════════════════════════════════ */
.quick-info {
    padding-block: 0;
    background: var(--c-bg);
    position: relative;
    z-index: 4;
    margin-top: -1px;
}

.quick-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    border-left: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    border-radius: 0;
    overflow: hidden;
}

.quick-info__item {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    border-right: 1px solid var(--c-border);
    transition: background var(--dur) var(--ease);
}

.quick-info__item:last-child {
    border-right: none;
}

.quick-info__item:hover {
    background: var(--c-cream);
}

.quick-info__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(201, 168, 76, 0.15));
    border: 1px solid var(--c-gold-border);
    border-radius: var(--r-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-info__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.quick-info__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--c-text-4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.quick-info__value {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-text);
    letter-spacing: 0.01em;
}

.quick-info__link {
    color: var(--c-saffron);
    transition: color var(--dur-fast) var(--ease);
}

.quick-info__link:hover {
    color: var(--c-maroon);
}

/* ═══════════════════════════════════════════════════════════════
   11. BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    border-radius: var(--r-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.btn svg {
    flex-shrink: 0;
}

/* Primary — Saffron Gold gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-saffron-dark) 55%, var(--c-maroon) 100%);
    color: var(--c-cream);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left var(--dur-slow) var(--ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 93, 4, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--c-cream);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--c-maroon);
    border-color: var(--c-maroon);
}

.btn-outline:hover {
    background: var(--c-maroon);
    color: var(--c-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 15, 26, 0.28);
}

/* Outline on dark sections */
.section--dark .btn-outline,
.section--darker .btn-outline,
.site-footer .btn-outline {
    color: var(--c-gold-light);
    border-color: var(--c-gold);
}

.section--dark .btn-outline:hover,
.section--darker .btn-outline:hover,
.site-footer .btn-outline:hover {
    background: var(--c-gold);
    color: var(--c-dark);
    border-color: var(--c-gold);
}

/* WhatsApp */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--c-whatsapp), var(--c-whatsapp-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42);
    color: #fff;
}

/* Sizes */
.btn-sm {
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--text-xs);
    min-height: 38px;
}

.btn-lg {
    padding: var(--sp-4) var(--sp-8);
    font-size: var(--text-base);
    min-height: 52px;
}

/* ═══════════════════════════════════════════════════════════════
   12. FLOOR CARDS
   ═══════════════════════════════════════════════════════════════ */
.floor-grid {
    align-items: stretch;
}

.floor-card {
    position: relative;
    display: block;
    min-height: 420px;
    border-radius: var(--r-xl);
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-lg);
    transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
    cursor: pointer;
}

.floor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
}

.floor-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform var(--dur-slow) var(--ease);
}

.floor-card:hover .floor-card__bg {
    transform: scale(1.08);
}

.floor-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.72) 100%);
}

.floor-card__num {
    position: absolute;
    top: var(--sp-6);
    right: var(--sp-6);
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.floor-card__content {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 420px;
    padding: var(--sp-8) var(--sp-6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.floor-card__label {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: var(--sp-1) var(--sp-3);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-4);
}

.floor-card__title {
    font-size: clamp(1.5rem, 2.5vw, var(--text-2xl));
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-3);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.floor-card__sub {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: var(--sp-5);
    max-width: 42ch;
}

.floor-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    padding: var(--sp-2) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    align-self: flex-start;
    transition: all var(--dur) var(--ease);
}

.floor-card:hover .floor-card__cta {
    gap: var(--sp-4);
    border-bottom-color: #fff;
}

/* Tilt shine effect */
.tilt-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform var(--dur-slow) var(--ease);
}

.tilt-card__shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 45%);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
    border-radius: inherit;
}

.tilt-card:hover .tilt-card__shine {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   13. CATEGORY RIBBON
   ═══════════════════════════════════════════════════════════════ */
.category-ribbon {
    padding-block: var(--sp-8);
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-cream) 50%, var(--c-bg) 100%);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

.category-ribbon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.category-ribbon__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3);
}

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-5);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-text-2);
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.cat-chip span {
    font-size: var(--text-base);
    line-height: 1;
}

.cat-chip:hover {
    background: var(--c-cream);
    border-color: var(--c-saffron);
    color: var(--c-maroon);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cat-chip--accent {
    background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
    color: var(--c-cream);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.3);
}

.cat-chip--accent:hover {
    background: linear-gradient(135deg, var(--c-saffron-dark), var(--c-maroon));
    color: var(--c-cream);
    transform: translateY(-2px) scale(1.03);
}

/* ═══════════════════════════════════════════════════════════════
   14. OFFER CARDS
   ═══════════════════════════════════════════════════════════════ */
.offer-card {
    background: var(--c-surface);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
}

.section--dark .offer-card,
.section--darker .offer-card {
    background: linear-gradient(180deg, var(--c-dark-2) 0%, var(--c-dark-3) 100%);
    border-color: rgba(201, 168, 76, 0.32);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--c-gold-border-strong);
    border-color: var(--c-gold);
}

.offer-card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-cream-dark), var(--c-beige));
}

.offer-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.offer-card:hover .offer-card__img {
    transform: scale(1.06);
}

.offer-card__ribbon {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    padding: var(--sp-1) var(--sp-3);
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
    color: var(--c-dark);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--r-full);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
    z-index: 2;
}

.offer-card__ribbon--hot {
    background: linear-gradient(135deg, var(--c-saffron), var(--c-kumkum));
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.45);
}

.offer-card__body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    flex: 1;
}

.offer-card__discount {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(120deg, var(--c-saffron) 0%, var(--c-gold) 50%, var(--c-maroon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.offer-card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section--dark .offer-card__title,
.section--darker .offer-card__title {
    color: var(--c-text-inverse);
}

.offer-card__desc {
    font-size: var(--text-sm);
    color: var(--c-text-3);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.section--dark .offer-card__desc,
.section--darker .offer-card__desc {
    color: var(--c-text-inverse-soft);
}

.offer-card__validity {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--c-saffron);
    font-weight: 500;
    letter-spacing: 0.06em;
    padding-top: var(--sp-3);
    border-top: 1px dashed var(--c-border);
}

.section--dark .offer-card__validity,
.section--darker .offer-card__validity {
    color: var(--c-gold-light);
    border-top-color: rgba(201, 168, 76, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   15. STAT CARDS
   ═══════════════════════════════════════════════════════════════ */
.stat-card {
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-surface-2) 100%);
    border: 1px solid var(--c-gold-border);
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-4);
    text-align: center;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-saffron), var(--c-gold), var(--c-maroon));
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-gold);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, var(--text-3xl));
    font-weight: 700;
    background: linear-gradient(120deg, var(--c-saffron), var(--c-maroon));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--sp-2);
    letter-spacing: -0.02em;
}

.stat-card__value span {
    font-size: 0.6em;
    margin-left: 2px;
}

.stat-card__label {
    font-size: var(--text-sm);
    color: var(--c-text-3);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   16. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonial-grid {
    margin-top: var(--sp-8);
}

.testimonial {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-8) var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -30px;
    right: 12px;
    font-family: Georgia, serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(201, 168, 76, 0.14);
    font-weight: 700;
    pointer-events: none;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-gold-border-strong);
}

.testimonial__stars {
    color: var(--c-turmeric);
    font-size: var(--text-base);
    letter-spacing: 3px;
    line-height: 1;
}

.testimonial__quote {
    font-size: var(--text-base);
    color: var(--c-text-2);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px dashed var(--c-border);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
    color: var(--c-cream);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.28);
}

.testimonial__author strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3;
}

.testimonial__author em {
    font-style: normal;
    font-size: var(--text-xs);
    color: var(--c-text-4);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   17. EVENT CARDS
   ═══════════════════════════════════════════════════════════════ */
.event-card {
    display: flex;
    gap: var(--sp-5);
    padding: var(--sp-5);
    background: rgba(253, 246, 236, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.24);
    border-radius: var(--r-md);
    align-items: center;
    transition: all var(--dur) var(--ease);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.event-card:hover {
    background: rgba(253, 246, 236, 0.08);
    border-color: var(--c-gold);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: var(--sp-3) var(--sp-2);
    background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-maroon) 100%);
    border-radius: var(--r-md);
    color: var(--c-cream);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.32);
}

.event-card__day {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.event-card__month {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.92;
    font-weight: 500;
}

.event-card__body {
    flex: 1;
    min-width: 0;
}

.event-card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-text-inverse);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
    font-size: var(--text-xs);
    color: var(--c-text-inverse-soft);
}

.event-card__loc,
.event-card__time {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    color: var(--c-gold-light);
}

.event-card__loc svg,
.event-card__time svg {
    opacity: 0.85;
    color: var(--c-gold);
}

/* ═══════════════════════════════════════════════════════════════
   18. INFO BOXES (Visit section)
   ═══════════════════════════════════════════════════════════════ */
.info-box {
    display: flex;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--c-saffron), var(--c-gold), var(--c-maroon));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--dur) var(--ease);
}

.info-box:hover {
    border-color: var(--c-gold-border-strong);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.info-box:hover::before {
    transform: scaleY(1);
}

.info-box__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(201, 168, 76, 0.16));
    border: 1px solid var(--c-gold-border);
    border-radius: var(--r-md);
    color: var(--c-saffron);
    flex-shrink: 0;
}

.info-box__title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--c-maroon);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
}

.info-box__text {
    font-size: var(--text-sm);
    color: var(--c-text-2);
    line-height: 1.7;
}

.info-box__highlight {
    color: var(--c-saffron);
    font-weight: 600;
    font-size: var(--text-base);
}

.info-box__note {
    font-size: var(--text-xs);
    color: var(--c-text-4);
    font-style: italic;
}

.info-box__phone {
    color: var(--c-saffron);
    font-weight: 600;
    transition: color var(--dur-fast) var(--ease);
}

.info-box__phone:hover {
    color: var(--c-maroon);
}

.info-box__mail {
    color: var(--c-text-3);
    transition: color var(--dur-fast) var(--ease);
}

.info-box__mail:hover {
    color: var(--c-saffron);
}

.info-box__copy {
    background: none;
    border: none;
    color: var(--c-gold-dark);
    font-size: var(--text-xs);
    font-family: var(--font-mono);
    cursor: pointer;
    margin-top: var(--sp-2);
    padding: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color var(--dur-fast) var(--ease);
}

.info-box__copy:hover {
    color: var(--c-saffron);
    text-decoration: underline;
}

/* Visit CTA row */
.visit-cta {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-top: var(--sp-2);
}

/* Map frame */
.map-frame {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-gold-border-strong);
    box-shadow: var(--shadow-lg);
    background: var(--c-cream);
    min-height: 420px;
}

/* ═══════════════════════════════════════════════════════════════
   19. NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */
.newsletter-form {
    display: flex;
    gap: var(--sp-3);
    max-width: 480px;
    margin: 0 auto;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    background: rgba(253, 246, 236, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.36);
    border-radius: var(--r-sm);
    padding: 0.875rem 1rem;
    color: var(--c-text-inverse);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    outline: none;
    transition: all var(--dur-fast) var(--ease);
    min-height: 48px;
}

.newsletter-form input::placeholder {
    color: rgba(253, 246, 236, 0.42);
}

.newsletter-form input:focus {
    border-color: var(--c-gold);
    background: rgba(253, 246, 236, 0.1);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.newsletter-note {
    font-size: var(--text-xs);
    color: var(--c-text-inverse-soft);
    margin-top: var(--sp-3);
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   20. FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, var(--c-dark) 0%, #150B04 100%);
    color: var(--c-text-inverse-soft);
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-8);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-maroon), var(--c-saffron), var(--c-gold), var(--c-saffron), var(--c-maroon));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: var(--sp-10);
    padding-bottom: var(--sp-12);
}

.footer-brand__col {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.footer-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
}

.footer-brand__mark {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
}

.footer-brand__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--c-cream);
    letter-spacing: -0.02em;
}

.footer-brand__desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--c-text-inverse-soft);
    margin: 0;
}

.footer-brand__hours {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    padding: var(--sp-3) var(--sp-4);
    background: rgba(201, 168, 76, 0.08);
    border-left: 2px solid var(--c-gold);
    border-radius: var(--r-sm);
}

.footer-hours-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 500;
}

.footer-hours-val {
    font-size: var(--text-sm);
    color: var(--c-text-inverse);
}

.footer-hours-val strong {
    color: var(--c-gold-light);
    font-weight: 600;
}

/* Social links */
.social-links {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-2);
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(253, 246, 236, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.28);
    color: var(--c-gold-light);
    transition: all var(--dur) var(--ease);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
    color: var(--c-cream);
    border-color: transparent;
    transform: translateY(-3px) rotate(-6deg);
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.4);
}

.social-link[data-social="whatsapp"]:hover {
    background: linear-gradient(135deg, var(--c-whatsapp), var(--c-whatsapp-dark));
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Footer column title */
.footer-col__title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--c-cream);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
    position: relative;
    padding-bottom: var(--sp-3);
}

.footer-col__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-saffron), var(--c-gold));
    border-radius: var(--r-full);
}

/* Footer nav */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-nav a {
    font-size: var(--text-sm);
    color: var(--c-text-inverse-soft);
    transition: all var(--dur-fast) var(--ease);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: "→";
    position: absolute;
    left: -18px;
    color: var(--c-saffron);
    opacity: 0;
    transition: all var(--dur-fast) var(--ease);
}

.footer-nav a:hover {
    color: var(--c-gold-light);
    padding-left: 20px;
}

.footer-nav a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer contact items */
.footer-contact-item {
    display: flex;
    gap: var(--sp-3);
    font-size: var(--text-sm);
    color: var(--c-text-inverse-soft);
    margin-bottom: var(--sp-4);
    line-height: 1.6;
    align-items: flex-start;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--c-gold);
}

.footer-contact-item a {
    color: var(--c-text-inverse-soft);
    transition: color var(--dur-fast) var(--ease);
}

.footer-contact-item a:hover {
    color: var(--c-gold-light);
}

/* Shimmer line */
.shimmer-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), rgba(232, 93, 4, 0.3), rgba(201, 168, 76, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding-top: var(--sp-6);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: var(--c-text-inverse-soft);
    opacity: 0.75;
    margin: 0;
}

.footer-copyright a {
    color: var(--c-gold-light);
    font-weight: 500;
}

.footer-copyright a:hover {
    color: var(--c-saffron-light);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
}

.footer-legal a {
    font-size: var(--text-xs);
    color: var(--c-text-inverse-soft);
    opacity: 0.75;
    transition: all var(--dur-fast) var(--ease);
    letter-spacing: 0.02em;
}

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

/* ═══════════════════════════════════════════════════════════════
   21. FLOATING ELEMENTS
   ═══════════════════════════════════════════════════════════════ */
.floating-whatsapp {
    position: fixed;
    bottom: var(--sp-6);
    right: var(--sp-6);
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-whatsapp), var(--c-whatsapp-dark));
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
    z-index: 90;
    transition: all var(--dur) var(--ease);
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    color: #fff;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: var(--sp-6);
    left: var(--sp-6);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
    color: var(--c-cream);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.34);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--dur) var(--ease);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(232, 93, 4, 0.46);
}

/* ═══════════════════════════════════════════════════════════════
   22. ANIMATIONS — Reveal on scroll
   ═══════════════════════════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: opacity, transform;
}

[data-reveal="up"] {
    transform: translateY(32px);
}

[data-reveal="down"] {
    transform: translateY(-32px);
}

[data-reveal="left"] {
    transform: translateX(40px);
}

[data-reveal="right"] {
    transform: translateX(-40px);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-stagger].is-revealed > * {
    opacity: 1;
    transform: translateY(0);
}

[data-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].is-revealed > *:nth-child(2) { transition-delay: 80ms; }
[data-stagger].is-revealed > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger].is-revealed > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger].is-revealed > *:nth-child(5) { transition-delay: 320ms; }
[data-stagger].is-revealed > *:nth-child(6) { transition-delay: 400ms; }
[data-stagger].is-revealed > *:nth-child(7) { transition-delay: 480ms; }
[data-stagger].is-revealed > *:nth-child(8) { transition-delay: 560ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal],
    [data-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   23. SELECTION & SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */
::selection {
    background: var(--c-saffron);
    color: var(--c-cream);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--c-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--c-saffron), var(--c-maroon));
    border-radius: var(--r-full);
    border: 2px solid var(--c-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--c-saffron-dark), var(--c-maroon));
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--c-saffron);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

/* ═══════════════════════════════════════════════════════════════
   24. RESPONSIVE — Tablet
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --header-h: 70px;
    }

    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-search-btn {
        width: 38px;
        height: 38px;
    }

    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .quick-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-info__item:nth-child(2) {
        border-right: none;
    }

    .quick-info__item:nth-child(1),
    .quick-info__item:nth-child(2) {
        border-bottom: 1px solid var(--c-border);
    }

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

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }

    .footer-brand__col {
        grid-column: 1 / -1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   25. RESPONSIVE — Mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --header-h: 64px;
        --topbar-h: 36px;
    }

    .topbar__utility {
        display: none;
    }

    .container {
        padding-inline: var(--sp-4);
    }

    .section {
        padding-block: clamp(2.5rem, 6vw, 4rem);
    }

    .section-header {
        margin-bottom: var(--sp-8);
    }

    /* Header */
    .header-actions .btn-sm {
        display: none;
    }

    .site-logo__mark {
        width: 38px;
        height: 38px;
    }

    .site-logo__name {
        font-size: var(--text-base);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--sp-10) var(--sp-4) var(--sp-20);
    }

    .hero__namaste {
        padding: var(--sp-2) var(--sp-4);
    }

    .hero__namaste-hi {
        font-size: var(--text-xl);
    }

    .hero__namaste-en {
        font-size: 0.55rem;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__trust {
        gap: var(--sp-4);
        flex-direction: column;
        align-items: center;
    }

    .hero__stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: var(--sp-12);
        border-radius: var(--r-md);
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid var(--c-gold-border-strong);
    }

    .hero__scroll {
        display: none;
    }

    .hero__rangoli {
        width: 140px;
        height: 140px;
    }

    .hero__diya {
        font-size: 1.5rem;
    }

    /* Quick info */
    .quick-info__grid {
        grid-template-columns: 1fr;
        border-radius: var(--r-md);
    }

    .quick-info__item {
        border-right: none;
        border-bottom: 1px solid var(--c-border);
        padding: var(--sp-4);
    }

    .quick-info__item:last-child {
        border-bottom: none;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .floor-card,
    .floor-card__content {
        min-height: 340px;
    }

    .floor-card__content {
        padding: var(--sp-6) var(--sp-5);
    }

    /* Category chips */
    .category-ribbon__inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--sp-2);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-ribbon__inner::-webkit-scrollbar {
        display: none;
    }

    .cat-chip {
        flex-shrink: 0;
    }

    /* Section headers with View All */
    .flex.items-center.justify-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: var(--sp-4);
    }

    /* Event cards */
    .event-card {
        padding: var(--sp-4);
        gap: var(--sp-4);
        flex-direction: row;
    }

    .event-card:hover {
        transform: none;
    }

    .event-card__date {
        min-width: 56px;
        padding: var(--sp-2);
    }

    .event-card__day {
        font-size: var(--text-xl);
    }

    .event-card__title {
        font-size: var(--text-base);
    }

    .event-card__meta {
        gap: var(--sp-3);
    }

    /* Stat cards */
    .stat-card {
        padding: var(--sp-5) var(--sp-3);
    }

    /* Visit section */
    .map-frame {
        min-height: 300px;
    }

    .visit-cta {
        flex-direction: column;
    }

    .visit-cta .btn {
        width: 100%;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: var(--sp-2);
    }

    .newsletter-form .btn {
        width: 100%;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-legal {
        gap: var(--sp-3) var(--sp-4);
    }

    /* Floating buttons */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: var(--sp-4);
        right: var(--sp-4);
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: var(--sp-4);
        left: var(--sp-4);
    }

    /* Info boxes */
    .info-box {
        padding: var(--sp-4) var(--sp-5);
    }
}

/* ═══════════════════════════════════════════════════════════════
   26. RESPONSIVE — Small mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .topbar__item {
        font-size: 0.7rem;
    }

    .section-tag {
        font-size: 0.68rem;
    }

    .hero__trust li {
        font-size: var(--text-xs);
    }

    .event-card__meta {
        flex-direction: column;
        gap: var(--sp-2);
    }

    .mobile-menu {
        padding-top: var(--sp-16);
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--sp-2);
    }
}

/* ═══════════════════════════════════════════════════════════════
   27. PRINT
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .site-header,
    .topbar,
    .mobile-menu,
    .search-overlay,
    .floating-whatsapp,
    .back-to-top,
    .site-footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
/* ═══════════════════════════════════════════════════════════════
   28. INNER PAGES — Page Banner, Breadcrumb, Header Solid
   ═══════════════════════════════════════════════════════════════ */
.page-layout {
    min-height: 60vh;
}

.header-solid {
    background: var(--c-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--c-border);
}

.page-banner {
    background: linear-gradient(160deg, var(--c-cream) 0%, var(--c-cream-dark) 55%, var(--c-beige) 100%);
    padding-block: var(--sp-16) var(--sp-12);
    border-bottom: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 85% 0%, rgba(232, 93, 4, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner__title {
    font-size: clamp(2rem, 4.5vw, var(--text-5xl));
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-3);
    position: relative;
}

.page-banner__sub {
    font-size: var(--text-lg);
    color: var(--c-text-3);
    max-width: 640px;
    margin: 0;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-sm);
    color: var(--c-text-3);
    margin-bottom: var(--sp-6);
    position: relative;
}

.breadcrumb a {
    color: var(--c-text-3);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

.breadcrumb a:hover { color: var(--c-saffron); }

.breadcrumb-sep { color: var(--c-border-2); }

.breadcrumb-current {
    color: var(--c-maroon);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   29. BADGES
   ═══════════════════════════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--sp-1) var(--sp-3);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--r-full);
    background: var(--c-surface-3);
    color: var(--c-text-2);
    width: fit-content;
}

.badge-men   { background: rgba(107, 15, 26, 0.1);  color: var(--c-maroon); }
.badge-women { background: rgba(232, 93, 4, 0.1);   color: var(--c-saffron-dark); }
.badge-kids  { background: rgba(31, 158, 130, 0.12); color: #157A63; }
.badge-gold  { background: rgba(201, 168, 76, 0.16); color: var(--c-gold-dark); }
.badge-dark  { background: var(--c-dark-2); color: var(--c-text-inverse); }

/* ═══════════════════════════════════════════════════════════════
   30. TABS
   ═══════════════════════════════════════════════════════════════ */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
}

.tab {
    padding: var(--sp-2) var(--sp-5);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-text-3);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease);
    white-space: nowrap;
}

.tab:hover {
    border-color: var(--c-gold);
    color: var(--c-maroon);
}

.tab.active {
    background: linear-gradient(120deg, var(--c-saffron), var(--c-gold));
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════════════════════════
   31. CHIPS / FILTER CHIPS
   ═══════════════════════════════════════════════════════════════ */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
}

.chip {
    padding: var(--sp-1) var(--sp-4);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--c-text-2);
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease);
    white-space: nowrap;
}

.chip:hover { border-color: var(--c-gold); }

.chip.active {
    background: var(--c-maroon);
    border-color: var(--c-maroon);
    color: #fff;
}

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-5);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-text-2);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--dur-fast) var(--ease);
    flex-shrink: 0;
}

.cat-chip:hover {
    border-color: var(--c-gold);
    background: var(--c-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cat-chip--accent {
    background: linear-gradient(120deg, var(--c-saffron), var(--c-gold));
    border-color: transparent;
    color: #fff;
}

.category-ribbon__inner {
    display: flex;
    gap: var(--sp-3);
    overflow-x: auto;
    padding-block: var(--sp-2);
    scrollbar-width: none;
}

.category-ribbon__inner::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════════════
   32. SEARCH BAR (inline, e.g. on Stores page)
   ═══════════════════════════════════════════════════════════════ */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar__icon {
    position: absolute;
    left: var(--sp-4);
    color: var(--c-text-4);
    display: flex;
    pointer-events: none;
}

.search-bar .form-control {
    padding-left: var(--sp-10);
}

/* ═══════════════════════════════════════════════════════════════
   33. FORM CONTROLS
   ═══════════════════════════════════════════════════════════════ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--c-text-2);
}

.form-control {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--c-text);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.form-control::placeholder { color: var(--c-text-4); }

.form-control:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px var(--c-gold-border);
}

.form-control.error { border-color: var(--c-kumkum); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-error {
    font-size: var(--text-xs);
    color: var(--c-kumkum);
    min-height: 1em;
    display: block;
}

.contact-form {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--sp-5);
}

.contact-form__grid .form-group:last-child,
.contact-form__grid .form-group:nth-last-child(2):nth-child(odd) {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .contact-form__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   34. GENERIC CARD (About values, Careers openings, sidebar)
   ═══════════════════════════════════════════════════════════════ */
.card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold-border-strong);
}

.card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-2);
}

.card__desc {
    font-size: var(--text-sm);
    color: var(--c-text-3);
    line-height: 1.6;
}

.card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
}

.card__meta-item {
    font-size: var(--text-xs);
    color: var(--c-text-3);
    background: var(--c-surface-2);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
}

.sticky-sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-6));
    align-self: start;
}

/* ═══════════════════════════════════════════════════════════════
   35. EMPTY STATE
   ═══════════════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: var(--sp-20) var(--sp-6);
    display: none;
}

.empty-state.is-visible { display: block; }

.empty-state__icon {
    font-size: 3rem;
    margin-bottom: var(--sp-4);
    opacity: 0.6;
}

.empty-state__title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-2);
}

.empty-state__text {
    color: var(--c-text-3);
    font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════════════
   36. STORE CARD (Stores directory grid)
   ═══════════════════════════════════════════════════════════════ */
.store-card {
    display: block;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
    position: relative;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-gold);
}

.store-card__logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-cream);
    border: 1px solid var(--c-gold-border);
    border-radius: var(--r-md);
}

.store-card__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3;
}

.store-card__floor {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--c-saffron);
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.store-card__desc {
    font-size: var(--text-sm);
    color: var(--c-text-3);
    line-height: 1.6;
    margin: var(--sp-3) 0 var(--sp-4);
}

.gap-4 { gap: var(--sp-4); }

/* ═══════════════════════════════════════════════════════════════
   37. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-10);
}

.faq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--dur-fast) var(--ease);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    font-weight: 500;
    color: var(--c-text);
    cursor: pointer;
    user-select: none;
}

.faq-question__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-cream);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--c-saffron);
    transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-question__icon {
    transform: rotate(45deg);
    background: var(--c-saffron);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-slow) var(--ease), padding var(--dur) var(--ease);
    padding: 0 var(--sp-6);
    color: var(--c-text-3);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 var(--sp-6) var(--sp-5);
}

/* ═══════════════════════════════════════════════════════════════
   38. LEGAL PAGES
   ═══════════════════════════════════════════════════════════════ */
.container--text {
    max-width: var(--container-narrow);
}

.container--text h2 {
    margin-top: var(--sp-10);
    margin-bottom: var(--sp-3);
}

.container--text h2:first-child { margin-top: 0; }

.container--text ul,
.container--text ol {
    color: var(--c-text-2);
    padding-left: var(--sp-6);
    margin-bottom: var(--sp-4);
}

.container--text li { margin-bottom: var(--sp-2); }

.link {
    color: var(--c-saffron);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* ═══════════════════════════════════════════════════════════════
   39. STORE RAIL (Homepage — swipeable store showcase)
   ═══════════════════════════════════════════════════════════════ */
.store-rail-outer {
    position: relative;
}

.store-rail {
    display: flex;
    gap: var(--sp-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--sp-2) var(--sp-5) var(--sp-6);
    margin: 0 calc(var(--sp-5) * -1);
    scroll-padding-left: var(--sp-5);
}

@media (min-width: 1280px) {
    .store-rail {
        padding-inline: calc((100vw - var(--container)) / 2 + var(--sp-5));
        margin-inline: calc((100vw - var(--container)) / -2 - var(--sp-5));
    }
}

.store-rail::-webkit-scrollbar { display: none; }

.store-tile {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 260px;
    display: block;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
}

@media (min-width: 640px) { .store-tile { width: 290px; } }

.store-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--c-gold);
}

.store-tile__img-wrap {
    aspect-ratio: 8 / 5;
    overflow: hidden;
    background: var(--c-cream-dark);
    position: relative;
}

.store-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.store-tile:hover .store-tile__img { transform: scale(1.07); }

.store-tile__body {
    padding: var(--sp-5);
}

.store-tile__floor {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--c-saffron);
    text-transform: uppercase;
    margin-bottom: var(--sp-1);
}

.store-tile__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-1);
}

.store-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--text-sm);
    color: var(--c-maroon);
    font-weight: 500;
    margin-top: var(--sp-2);
    transition: gap var(--dur-fast) var(--ease);
}

.store-tile:hover .store-tile__cta { gap: var(--sp-2); }

.store-rail__arrow {
    display: none;
}

@media (min-width: 1024px) {
    .store-rail__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--c-surface);
        border: 1px solid var(--c-gold-border-strong);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        z-index: 2;
        color: var(--c-maroon);
        transition: all var(--dur-fast) var(--ease);
    }
    .store-rail__arrow:hover {
        background: var(--c-maroon);
        color: #fff;
        border-color: var(--c-maroon);
    }
    .store-rail__arrow--prev { left: -20px; }
    .store-rail__arrow--next { right: -20px; }
}

/* ═══════════════════════════════════════════════════════════════
   40. TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════════ */
.toast-container {
    position: fixed;
    bottom: var(--sp-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    width: min(380px, calc(100vw - var(--sp-8)));
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-md);
    background: var(--c-dark-2);
    color: var(--c-text-inverse);
    font-size: var(--text-sm);
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast--success { border-left: 4px solid var(--c-success); }
.toast--error   { border-left: 4px solid var(--c-kumkum); }
.toast--info    { border-left: 4px solid var(--c-gold); }

/* ═══════════════════════════════════════════════════════════════
   41. FORM STATES (drag-over, has-error)
   ═══════════════════════════════════════════════════════════════ */
.drag-over {
    border-color: var(--c-gold) !important;
    background: var(--c-cream) !important;
}

.form-group.has-error .form-control {
    border-color: var(--c-kumkum);
}

.form-group.has-error .form-error {
    color: var(--c-kumkum);
}
