/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color:   #A31C21;
    --secondary-color: #A31C21;
    --accent-color:    #FBE201;
    --text-color:      #2A0E0E;
    --bg-dark:         transparent;
    --glass-bg:        #ffffff;
    --glass-border:    rgba(163, 28, 33, 0.3);
}

body {
    background-color: #FDF8E8;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth inter-page transitions applied to body children to protect fixed background */
body.page-transition-enabled > *:not(nav):not(.thali-nav):not(.master-nav):not(.village-nav):not(script):not(style):not(link):not(meta):not(.lightbox):not(.modal):not(.overlay) {
    animation: pageGlideIn 0.5s cubic-bezier(0.25, 1, 0.25, 1) forwards;
}

@keyframes pageGlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

body.page-is-leaving > *:not(nav):not(.thali-nav):not(.master-nav):not(.village-nav):not(script):not(style):not(link):not(meta):not(.lightbox):not(.modal):not(.overlay) {
    animation: pageGlideOut 0.4s cubic-bezier(0.25, 1, 0.25, 1) forwards !important;
    pointer-events: none;
}

@keyframes pageGlideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-transition-enabled {
        animation: none;
    }
    body.page-is-leaving {
        animation: none !important;
    }
}

/* Background Texture implementation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: none;
    opacity: 0.15;
    mix-blend-mode: multiply;
    z-index: -1;
    pointer-events: none;
}

/* Distinct Page Identities using Heritage Assets */
body.bg-pattern-1::before {
    background-image: url('../assets/patterns/pattern-1.png');
    background-size: 300px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-pattern-2::before {
    background-image: url('../assets/patterns/pattern-2-web.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

body.bg-flowers::before {
    background-image: url('../design%20assets/Flower%201.svg');
    background-size: 400px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-camels::before {
    background-image: url('../design%20assets/Camels.svg');
    background-size: 200px;
    opacity: 0.06;
    background-repeat: repeat;
}

body.bg-elephant::before {
    background-image: url('../design%20assets/Elephant%202.svg');
    background-size: 500px;
    opacity: 0.06;
    background-repeat: repeat;
}

body.bg-flowers-2::before {
    background-image: url('../design%20assets/Flower%202.svg');
    background-size: 300px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-camel-2::before {
    background-image: url('../design%20assets/Camel%202.svg');
    background-size: 400px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-camel-3::before {
    background-image: url('../design%20assets/Camel%203.svg');
    background-size: 400px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-elephant-2::before {
    background-image: url('../design%20assets/Elephant.svg');
    background-size: 500px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-girl::before {
    background-image: url('../design%20assets/Girl.svg');
    background-size: 400px;
    opacity: 0.12;
    background-repeat: repeat;
}

body.bg-hawa-mahal::before {
    background-image: url('../assets/patterns/hawa-mahal-web.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: 1px;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
}

h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin: 20px 0 16px;
    position: relative;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: #FDF8E8;
    box-shadow: 0 4px 14px rgba(163, 28, 33, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(163, 28, 33, 0.45);
    background: var(--brand-maroon-dark);
    color: #FDF8E8;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(163, 28, 33, 0.08);
    transform: translateY(-3px);
}

/* Global button reset and active states */
.btn-primary, .btn-secondary, .action-btn, .map-btn-main, .cta-btn, .hero-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                background-color 0.3s ease, 
                color 0.3s ease;
}

.btn-primary:active, .btn-secondary:active, .action-btn:active, .map-btn-main:active, .cta-btn:active, .hero-btn:active {
    transform: translateY(0) scale(0.96) !important;
    transition: transform 0.1s ease !important;
}

/* Floating Pill Navbar */
.floating-nav-wrapper {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
}

.pill-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 25px;
    width: 100%;
    max-width: 1150px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.pill-nav .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.pill-nav .logo img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.pill-nav .logo img:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    gap: 22px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.desktop-nav a {
    font-size: 0.92rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.8px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--brand-maroon-dark);
    transform: translateY(-2px);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #FDF8E8;
    background: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: #FDF8E8;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

.mobile-overlay.active {
    transform: translateX(0);
    opacity: 1;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: scale(0.9) rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.mobile-link {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-link:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: 60% center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(163,28,33,0.18) 0%, rgba(42,14,14,0.72) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInDown 1.2s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.hero-title .accent-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin: 0 auto 40px;
    color: #fff;
    font-weight: 300;
    max-width: 750px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(163, 28, 33, 0.4) !important;
}

.hero-btn.primary:hover {
    background: #8B181C;
    border-color: #8B181C;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(163, 28, 33, 0.5) !important;
}

.hero-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Culinary Journey / About */
.culinary-journey {
    padding: 60px 0;
}

.journey-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.journey-grid-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.rajwadi-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(163, 28, 33, 0.05);
    border: 2px dashed rgba(163, 28, 33, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-align: center;
}
.rajwadi-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}
.rajwadi-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
}

.journey-text {
    flex: 1;
    padding: 20px 0;
    text-align: left;
    transition: transform 0.4s ease;
}

.journey-text:hover {
    transform: translateX(10px);
}

.journey-kicker {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.journey-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-ink);
    line-height: 1.2;
    margin-bottom: 20px;
}

.journey-divider {
    width: 60px;
    height: 3px;
    background: var(--brand-maroon);
    margin-bottom: 25px;
    border-radius: 2px;
}

.journey-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
}

.journey-images {
    flex: 1;
    position: relative;
}

.interior-img {
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--glass-border);
}

/* Menu Offers Grid */
.offers {
    padding: 32px 0;
    position: relative;
}

.offers-grid {
    display: flex;
    gap: 25px;
    height: 450px;
}

.offers-grid > div {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 14px rgba(139, 26, 26, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offers-grid > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.offer-middle img, .fade-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.offers-grid > div:hover img {
    transform: scale(1.05);
}

.fade-swiper {
    width: 100%;
    height: 100%;
}

/* Select Outlet Pricing Section */
.outlet-pricing {
    padding: 60px 0;
    position: relative;
    background: transparent;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.location-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .location-img img {
    transform: scale(1.07);
}

.location-info {
    padding: 16px;
    text-align: center;
}

.location-name {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 4px;
    text-align: center;
}

.location-city {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
}

.location-city i {
    margin-right: 4px;
}

.coming-soon-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(139, 26, 26, 0.85);
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
    backdrop-filter: blur(6px);
}

.coming-soon-card .location-img img {
    filter: brightness(0.65);
}

.outlet-region {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin: 32px 0 16px;
}

.outlet-region::before,
.outlet-region::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.outlet-region:first-of-type {
    margin-top: 8px;
}

.outlet-list + .outlet-region {
    margin-top: 32px;
}

.outlet-region i {
    color: var(--primary-color);
    margin-right: 4px;
}

.outlet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.outlet-card {
    flex: 1 1 260px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    gap: 0;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.outlet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.outlet-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex: none;
}

.outlet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    transition: transform 0.4s ease;
}

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

.outlet-info {
    padding: 14px 16px 10px;
    flex: 1;
    text-align: left;
}

.outlet-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    text-align: left;
}

.outlet-address {
    font-size: 0.82rem;
    color: #7a5c5c;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.outlet-footer {
    padding: 10px 16px;
    background: rgba(163, 28, 33, 0.04);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.outlet-footer i {
    transition: transform 0.3s ease;
}

.outlet-card:hover .outlet-footer {
    background: var(--primary-color);
    color: #fff;
}

.outlet-card:hover .outlet-footer i {
    transform: translateX(5px);
}

.outlet-prices {
    display: flex;
    flex-direction: row;
    border-top: 1px solid var(--glass-border);
    background: rgba(163, 28, 33, 0.04);
    flex: none;
    gap: 0;
    padding: 0;
}

.price-row {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    border-right: 1px solid var(--glass-border);
}

.price-row:last-child {
    border-right: none;
}

.price-type {
    font-size: 0.68rem;
    color: rgba(42, 14, 14, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 2px 0 0;
    order: 2;
    text-align: center;
}

.price-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    order: 1;
    margin: 0;
}

.outlet-card[href="#"] .price-amount {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.85;
}

.outlet-card[href="#"] .outlet-address {
    color: var(--secondary-color);
    opacity: 0.75;
}

/* Royal Thali / Franchise Info */
.royal-thali {
    position: relative;
    padding: 120px 0;
    margin: 80px 0 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.thali-overlay {
    background: rgba(43, 10, 10, 0.58);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thali-content {
    max-width: 800px;
    color: white;
    z-index: 2;
    padding: 40px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

/* Footer / Contact */
.footer {
    background: var(--primary-color);
    padding: 40px 0 20px;
    border-top: 2px solid rgba(251, 226, 1, 0.35);
    color: #FDF8E8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col a {
    color: rgba(253, 248, 232, 0.8);
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--accent-color);
}

.footer-col p {
    font-size: 0.92rem;
    margin-bottom: 6px;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(253, 248, 232, 0.85);
}

.footer-col strong {
    font-weight: 600;
    color: #FDF8E8;
}

.bottom-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(253, 248, 232, 0.15);
    padding-top: 14px;
    text-align: center;
    color: rgba(253, 248, 232, 0.7);
}

.social-links a {
    font-size: 18px;
    margin-right: 14px;
    color: rgba(253, 248, 232, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .footer {
        padding: 28px 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
        text-align: left;
        padding: 0 16px;
    }

    /* Hide the 'About/Branding' column on mobile — keep it clean */
    .footer-grid .footer-col:last-child {
        display: none;
    }

    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
        width: 30px;
    }

    .footer-col p {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.5;
    }

    .social-links {
        margin-top: 6px;
    }

    .social-links a {
        font-size: 16px;
        margin-right: 12px;
    }

    .bottom-footer {
        padding: 10px 16px;
        font-size: 0.75rem;
        flex-direction: column;
        gap: 4px;
    }
}

#backToTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    outline: none;
    background: rgba(255, 244, 194, 0.95);
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#backToTop:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Ghoomar Village Page */
.village-hero {
    overflow: hidden;
    min-height: 92vh;
    min-height: 92svh;
    background-color: #180505;
    background-size: cover;
    background-position: center;
}

.village-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    z-index: 0;
}

.village-hero-overlay {
    background: linear-gradient(180deg, rgba(20, 6, 6, 0.45) 0%, rgba(20, 6, 6, 0.88) 100%);
    z-index: 1;
}

.village-hero-content {
    max-width: 980px;
}

.village-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #161616;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 22px;
    font-weight: 700;
}

.village-explainer {
    padding-bottom: 60px;
}

.village-story-card {
    text-align: left;
}

.village-fact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.village-fact-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(163, 28, 33, 0.35);
    background: #ffffff;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 600;
}

.village-experiences {
    padding: 60px 0;
}

.village-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.village-experience-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.village-experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.village-experience-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    color: #FDF8E8;
    background: var(--primary-color);
}

.village-experience-card h4 {
    margin-bottom: 10px;
}

.village-experience-card p {
    margin-bottom: 0;
    color: var(--brand-warm, #5A3A2A);
    font-size: 1rem;
}

.village-video-showcase {
    padding: 24px 0 80px;
}

.village-video-intro {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 28px;
    color: var(--brand-warm, #5A3A2A);
}

.village-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.village-video-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 520px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
}

.village-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: 50% 50%;
}

.village-video-card p {
    padding: 14px 14px 16px;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-color, #2A0E0E);
}

.village-visit {
    padding-top: 60px;
}

.village-visit-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 34px 30px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.village-visit-card p {
    margin-bottom: 12px;
}

/* Two-column visit layout with map */
.visit-map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.visit-info-col {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
}

.visit-info-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-red, #A31C21);
    margin: 0 0 10px;
}

.visit-info-col > p {
    color: var(--text-color, #2A0E0E);
    margin-bottom: 18px;
    line-height: 1.6;
}

.visit-info-group {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
}

.visit-info-group p {
    margin-bottom: 6px;
    color: var(--text-color, #2A0E0E);
    font-size: 0.97rem;
    text-align: center;
}

.visit-info-group p a {
    color: var(--brand-red, #A31C21);
    text-decoration: none;
}

.visit-info-group p a:hover {
    text-decoration: underline;
}

.visit-map-col {
    min-height: 380px;
    position: relative;
}

.visit-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.village-visit-actions {
    margin-top: auto;
    padding-top: 18px;
}

.village-visit-actions .btn-primary,
.village-visit-actions .btn-secondary {
    min-width: 180px;
}

/* Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    background: rgba(0,0,0,0.5);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: #555 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

/* Responsive Styles */
@media screen and (max-width: 900px) {
    .offers-grid {
        height: 300px;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .village-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .village-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    body::before {
        background-attachment: scroll;
    }

    .hero-section {
        background-attachment: scroll;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18,2,2,0.95);
        backdrop-filter: blur(15px);
        padding: 30px 20px;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .desktop-nav, .hidden-mobile {
        display: none;
    }

    /* Solid block navbar on mobile — no floating pill */
    .floating-nav-wrapper {
        position: fixed;
        top: 0;
        padding: 0;
        background: var(--glass-bg);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .pill-nav {
        border-radius: 0;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        padding: 8px 20px;
        max-width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .journey-grid, .journey-grid-reverse {
        flex-direction: column;
    }
    
    .offers-grid {
        flex-direction: column;
        height: auto;
    }
    
    .offers-grid > div {
        height: 300px;
    }
    
    .outlet-list {
        gap: 12px;
    }

    .outlet-card {
        flex: 1 1 220px;
        max-width: 340px;
    }

    .outlet-list + .outlet-region {
        margin-top: 24px;
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .location-img {
        aspect-ratio: 4/3;
    }

    .location-info {
        padding: 12px;
    }

    .location-name {
        font-size: 1rem;
    }

    .village-experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .village-experience-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .village-experience-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .village-experience-card h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .village-experience-card p {
        font-size: 0.88rem;
    }

    .village-kicker {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .village-story-card {
        text-align: center;
    }

    .village-fact-list {
        justify-content: center;
    }

    /* Mobile: single-column scroll-snap — one video fills the screen at a time */
    .village-video-grid {
        grid-template-columns: 1fr;
        gap: 0;
        height: 100svh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
    }

    .village-act {
        padding: 40px 16px;
    }

    .act-header {
        margin-bottom: 24px;
        text-align: center;
    }

    .act-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .act-subtitle {
        font-size: 0.95rem;
    }

    .village-video-card {
        scroll-snap-align: start;
        height: 100svh;
        min-height: 100svh;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }

    .village-video-card video {
        aspect-ratio: unset;
        flex: 1;
        min-height: 0;
        width: 100%;
    }

    .village-video-card p {
        flex-shrink: 0;
        padding: 12px 16px;
        background: var(--glass-bg);
    }

    .village-hero {
        min-height: 78vh;
    }

    .village-visit-card {
        padding: 28px 20px;
    }

    .visit-map-layout {
        grid-template-columns: 1fr;
    }

    .visit-info-col {
        padding: 28px 20px;
    }

    .visit-map-col {
        min-height: 280px;
        height: 280px;
        position: relative;
    }

    .village-visit-actions {
        flex-direction: column;
        gap: 12px;
    }

    .village-visit-actions .btn-primary,
    .village-visit-actions .btn-secondary {
        width: 100%;
    }

    /* Hero buttons wrap on narrow screens */
    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero-btn {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }

    /* Reduce hero subtitle */
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    /* Reduce section heading */
    h3 {
        font-size: 1.8rem;
    }

    /* Reduce tall section padding */
    .culinary-journey {
        padding: 40px 0;
    }

    .village-experiences {
        padding: 24px 0 32px;
    }

    .outlet-pricing {
        padding: 24px 0;
    }

    .village-video-showcase {
        padding: 12px 0 28px;
    }

    .journey-text {
        padding: 25px;
    }
}

/* ── Small phones (≤ 480 px) ── */
@media screen and (max-width: 480px) {
    .floating-nav-wrapper {
        top: 0;
        padding: 0;
    }

    .pill-nav {
        padding: 8px 14px;
        border-radius: 0;
    }

    .pill-nav .logo img {
        height: 36px;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-btn {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
    }

    .journey-title {
        font-size: 2.2rem;
    }
    .journey-kicker {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        padding: 10px 18px;
    }

    .section-title {
        margin: 16px 0 12px;
    }

    .culinary-journey {
        padding: 45px 0;
    }

    .journey-text {
        padding: 20px;
    }

    /* Two-column locations on small screens — keeps all 4 visible without excess scroll */
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .location-img {
        aspect-ratio: 1/1;
    }

    .location-info {
        padding: 10px 8px;
    }

    .location-name {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .location-city {
        font-size: 0.78rem;
    }

    .outlet-list {
        gap: 10px;
    }

    .outlet-card {
        flex: 1 1 100%;
        max-width: none;
    }

    .outlet-name {
        font-size: 0.92rem;
    }

    .outlet-address {
        font-size: 0.76rem;
    }

    .price-amount {
        font-size: 0.95rem;
    }

    .village-experience-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .village-experience-card {
        padding: 14px;
    }

    .village-experience-card h4 {
        font-size: 0.92rem;
    }

    .village-experience-card p {
        font-size: 0.82rem;
    }

    .outlet-region {
        font-size: 0.72rem;
        margin: 20px 0 12px;
    }

    .village-hero {
        min-height: 60vh;
    }

    .village-kicker {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    .village-experience-card {
        padding: 20px 18px;
    }

    .village-visit-card {
        padding: 22px 16px;
    }

    .footer {
        padding: 55px 0 30px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    #backToTop {
        bottom: 20px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
}

/* Scroll Animation Classes */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MASTER LANDING PAGE (ghoomar.com root)
   ============================================================ */
:root {
    --brand-yellow:      #FBE201;
    --brand-yellow-soft: #F7DD64;
    --brand-maroon:      #A31C21;
    --brand-maroon-dark: #7A1418;
    --brand-cream:       #FDF8E8;
    --brand-cream-card:  #FFFDF3;
    --brand-ink:         #2A0E0E;
    --brand-warm:        #5A3A2A;
    --brand-purple: #4A2A87;
    --brand-pink:   #D81540;
    --brand-orange: #FC0A03;
    --brand-brown:  #AEB633;
    --brand-beige:  #CEBA81;
}

body.master-landing {
    background:
        radial-gradient(ellipse at 20% 0%, #FFFDF3 0%, var(--brand-cream) 55%),
        var(--brand-cream);
    color: var(--brand-ink);
    min-height: 100vh;
    overflow-x: hidden;
}

body.master-landing::before {
    opacity: 0.05;
    mix-blend-mode: multiply;
}

/* ---- Master nav ---- */
/* ============================================================
   THALI PAGE NAV
   ============================================================ */
.thali-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 248, 232, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(163, 28, 33, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.thali-nav.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.thali-nav.scrolled {
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
}

.thali-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.thali-nav-logo {
    display: flex;
    align-items: center;
}

.thali-nav-logo img {
    width: 108px;
    height: auto;
    display: block;
}

/* ---- centered links ---- */
.thali-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.thali-nav-link {
    color: var(--brand-warm);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 3px;
}

.thali-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 2px;
    background: var(--brand-maroon);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.thali-nav-link:hover,
.thali-nav-link.active {
    color: var(--brand-maroon);
}

.thali-nav-link:hover::after,
.thali-nav-link.active::after {
    transform: scaleX(1);
}

/* ---- right-side end ---- */
.thali-nav-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.thali-nav-cta {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 7px 20px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.thali-nav-cta:hover {
    background: #8a1219;
    border-color: #8a1219;
    box-shadow: 0 4px 14px rgba(163, 28, 33, 0.35);
}

/* ---- hamburger ---- */
.thali-nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    line-height: 0;
}

.thali-nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-maroon);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.thali-nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.thali-nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.thali-nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- mobile breakpoint ---- */
@media (max-width: 700px) {
    .thali-nav-inner {
        grid-template-columns: 1fr auto;
    }

    .thali-nav-cta {
        display: none;
    }

    .thali-nav-hamburger {
        display: flex;
    }

    .thali-nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(253, 248, 232, 0.98);
        border-bottom: 2px solid rgba(163, 28, 33, 0.12);
        padding: 6px 0 10px;
    }

    .thali-nav-links.open {
        display: flex;
    }

    .thali-nav-link {
        padding: 13px 28px;
        border-bottom: 1px solid rgba(163, 28, 33, 0.07);
        font-size: 0.95rem;
    }

    .thali-nav-link::after {
        display: none;
    }
}
/* ---- end thali nav ---- */

/* ============================================================
   MASTER NAV  (index.html hub page — cross-page links)
   ============================================================ */
.master-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 248, 232, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(163, 28, 33, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.master-nav.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.master-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.master-nav-logo {
    display: flex;
    align-items: center;
}

.master-nav-logo img {
    width: 108px;
    height: auto;
    display: block;
}

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

.master-nav-links a {
    color: var(--brand-warm);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 3px;
}

.master-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--brand-maroon);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.master-nav-links a:hover {
    color: var(--brand-maroon);
}

.master-nav-links a:hover::after {
    transform: scaleX(1);
}

.master-nav-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.master-nav-contact {
    color: var(--brand-maroon);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(163, 28, 33, 0.38);
    padding: 7px 20px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.master-nav-contact:hover {
    background: var(--brand-maroon);
    color: #fff;
    border-color: var(--brand-maroon);
}

@media (max-width: 700px) {
    .master-nav-inner {
        grid-template-columns: 1fr auto;
    }
    .master-nav-links {
        display: none;
    }
    .master-nav-contact {
        margin-left: 0;
    }
}
/* ---- end master nav ---- */

/* ============================================================
   VILLAGE PAGE NAV  (village.html — in-page anchor links)
   ============================================================ */
.village-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 248, 232, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(163, 28, 33, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.village-nav.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.village-nav.scrolled {
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
}

.village-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.village-nav-logo {
    display: flex;
    align-items: center;
}

.village-nav-logo img {
    width: 108px;
    height: auto;
    display: block;
}

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

.village-nav-link {
    color: var(--brand-warm);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 3px;
}

.village-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--brand-maroon);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.village-nav-link:hover,
.village-nav-link.active {
    color: var(--brand-maroon);
}

.village-nav-link:hover::after,
.village-nav-link.active::after {
    transform: scaleX(1);
}

.village-nav-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.village-nav-cta {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 7px 20px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.village-nav-cta:hover {
    background: #8a1219;
    border-color: #8a1219;
    box-shadow: 0 4px 14px rgba(163, 28, 33, 0.35);
}

.village-nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    line-height: 0;
}

.village-nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-maroon);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.village-nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.village-nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.village-nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
    .village-nav-inner {
        grid-template-columns: 1fr auto;
    }

    .village-nav-cta {
        display: none;
    }

    .village-nav-hamburger {
        display: flex;
    }

    .village-nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(253, 248, 232, 0.98);
        border-bottom: 2px solid rgba(163, 28, 33, 0.12);
        padding: 6px 0 10px;
    }

    .village-nav-links.open {
        display: flex;
    }

    .village-nav-link {
        padding: 13px 28px;
        border-bottom: 1px solid rgba(163, 28, 33, 0.07);
        font-size: 0.95rem;
    }

    .village-nav-link::after {
        display: none;
    }
}
/* ---- end village nav ---- */

.master-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.master-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.28;
    filter: saturate(0.75) contrast(0.9);
    z-index: 0;
}

.master-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(163, 28, 33, 0.06) 0%, rgba(253, 248, 232, 0) 60%),
        linear-gradient(180deg, rgba(253, 248, 232, 0) 0%, rgba(253, 248, 232, 0.6) 100%);
    z-index: 0;
}

.master-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px;
}

.master-logo {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(163, 28, 33, 0.15));
}

.master-kicker {
    color: var(--brand-maroon);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
    opacity: 0.85;
}

.master-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    color: var(--brand-ink);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 700;
}

.master-title span {
    color: var(--brand-maroon);
    font-style: italic;
    font-weight: 600;
}

.master-subtitle {
    color: var(--brand-warm);
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.master-tiles-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.master-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.master-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.4);
    border: 1.5px solid rgba(122, 20, 24, 0.4);

    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--brand-ink);
    box-shadow: 0 4px 12px rgba(122, 20, 24, 0.12), 0 20px 48px rgba(42, 14, 14, 0.18);
}

.master-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(163, 28, 33, 0.6);
    box-shadow: 0 8px 18px rgba(122, 20, 24, 0.18), 0 32px 70px rgba(42, 14, 14, 0.28);
}

.master-tile.coming {
    opacity: 0.88;
}

.master-tile .tile-media {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.master-tile .tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tile-village .tile-media img {
    object-position: center 20%;
}

.tile-vedanta .tile-media img {
    object-position: center 15%;
}

.master-tile:hover .tile-media img {
    transform: scale(1.07);
}

.master-tile .tile-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(253, 248, 243, 0.35) 100%);
}

.master-tile .tile-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.master-tile .tile-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-maroon);
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.75;
}

.master-tile h2 {
    font-size: 1.4rem;
    color: var(--brand-ink);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    font-weight: 700;
}

.master-tile .tile-body p {
    color: var(--brand-warm);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.6;
}

.master-tile .tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    align-self: flex-start;
    transition: all 0.3s ease;
    color: #fff;
    background: var(--brand-maroon);
}

.master-tile:hover .tile-cta {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.master-tile .tile-cta i {
    transition: transform 0.3s ease;
}

.master-tile:hover .tile-cta i {
    transform: translateX(5px);
}

/* Per-brand card backgrounds — exact logo colours */
.tile-thali  { background: #A31C20; border-color: #7a1418; }
.tile-village { background: #FBC817; border-color: #c9a010; }
.tile-yatra   { background: rgba(255, 255, 255, 0.4); border-color: rgba(122, 20, 24, 0.4); }
.tile-vedanta { background: #3A7A35; border-color: #2a5a26; }

/* Text colour overrides for dark-background tiles */
.tile-thali .tile-eyebrow,
.tile-thali h2,
.tile-thali .tile-body p { color: #fff; }
.tile-thali .tile-eyebrow { opacity: 0.8; }

.tile-vedanta .tile-eyebrow,
.tile-vedanta h2,
.tile-vedanta .tile-body p { color: #fff; }
.tile-vedanta .tile-eyebrow { opacity: 0.8; }

/* Per-brand button colours */
.tile-thali .tile-cta {
    background: #fff;
    color: #A31C20;
}
.tile-thali:hover .tile-cta { background: #f5e0e0; }

.tile-village .tile-cta {
    background: #A31C21;
    color: #FBC817;
}
.tile-village:hover .tile-cta { background: #7a1418; }

.tile-yatra .tile-cta {
    background: var(--brand-maroon);
    color: #fff;
}

.tile-vedanta .tile-cta {
    background: #fff;
    color: #3A7A35;
}
.tile-vedanta:hover .tile-cta { background: #e0f0e0; }

.master-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding: 16px;
    color: var(--brand-warm);
    font-size: 0.88rem;
    opacity: 0.75;
}

.master-footer a {
    color: var(--brand-maroon);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .master-tiles { grid-template-columns: 1fr; gap: 14px; }
    .master-hero { padding: 80px 16px 30px; }
    .master-hero-content { margin: 15px auto 30px; }
    .master-logo { width: 120px; margin-bottom: 15px; }
    .master-tile .tile-media { height: 110px; }
    .master-tile .tile-body { padding: 16px 20px 20px; }
    .master-tile h2 { font-size: 1.25rem; margin-bottom: 8px; }
    .master-tile .tile-body p { font-size: 0.9rem; margin-bottom: 14px; }
    .master-tile .tile-eyebrow { margin-bottom: 6px; }
    .master-tile .tile-cta { padding: 8px 16px; font-size: 0.72rem; }
    .master-footer { margin-top: 20px; padding: 12px 10px; font-size: 0.8rem; }
}

/* ============================================================
   COMING SOON PAGE (yatra, vedanta)
   ============================================================ */
body.coming-soon {
    background: #1a0606;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 102px 20px 40px;
}

.coming-wrap {
    position: relative;
    text-align: center;
    max-width: 640px;
    padding: 60px 40px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 24px;
    background: rgba(43, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.coming-wrap img.cs-logo {
    width: 140px;
    margin-bottom: 24px;
}

.coming-wrap .cs-eyebrow {
    color: var(--brand-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.coming-wrap h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}

.coming-wrap p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.coming-wrap .cs-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    background: var(--brand-yellow);
    color: #1a0606;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.coming-wrap .cs-back:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   GALLERY — STORYBOARD
   ============================================================ */

/* ---- Shared tokens ---- */
.gs-act {
    padding: 52px 0;
    background-color: transparent;
}

.gs-act-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 0 24px;
}

.gs-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.gs-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 12px;
}

.gs-body {
    font-size: 0.97rem;
    color: rgba(42, 14, 14, 0.65);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Base figure — no default browser margin */
.gs-fig {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.gs-fig img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gs-fig--clickable:hover img {
    transform: scale(1.04);
}

.gs-fig figcaption {
    padding: 10px 4px 0;
    font-size: 0.8rem;
    color: rgba(42, 14, 14, 0.5);
    letter-spacing: 0.3px;
}


/* ---- ACT 1: Opening scene ---- */
.gs-opening {
    position: relative;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
}

.gs-opening-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gs-opening-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 5, 5, 0.78) 0%, rgba(18, 5, 5, 0.18) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 56px;
    text-align: center;
}

.gs-opening-kicker {
    font-size: 0.72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.gs-opening-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0;
}


/* ---- ACT 2: Three cities ---- */
.gs-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gs-three-grid .gs-fig {
    aspect-ratio: 3 / 4;
}


/* ---- ACT 3: Ambiance ---- */
.gs-ambiance {
    background-color: var(--glass-bg);
}

.gs-asymmetric {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gs-fig--wide {
    aspect-ratio: 4 / 3;
    width: 100%;
}

.gs-ambiance-text .gs-label,
.gs-ambiance-text .gs-heading,
.gs-ambiance-text .gs-body {
    text-align: left;
}

.gs-two-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.gs-two-small .gs-fig {
    aspect-ratio: 1 / 1;
}


/* ---- ACT 4: Thali reveal ---- */
.gs-thali-reveal {
    position: relative;
    height: 90vh;
    min-height: 480px;
    overflow: hidden;
    display: block;
}

.gs-reveal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gs-thali-reveal:hover .gs-reveal-img {
    transform: scale(1.03);
}

.gs-reveal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 5, 5, 0.72) 0%, rgba(18, 5, 5, 0.35) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.gs-reveal-num {
    font-size: clamp(5rem, 16vw, 11rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin: 0;
}

.gs-reveal-num span {
    font-size: 0.45em;
    vertical-align: super;
}

.gs-reveal-line {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
    letter-spacing: 0.3px;
}


/* ---- ACT 5: The spread ---- */
.gs-spread-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gs-fig--tall {
    aspect-ratio: 2 / 3;
}

.gs-spread-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gs-spread-stack .gs-fig {
    aspect-ratio: 4 / 3;
}

.gs-spread-text {
    padding: 12px 0 0 12px;
}

.gs-spread-text .gs-label,
.gs-spread-text .gs-heading,
.gs-spread-text .gs-body {
    text-align: left;
}


/* ---- ACT 6: Dishes ---- */
.gs-dishes {
    background-color: var(--glass-bg);
}

.gs-dish-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gs-dish-card {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-dark);
    border: 1px solid rgba(163, 28, 33, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gs-dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(42, 14, 14, 0.12);
}

.gs-dish-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gs-dish-card:hover img {
    transform: scale(1.06);
}

.gs-dish-card figcaption {
    padding: 9px 10px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.2px;
    text-align: center;
    line-height: 1.3;
}


/* ---- ACT 7: Coming soon interlude ---- */
.gs-coming {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(163, 28, 33, 0.1);
    border-bottom: 1px solid rgba(163, 28, 33, 0.1);
}

.gs-coming-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.gs-coming-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.gs-coming-chips span {
    background: rgba(163, 28, 33, 0.06);
    border: 1px solid rgba(163, 28, 33, 0.2);
    color: var(--text-color);
    font-size: 0.84rem;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gs-coming-chips span i {
    color: var(--primary-color);
    font-size: 0.8em;
}


/* ---- ACT 8: CTA ---- */
.gs-cta {
    padding: 56px 24px;
    text-align: center;
    background-color: var(--primary-color);
}

.gs-cta .gs-label {
    color: var(--accent-color);
}

.gs-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.gs-cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.7;
}

.gs-cta .btn-primary {
    background: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
}

.gs-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.gs-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* ---- Lightbox ---- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18, 5, 5, 0.94);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.glb-img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.glb-img-wrap img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.glb-caption {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    margin-top: 10px;
    letter-spacing: 0.3px;
}

.glb-close,
.glb-prev,
.glb-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.glb-close:hover,
.glb-prev:hover,
.glb-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.glb-close { top: 20px; right: 20px; }
.glb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.glb-next  { right: 20px; top: 50%; transform: translateY(-50%); }


/* ---- Gallery responsive ---- */
@media (max-width: 1024px) {
    .gs-dish-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gs-spread-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gs-spread-text {
        grid-column: span 2;
        padding: 0;
        text-align: center;
    }
    .gs-spread-text .gs-label,
    .gs-spread-text .gs-heading,
    .gs-spread-text .gs-body {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gs-act { padding: 44px 0; }
    .gs-three-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }
    .gs-three-grid .gs-fig {
        aspect-ratio: 4 / 3;
    }
    .gs-asymmetric {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 16px;
    }
    .gs-fig--wide {
        aspect-ratio: 16 / 9;
    }
    .gs-spread-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    .gs-spread-text {
        grid-column: span 1;
    }
    .gs-fig--tall { aspect-ratio: 4 / 3; }
    .gs-dish-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 16px;
    }
    .gs-opening-title { font-size: clamp(1.8rem, 8vw, 3rem); }
    .glb-prev { left: 8px; }
    .glb-next { right: 8px; }
}

@media (max-width: 500px) {
    .gs-dish-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gs-three-grid { padding: 0 12px; }
    .gs-reveal-num { font-size: clamp(4rem, 22vw, 7rem); }
}

/* ============================================================
   FAMILY FAVOURITES (Thali page)
   ============================================================ */
.family-favourites {
    padding: 60px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.family-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.8;
    color: var(--text-color);
}

.family-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 14px;
    margin: 0 0 44px;
}

.family-chip {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.family-chip:not(:last-child)::after {
    content: "|";
    color: var(--primary-color);
    margin-left: 14px;
    font-weight: 400;
}

.family-pricing-heading {
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(42, 14, 14, 0.5);
    margin: 0 0 24px;
}

.family-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.family-price-card {
    background: #ffffff;
    border: 1px solid rgba(163, 28, 33, 0.15);
    border-top: 3px solid rgba(163, 28, 33, 0.5);
    border-radius: 16px;
    padding: 0 20px 26px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(42, 14, 14, 0.07);
}

.family-price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(163,28,33,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.family-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(42, 14, 14, 0.13);
    border-top-color: var(--primary-color);
}

.fp-featured {
    background: var(--primary-color);
    border: 1px solid rgba(163, 28, 33, 0.8);
    border-top: 3px solid #FBE201;
    box-shadow: 0 8px 32px rgba(163, 28, 33, 0.35);
    padding-top: 10px;
    padding-bottom: 32px;
}

.fp-featured:hover {
    box-shadow: 0 16px 48px rgba(163, 28, 33, 0.45);
}

.fp-badge {
    position: absolute;
    top: 0;
    right: 14px;
    background: #FBE201;
    color: #2A0E0E;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 0 0 9px 9px;
    text-transform: uppercase;
}

.fp-badge-spacer {
    height: 28px;
}

.fp-top-label {
    font-size: 0.66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(163, 28, 33, 0.7);
    margin-bottom: 12px;
}

.fp-featured .fp-top-label {
    color: rgba(251, 226, 1, 0.85);
}

.fp-size {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2A0E0E;
    line-height: 1;
    margin-bottom: 16px;
}

.fp-featured .fp-size {
    color: #fff;
}

.fp-size i {
    font-size: 0.85em;
    opacity: 0.45;
    margin-right: 6px;
}

.fp-divider {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(163,28,33,0.35), transparent);
    margin: 0 auto 16px;
}

.fp-featured .fp-divider {
    background: linear-gradient(90deg, transparent, rgba(251,226,1,0.5), transparent);
}

.fp-rate-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
    text-align: center;
}

.fp-rate-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 0;
}

.fp-rate-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(42, 14, 14, 0.45);
    white-space: nowrap;
}

.fp-featured .fp-rate-label {
    color: rgba(255, 255, 255, 0.6);
}

.fp-rate-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2A0E0E;
    white-space: nowrap;
}

.fp-featured .fp-rate-value {
    color: rgba(255, 255, 255, 0.9);
}

.fp-total-row {
    border-top: 1px solid rgba(163, 28, 33, 0.15);
    margin-top: 4px;
    padding-top: 10px;
}

.fp-featured .fp-total-row {
    border-top-color: rgba(251, 226, 1, 0.3);
}

.fp-total-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    white-space: nowrap;
    line-height: 1.1;
}

.fp-featured .fp-total-value {
    color: #FBE201;
}

.fp-savings-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fp-strike {
    color: rgba(42, 14, 14, 0.3);
    text-decoration: line-through;
    font-size: 0.8rem;
}

.fp-featured .fp-strike {
    color: rgba(255, 255, 255, 0.35);
}

.fp-save {
    display: inline-block;
    background: rgba(163, 28, 33, 0.08);
    border: 1px solid rgba(163, 28, 33, 0.25);
    color: #A31C21;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.fp-featured .fp-save {
    background: rgba(251, 226, 1, 0.15);
    border-color: rgba(251, 226, 1, 0.4);
    color: #FBE201;
}

/* Platform callout */
.family-platform-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    background: rgba(255, 244, 194, 0.72);
    border: 1px solid rgba(163, 28, 33, 0.2);
    border-left: 4px solid var(--primary-color);
    border-radius: 14px;
    padding: 22px 28px;
    margin-top: 32px;
    box-shadow: 0 2px 16px rgba(42, 14, 14, 0.07);
}

.fpc-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}

.fpc-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.fpc-text strong {
    display: block;
    font-size: 0.98rem;
    color: #2A0E0E;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.fpc-text p {
    font-size: 0.84rem;
    color: rgba(42, 14, 14, 0.6);
    line-height: 1.55;
    margin: 0;
}

.fpc-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.fpc-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.fpc-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.fpc-btn i {
    font-size: 0.78em;
}

.fpc-swiggy {
    background: #fc8019;
    color: #fff;
    box-shadow: 0 4px 16px rgba(252, 128, 25, 0.4);
}

.fpc-swiggy:hover {
    box-shadow: 0 8px 24px rgba(252, 128, 25, 0.55);
}

.fpc-zomato {
    background: #e23744;
    color: #fff;
    box-shadow: 0 4px 16px rgba(226, 55, 68, 0.4);
}

.fpc-zomato:hover {
    box-shadow: 0 8px 24px rgba(226, 55, 68, 0.55);
}

@media (max-width: 820px) {
    .family-pricing {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .fp-featured:hover {
        transform: translateY(-6px);
    }
    .family-platform-callout {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .fpc-buttons {
        width: 100%;
    }
    .fpc-btn {
        flex: 1;
        justify-content: center;
    }
    .fpc-text {
        min-width: 0;
    }
}

@media (max-width: 460px) {
    .family-pricing {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .family-price-card {
        padding: 0 12px 18px;
        border-radius: 12px;
    }

    .fp-size {
        font-size: 0.95rem;
    }

    .fp-total-value {
        font-size: 1.3rem;
    }

    .fp-top-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .fp-rate-label {
        font-size: 0.68rem;
    }

    .fp-rate-value {
        font-size: 0.9rem;
    }

    .fp-badge-spacer {
        height: 22px;
    }

    .family-chip {
        padding: 0;
        font-size: 0.9rem;
    }

    .family-perks {
        gap: 12px 18px;
    }
}

/* ============================================================
   VILLAGE PRICING CARDS
   ============================================================ */
.village-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.village-price-card {
    background: rgba(43, 10, 10, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.village-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.village-price-card.highlight {
    background: linear-gradient(160deg, rgba(163, 28, 33, 0.92), rgba(74, 42, 135, 0.9));
    border-color: var(--brand-yellow, #FBC817);
}

.vpc-title {
    color: #FBE201;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.vpc-days {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.vpc-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 10px;
}

.vpc-price {
    text-align: center;
    padding: 14px 10px;
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
}

.vpc-price .label {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.vpc-price .amount {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
}

.village-addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.village-addon-card {
    background: rgba(43, 10, 10, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 18px;
    padding: 26px 22px;
}

.village-addon-card.featured {
    border-color: var(--brand-yellow, #FBC817);
    background: linear-gradient(160deg, rgba(74, 42, 135, 0.85), rgba(163, 28, 33, 0.85));
}

.va-price {
    color: #FBE201;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.va-kicker {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.va-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.va-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.va-list li {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    padding: 6px 0 6px 20px;
    position: relative;
}

.va-list li::before {
    content: '\25AA';
    color: var(--brand-yellow, #FBC817);
    position: absolute;
    left: 0;
}

.va-list li.section-label {
    color: var(--brand-yellow, #FBC817);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    padding-left: 0;
    margin-top: 10px;
}

.va-list li.section-label::before { content: ''; }

@media (max-width: 820px) {
    .village-pricing-grid { grid-template-columns: 1fr; }
    .village-addon-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(163, 28, 33, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(42, 14, 14, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(163, 28, 33, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.testimonial-stars .fa-star {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.testimonial-stars .fa-star.empty {
    color: rgba(42, 14, 14, 0.2);
}

.testimonial-content {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(163, 28, 33, 0.15);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-sep {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(42, 14, 14, 0.25);
    flex-shrink: 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #7a5c5c;
    font-weight: 300;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 52px 0;
    }
}

/* ============================================================
   MENU INQUIRY (Thali page)
   ============================================================ */
.menu-inquiry-wrap {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(163, 28, 33, 0.06), rgba(251, 226, 1, 0.06));
    border: 1px solid rgba(163, 28, 33, 0.18);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.miq-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.miq-form {
    flex: 1.5;
}

.miq-icon {
    font-size: 2.5rem;
    color: #25D366;
    flex-shrink: 0;
    margin-top: 2px;
}

.miq-heading {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.miq-sub {
    font-size: 0.95rem;
    color: #6b4c4c;
    margin: 0;
    font-weight: 300;
}

.miq-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.miq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.miq-field label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color);
}

.miq-field input,
.miq-field select {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    color: var(--text-color);
    background: #ffffff;
    border: 1px solid rgba(163, 28, 33, 0.22);
    border-radius: 8px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.miq-field input:focus,
.miq-field select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(163, 28, 33, 0.1);
}

.miq-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A31C21' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.miq-error {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 4px 0 12px;
    min-height: 1.2em;
}

.miq-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.miq-submit:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.miq-submit i {
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .menu-inquiry-wrap {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 14px;
        margin-top: 24px;
        gap: 20px;
    }

    .miq-header {
        flex: none;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
    }

    .miq-form {
        flex: none;
    }

    .miq-icon {
        font-size: 1.5rem;
    }

    .miq-heading {
        font-size: 1.05rem;
        margin-bottom: 2px;
    }

    .miq-sub {
        font-size: 0.8rem;
    }

    .miq-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Prevent iOS Safari auto-zoom on input focus (requires >= 16px) */
    .miq-field input,
    .miq-field select {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    .miq-submit {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .menu-inquiry-wrap {
        padding: 14px 10px;
    }

    .miq-field label {
        font-size: 0.72rem;
    }

    .miq-fields {
        gap: 8px;
    }
}

/* ============================================================
   MAIN PAGE SCROLLABLE GALLERY
   ============================================================ */
.main-gallery-section {
    padding: 60px 0;
    overflow: hidden;
}

.scrollable-gallery {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(163, 28, 33, 0.1);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.scrollable-gallery::-webkit-scrollbar {
    height: 8px;
}

.scrollable-gallery::-webkit-scrollbar-track {
    background: rgba(163, 28, 33, 0.1);
    border-radius: 10px;
}

.scrollable-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.scrollable-gallery img {
    flex: 0 0 calc(33.333% - 16px);
    width: calc(33.333% - 16px);
    height: 320px; /* Increased from 250px for better desktop presence */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(42, 14, 14, 0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

@media (min-width: 1200px) {
    .scrollable-gallery img {
        flex: 0 0 calc(25% - 16px); /* Show 4 images on large laptops */
        width: calc(25% - 16px);
        height: 380px;
    }
}

.scrollable-gallery img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .scrollable-gallery img {
        flex: 0 0 calc(50% - 16px);
        width: calc(50% - 16px);
        height: 220px;
    }
}

@media (max-width: 500px) {
    .scrollable-gallery img {
        flex: 0 0 85%;
        width: 85%;
        height: 200px;
    }
}
/* ============================================================
   TESTIMONIALS (Shared)
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--glass-border);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

.testimonial-sep {
    color: #ccc;
}

.testimonial-role {
    color: #888;
    font-size: 0.85rem;
}

/* ============================================================
   MENU MODAL (Village & Master)
   ============================================================ */
.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.menu-modal.active {
    display: flex;
}

.menu-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    object-fit: contain;
}

.close-menu-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.close-menu-modal:hover {
    transform: scale(1.2) rotate(90deg);
}

@media (max-width: 768px) {
    .close-menu-modal {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}
/* ============================================================
   VEDANTA SPECIFIC - DESKTOP REFINEMENTS
   ============================================================ */
.vedanta-page .vedanta-logo-wrap {
    margin-bottom: 12px;
}

.vedanta-page .vedanta-logo-wrap img {
    width: 200px;
}

.vedanta-page .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
}

.vedanta-page .hero-subtitle {
    font-size: 1.15rem;
    max-width: 680px;
}

.vedanta-page .culinary-journey {
    padding: 60px 0;
}

.vedanta-page .journey-grid {
    gap: 40px;
}

.vedanta-page .journey-text {
    padding: 30px;
}

.vedanta-map-card {
    margin-top: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42, 14, 14, 0.08);
}

.vedanta-map-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(163, 28, 33, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.vedanta-map-actions .btn-primary,
.vedanta-map-actions .btn-secondary {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.vedanta-map-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .vedanta-map-actions {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    .vedanta-map-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .vedanta-map-frame {
        height: 250px;
    }
    .vedanta-logo-wrap img {
        width: 140px;
    }
}
/* ============================================================
   VILLAGE MAP SECTION
   ============================================================ */
.map-card {
    margin-top: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42, 14, 14, 0.1);
}

.map-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
    background: rgba(163, 28, 33, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

.map-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-menu-outline {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}

.map-frame-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.open-in-maps-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .map-card-actions {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .map-frame-container {
        height: 320px;
    }
    .open-in-maps-btn {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Heritage Deco Ornaments */
.deco-ornament {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    max-width: 150px;
}
.deco-top-right {
    top: -20px;
    right: -20px;
}
.deco-bottom-left {
    bottom: -20px;
    left: -20px;
}
.deco-center-right {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    max-width: 280px;
    opacity: 0.08;
}
.deco-center-left {
    top: 50%;
}

.vedanta-page .vedanta-logo-wrap img {
    width: 200px;
}

.vedanta-page .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
}

.vedanta-page .hero-subtitle {
    font-size: 1.15rem;
    max-width: 680px;
}

.vedanta-page .culinary-journey {
    padding: 60px 0;
}

.vedanta-page .journey-grid {
    gap: 40px;
}

.vedanta-page .journey-text {
    padding: 30px;
}

.vedanta-map-card {
    margin-top: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42, 14, 14, 0.08);
}

.vedanta-map-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(163, 28, 33, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.vedanta-map-actions .btn-primary,
.vedanta-map-actions .btn-secondary {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.vedanta-map-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .vedanta-map-actions {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    .vedanta-map-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .vedanta-map-frame {
        height: 250px;
    }
    .vedanta-logo-wrap img {
        width: 140px;
    }
}
/* ============================================================
   VILLAGE MAP SECTION
   ============================================================ */
.map-card {
    margin-top: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42, 14, 14, 0.1);
}

.map-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
    background: rgba(163, 28, 33, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

.map-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-menu-outline {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}

.map-frame-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.open-in-maps-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .map-card-actions {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    .map-frame-container {
        height: 320px;
    }
    .open-in-maps-btn {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Heritage Deco Ornaments */
.deco-ornament {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    max-width: 150px;
}
.deco-top-right {
    top: -20px;
    right: -20px;
}
.deco-bottom-left {
    bottom: -20px;
    left: -20px;
}
.deco-center-right {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    max-width: 280px;
    opacity: 0.08;
}
.deco-center-left {
    top: 50%;
    left: -40px;
    transform: translateY(-50%) scaleX(-1);
    max-width: 280px;
    opacity: 0.08;
}
/* Ensure sections can contain the ornaments gracefully */
.culinary-journey, .offers, .testimonials-section, .proximity-section, .main-gallery-section, .outlet-pricing, .outlet-page, .master-hero {
    position: relative;
    overflow: hidden;
}
