/* Shared stylesheet for Desi Tadka website */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fdfaf6;
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
    --saffron: #E8860C;
    --saffron-dark: #c46f08;
    --chili: #C0392B;
    --turmeric: #F4C430;
    --cream: #fdfaf6;
    --charcoal: #1a1a1a;
    --warm-gray: #f5f0ea;
    --gold: #d4a843;
    --green: #2d6a4f;
}

/* ===== BODY SCROLL LOCK ===== */
body.menu-open { overflow: hidden; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}
.nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    padding: 0.5rem 2rem;
}
.nav.nav-solid {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-logo-icon:hover { transform: rotate(-15deg) scale(1.1); }
.nav-logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--turmeric); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--turmeric); }
.nav-links a.nav-active::after { width: 100%; }
.nav-cta {
    background: var(--saffron);
    color: white !important;
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(232,134,12,0.4);
}
.nav-cta:hover {
    background: var(--saffron-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,134,12,0.5);
}
.nav-cta::after { display: none !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(192,57,43,0.3) 50%, rgba(26,26,26,0.8) 100%),
        url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=80') center/cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--turmeric);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: white;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
.hero h1 span {
    color: var(--saffron);
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-top: 0.3rem;
}
.hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--turmeric);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
.btn {
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary {
    background: var(--saffron);
    color: white;
    box-shadow: 0 4px 20px rgba(232,134,12,0.4);
}
.btn-primary:hover {
    background: var(--saffron-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,134,12,0.5);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    border-color: var(--turmeric);
    color: var(--turmeric);
    transform: translateY(-3px);
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}
.hero-scroll span::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--saffron);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 20px; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== FLOATING SPICE PARTICLES ===== */
.spice-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.spice-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite linear;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ===== SECTION STYLES ===== */
section { padding: 6rem 2rem; }
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-label {
    display: inline-block;
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--charcoal);
    line-height: 1.2;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--turmeric));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== KULCHA HERO PROMO ===== */
.kulcha-promo {
    position: relative;
    overflow: hidden;
    background: url('./images/kulcha.jpg') center / cover no-repeat;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kulcha-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.72) 100%);
    z-index: 0;
}
.kulcha-promo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232,134,12,0.18) 0%, transparent 45%);
    z-index: 0;
}
.kulcha-promo > * { position: relative; z-index: 1; }

.kulcha-promo .deco-ring {
    position: absolute;
    border: 1px solid rgba(232,134,12,0.18);
    border-radius: 50%;
    pointer-events: none;
    animation: ringPulse 8s ease-in-out infinite;
}
.kulcha-promo .deco-ring-1 {
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.kulcha-promo .deco-ring-2 {
    width: 820px; height: 820px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(232,134,12,0.08);
    animation-delay: 2s;
}
@keyframes ringPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

.kulcha-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.kulcha-image { display: none; }
.kulcha-text {
    color: white;
    text-align: center;
}
.kulcha-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(232,134,12,0.6);
    color: var(--turmeric);
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
    background: rgba(232,134,12,0.08);
}
.kulcha-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 0.3rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.kulcha-text h2 em {
    font-style: italic;
    color: var(--saffron);
}
.kulcha-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0 1.4rem;
}
.kulcha-ornament::before,
.kulcha-ornament::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,168,67,0.7));
}
.kulcha-ornament::after {
    background: linear-gradient(to left, transparent, rgba(212,168,67,0.7));
}
.kulcha-ornament span {
    color: var(--gold);
    font-size: 1.1rem;
}
.kulcha-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.7rem;
    color: var(--turmeric);
    margin-bottom: 1.5rem;
}
.kulcha-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 auto 2rem;
    max-width: 580px;
}
.kulcha-features {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.kulcha-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
}
.kulcha-feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
}
.kulcha-price { display: none; }
.kulcha-price-label { display: none; }

@media (max-width: 768px) {
    .kulcha-promo { min-height: 100vh; }
    .kulcha-grid { padding: 4rem 1.5rem; }
    .kulcha-text h2 { font-size: 2.6rem; }
    .kulcha-subtitle { font-size: 1.4rem; }
    .kulcha-text p { font-size: 0.95rem; }
    .kulcha-promo .deco-ring-1 { width: 320px; height: 320px; }
    .kulcha-promo .deco-ring-2 { width: 500px; height: 500px; }
}
@media (max-width: 480px) {
    .kulcha-text h2 { font-size: 2rem; }
    .kulcha-subtitle { font-size: 1.2rem; }
}

/* ===== KULCHA SECRETS ===== */
.kulcha-secrets {
    background: var(--charcoal);
    padding: 5rem 2rem;
}
.kulcha-secrets-inner { max-width: 1200px; margin: 0 auto; }
.kulcha-secrets .section-header { margin-bottom: 3rem; }
.kulcha-secrets .section-title { color: white; }
.kulcha-secrets .section-label { color: var(--saffron); }
.kulcha-secrets .section-divider { background: linear-gradient(to right, transparent, var(--saffron), transparent); }
.ks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.ks-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
}
.ks-card:hover {
    background: rgba(232,134,12,0.08);
    border-color: rgba(232,134,12,0.3);
    transform: translateY(-4px);
}
.ks-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.ks-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.75rem;
}
.ks-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.ks-claim {
    text-align: center;
}
.ks-claim-inner {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232,134,12,0.12), rgba(192,57,43,0.12));
    border: 1px solid rgba(232,134,12,0.25);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    max-width: 680px;
}
.ks-claim-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), var(--chili));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}
.ks-claim-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.ks-hashtags {
    font-size: 0.85rem;
    color: var(--saffron);
    font-weight: 600;
    letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
    .ks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .kulcha-secrets { padding: 3.5rem 1.2rem; }
    .ks-grid { grid-template-columns: 1fr; gap: 1rem; }
    .ks-claim-inner { padding: 2rem 1.5rem; }
    .ks-claim-text { font-size: 1.1rem; }
}

/* ===== OUR STORY ===== */
.story {
    background: var(--warm-gray);
}
.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s;
}
.story-image:hover img { transform: scale(1.05); }
.story-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--saffron);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(232,134,12,0.4);
}
.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}
.story-text p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.story-timeline {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.timeline-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 100px;
    transition: transform 0.3s;
}
.timeline-item:hover { transform: translateY(-5px); }
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--saffron);
    font-weight: 700;
}
.timeline-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ===== SPECIALTIES ===== */
.specialties {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 55% at 50% -5%,  rgba(232,134,12,0.13) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 0%   100%, rgba(212,168,67,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(139,69,19,0.08)  0%, transparent 55%),
        linear-gradient(160deg, #1d1208 0%, #1a0f07 45%, #160c06 100%);
}

/* Repeating Indian-inspired diamond SVG lattice */
.specialties::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(212,168,67,0.07)' stroke-width='0.8'%3E%3Cpath d='M26 2L50 26L26 50L2 26Z'/%3E%3Ccircle cx='26' cy='26' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
}

/* Giant ghost watermark — "SPECIALTIES" behind the cards */
.specialties::before {
    content: 'SPECIALTIES';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 16vw, 16rem);
    font-weight: 900;
    color: rgba(212,168,67,0.035);
    white-space: nowrap;
    letter-spacing: 0.06em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.specialties > * { position: relative; z-index: 2; }
.specialties .section-title { color: white; }
.specialties .section-label { color: var(--turmeric); }

/* Gold corner bracket accents */
.spec-corner {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 3;
    pointer-events: none;
}
.spec-corner--tl { top: 2rem;  left: 2rem;
    border-top: 2px solid rgba(212,168,67,0.5); border-left: 2px solid rgba(212,168,67,0.5); }
.spec-corner--tr { top: 2rem;  right: 2rem;
    border-top: 2px solid rgba(212,168,67,0.5); border-right: 2px solid rgba(212,168,67,0.5); }
.spec-corner--bl { bottom: 2rem; left: 2rem;
    border-bottom: 2px solid rgba(212,168,67,0.5); border-left: 2px solid rgba(212,168,67,0.5); }
.spec-corner--br { bottom: 2rem; right: 2rem;
    border-bottom: 2px solid rgba(212,168,67,0.5); border-right: 2px solid rgba(212,168,67,0.5); }

/* ── Bento grid ── */
.spec-bento {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 360px 360px;
    gap: 0.9rem;
}
.spec-bento-hero { grid-column: 1 / 3; grid-row: 1 / 3; }   /* Kulcha: 2×2 */
.spec-bento-tall { grid-column: 3;     grid-row: 1 / 3; }   /* Butter Chicken: 1×2 */
/* Channa: col 4 row 1 — auto */
/* Samosa: col 4 row 2 — auto */

/* ── Base card ── */
.spec-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
    transform-style: preserve-3d;
    transition: box-shadow 0.4s ease;
}
.spec-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
    will-change: transform;
}
.spec-card:hover img { transform: scale(1.07); }

/* ── Overlay ── */
.spec-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10,7,2,0.93) 0%,
        rgba(10,7,2,0.25) 50%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    transition: background 0.4s;
}
.spec-card:hover .spec-overlay {
    background: linear-gradient(to top,
        rgba(10,7,2,0.97) 0%,
        rgba(10,7,2,0.45) 55%,
        transparent 100%);
}

/* ── Badge (top centre) ── */
.spec-featured-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.32rem 1rem;
    border-radius: 2px;
    white-space: nowrap;
    z-index: 5;
    /* default — saffron */
    background: var(--saffron);
    color: white;
    box-shadow: 0 4px 14px rgba(232,134,12,0.45);
}
.spec-kulcha-badge {
    background: linear-gradient(135deg, #b8860b, #d4a843);
    color: #1a0e00;
    box-shadow: 0 4px 18px rgba(212,168,67,0.55);
}
.spec-samosa-badge {
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: white;
    box-shadow: 0 4px 14px rgba(45,106,79,0.4);
}

/* ── Tags ── */
.spec-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.28rem 0.8rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-bottom: 0.6rem;
    color: white;
}
.spec-tag--gold  { background: linear-gradient(135deg, #d4a843, #E8860C); }
.spec-tag--green { background: linear-gradient(135deg, #2d6a4f, #40916c); }

/* ── Text ── */
.spec-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.spec-bento-hero .spec-name {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}
.spec-bento-hero .spec-desc {
    font-size: 0.95rem;
    max-width: 440px;
}
.spec-desc {
    color: rgba(255,255,255,0.72);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* ── Glow rings ── */
.spec-card--kulcha {
    box-shadow:
        0 0 0 2px rgba(212,168,67,0.7),
        0 0 0 5px rgba(212,168,67,0.15),
        0 24px 80px rgba(212,168,67,0.3);
}
.spec-card--kulcha:hover {
    box-shadow:
        0 0 0 2px rgba(212,168,67,0.9),
        0 0 0 6px rgba(212,168,67,0.25),
        0 32px 100px rgba(212,168,67,0.45);
}
.spec-card--featured {
    box-shadow:
        0 0 0 2px rgba(232,134,12,0.6),
        0 20px 60px rgba(232,134,12,0.2);
}
.spec-card--featured:hover {
    box-shadow:
        0 0 0 2px rgba(232,134,12,0.85),
        0 24px 70px rgba(232,134,12,0.35);
}
.spec-card--bhatura,
.spec-card--samosa {
    box-shadow: 0 0 0 2px rgba(45,106,79,0.5);
}
.spec-card--bhatura:hover,
.spec-card--samosa:hover {
    box-shadow: 0 0 0 2px rgba(45,106,79,0.85), 0 16px 50px rgba(45,106,79,0.25);
}

/* ===== KULCHA SPOTLIGHT ===== */
.kulcha-spotlight {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem;
}

/* Full-bleed background image */
.ks-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ks-bg img {
    width: 100%;
    height: 120%;        /* extra height so parallax shift never shows gaps */
    object-fit: cover;
    object-position: center;
    display: block;
    top: -10%;           /* start offset so we have room in both directions */
    position: absolute;
    will-change: transform;
    transform: scale(1.0) translateY(0px);
}

/* Multi-layer gradient overlay */
.ks-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(10, 7, 2, 0.72) 0%,
            rgba(10, 7, 2, 0.45) 35%,
            rgba(10, 7, 2, 0.52) 65%,
            rgba(10, 7, 2, 0.82) 100%),
        radial-gradient(ellipse at center, transparent 20%, rgba(5, 3, 0, 0.45) 100%);
}

/* Centered content */
.ks-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.ks-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--turmeric);
    margin-bottom: 1.25rem;
}

.ks-badge {
    display: inline-block;
    background: linear-gradient(135deg, #b8860b, #d4a843, #b8860b);
    background-size: 200% auto;
    color: #1a0e00;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.ks-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.ks-heading span {
    color: var(--saffron);
    font-style: italic;
}

.ks-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* 4-column pillars */
.ks-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(212, 168, 67, 0.18);
    border: 1px solid rgba(212, 168, 67, 0.18);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ks-pillar {
    background: rgba(10, 7, 2, 0.55);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    cursor: default;
    will-change: transform;
}
.ks-pillar:hover {
    background: rgba(232, 134, 12, 0.12);
    box-shadow: inset 0 0 0 1px rgba(212,168,67,0.3);
}

.ks-pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--saffron);
    opacity: 0.45;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.ks-pillar h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ks-pillar p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

/* CTA block */
.ks-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ks-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}
.ks-quote-text::before { content: '"'; color: var(--gold); margin-right: 2px; }
.ks-quote-text::after  { content: '"'; color: var(--gold); margin-left: 2px; }

@media (max-width: 860px) {
    .kulcha-spotlight { min-height: auto; padding: 5rem 1.5rem; }
    .ks-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .kulcha-spotlight { padding: 4rem 1.25rem; }
    .ks-pillars { grid-template-columns: 1fr 1fr; }
    .ks-pillar { padding: 1.5rem 1rem; }
    .ks-heading { font-size: 2rem; }
}

/* ===== SERVICES ===== */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--turmeric));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232,134,12,0.12);
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--saffron), var(--turmeric));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: rotate(0deg) scale(1.1); }
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.service-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== LOCATIONS ===== */
.locations {
    background: var(--warm-gray);
}
.locations-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.location-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s;
}
.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}
.location-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.location-card:hover .location-img img { transform: scale(1.08); }
.location-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--saffron);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.location-info {
    padding: 2rem;
}
.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}
.location-detail-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--saffron);
}
.location-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: var(--charcoal);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.location-cta:hover {
    background: var(--saffron);
    transform: translateX(5px);
}
.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.88rem;
    margin-top: 0.1rem;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    color: #444;
}
.hours-row span:first-child { font-weight: 500; color: #333; min-width: 80px; }
.hours-closed span { color: #999; }
.hours-holiday {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    background: rgba(232,134,12,0.1);
    border: 1px solid rgba(232,134,12,0.3);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    color: var(--saffron-dark);
    font-weight: 500;
}
.location-map { margin-top: 1rem; }

/* ===== CATERING CTA ===== */
.catering-cta {
    background:
        linear-gradient(135deg, rgba(192,57,43,0.85), rgba(232,134,12,0.85)),
        url('https://images.unsplash.com/photo-1567337710282-00832b415979?w=1920&q=80') center/cover;
    text-align: center;
    color: white;
}
.catering-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}
.catering-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 2rem;
}
.catering-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.catering-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.catering-feature span { font-size: 1.5rem; }
.catering-inner { max-width: 1100px; margin: 0 auto; }
.catering-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}
.catering-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.catering-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232,134,12,0.4);
}
.catering-card-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.catering-card h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}
.catering-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; }
.catering-testimonial {
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--saffron);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.75rem;
    margin: 0 auto 2.5rem;
    max-width: 640px;
    text-align: left;
}
.catering-testimonial p {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.catering-testimonial span { color: var(--turmeric); font-size: 0.85rem; font-weight: 600; }
.catering-ctas-wrap {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== TIFFIN SECTION ===== */
/* ===== TIFFIN SECTION ===== */
.tiffin-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem;
}

/* Full-bleed parallax background */
.tf-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tf-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: -10%;
    will-change: transform;
}

/* Overlay — dark at edges, reveals food in centre */
.tf-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(8,5,2,0.82) 0%, rgba(8,5,2,0.55) 40%, rgba(8,5,2,0.82) 100%),
        radial-gradient(ellipse at center, transparent 25%, rgba(4,2,0,0.45) 100%);
}

/* Centered content */
.tf-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.tf-header { margin-bottom: 3rem; }
.tf-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 1rem;
}
.tf-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.tf-title em {
    font-style: italic;
    color: var(--turmeric);
}
.tf-sub {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Pricing cards */
.tf-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 680px;
    margin: 0 auto 2rem;
}
.tf-plan {
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: left;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.tf-plan--veg {
    background: rgba(45,106,79,0.18);
    border: 1px solid rgba(45,106,79,0.45);
}
.tf-plan--nonveg {
    background: rgba(232,134,12,0.15);
    border: 1px solid rgba(232,134,12,0.5);
    box-shadow: 0 0 0 1px rgba(232,134,12,0.12), 0 20px 60px rgba(232,134,12,0.12);
}
.tf-plan-badge {
    position: absolute;
    top: -1px; right: 1.25rem;
    background: linear-gradient(135deg, var(--saffron), #c0660a);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 6px 6px;
}
.tf-plan-type {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.6rem;
}
.tf-plan--nonveg .tf-plan-type { color: var(--turmeric); }
.tf-plan--veg .tf-plan-type { color: #52b788; }

.tf-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 1.25rem;
}
.tf-plan-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin-left: 4px;
}

.tf-plan-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tf-plan-items li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tf-plan-items li::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
    opacity: 0.7;
}
.tf-plan--veg .tf-plan-items li::before { background: #52b788; }
.tf-plan-items li:last-child { border-bottom: none; }

/* Discount strip */
.tf-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.28);
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}
.tf-discount svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.tf-discount strong { color: var(--gold); }

/* CTA buttons */
.tf-ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.tf-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s;
    background: linear-gradient(135deg, var(--saffron), #c0660a);
    color: white;
    box-shadow: 0 8px 28px rgba(232,134,12,0.35);
}
.tf-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    box-shadow: none;
}
.tf-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,134,12,0.45); }
.tf-btn--outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

@media (max-width: 600px) {
    .tf-plans { grid-template-columns: 1fr; max-width: 340px; }
    .tiffin-section { min-height: auto; }
}

/* ===== REVIEWS ===== */
.reviews-location-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--saffron-dark);
    margin-bottom: 1.5rem;
}
.reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-5px); }
.review-stars {
    color: var(--turmeric);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--turmeric));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}
.review-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.review-source {
    font-size: 0.75rem;
    color: #999;
}
.review-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(232,134,12,0.1);
    line-height: 1;
}

/* ===== PRIVATE EVENTS ===== */
.events {
    background: var(--charcoal);
    color: white;
}
.events-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.events-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.events-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.events-features {
    list-style: none;
    margin-bottom: 2rem;
}
.events-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
.events-features li span { color: var(--turmeric); font-size: 1.2rem; }
.events-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.events-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s;
}
.events-image:hover img { transform: scale(1.05); }

/* ===== CATERING MENU SECTION ===== */
.catering-menu-section {
    background: #fdf6ec;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.catering-menu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(232,134,12,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(192,57,43,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.catering-menu-section::after {
    content: '✦';
    position: absolute;
    top: 3rem; right: 5%;
    font-size: 8rem;
    color: rgba(232,134,12,0.06);
    line-height: 1;
    pointer-events: none;
    font-family: serif;
}
.catering-menu-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.catering-menu-section .section-label { color: var(--saffron-dark) !important; }
.catering-menu-section .section-title { color: #1a1a1a !important; }
.catering-menu-section .section-divider { background: linear-gradient(to right, transparent, var(--saffron), transparent) !important; }

.cm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 2.5rem 0 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.85rem 1rem;
    box-shadow: none;
}
.cm-tab {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: all 0.22s;
}
.cm-tab:hover {
    border-color: var(--saffron);
    color: var(--saffron);
    background: rgba(232,134,12,0.1);
}
.cm-tab.active {
    background: var(--saffron);
    border-color: var(--saffron);
    color: white;
    box-shadow: 0 4px 18px rgba(232,134,12,0.35);
}
.cm-panel { display: none; animation: fadeInUp 0.35s ease; }
.cm-panel.active { display: block; }
.cm-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}
.cm-categories-3 { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
.cm-categories-single { grid-template-columns: 1fr; align-items: start; }
.cm-category {
    background: white;
    border: 1px solid #ede4d8;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}
.cm-category:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.cm-category-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--saffron-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid #f5ece0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cm-category-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
    flex-shrink: 0;
}
.cm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.cm-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #f5efe6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s, padding-left 0.2s;
}
.cm-list li:hover { color: var(--saffron-dark); padding-left: 4px; }
.cm-list li:last-child { border-bottom: none; }
.cm-list-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 1.5rem;
}
.cm-list-row li { border-bottom: 1px solid #f5efe6; }
/* cm-note, cm-single-card, cm-col-list: defined in catering.html inline styles */
@media (max-width: 768px) {
    .cm-tabs { padding: 0.75rem; gap: 0.5rem; }
    .cm-categories { grid-template-columns: 1fr; }
    .cm-categories-3 { grid-template-columns: 1fr 1fr; }
    .cm-list-row { grid-template-columns: 1fr 1fr; }
    .cm-tab { font-size: 0.78rem; padding: 0.5rem 1rem; }
}
@media (max-width: 480px) {
    .cm-categories-3 { grid-template-columns: 1fr; }
    .cm-list-row { grid-template-columns: 1fr; }
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--cream); padding: 6rem 2rem; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-grid { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.faq-item {
    border-bottom: 1px solid #e8e0d6;
}
.faq-item:first-child { border-top: 1px solid #e8e0d6; }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--saffron); }
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--saffron);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }
.faq-a p { color: #555; font-size: 0.95rem; line-height: 1.8; }

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--warm-gray);
    padding: 6rem 2rem;
    overflow-x: hidden;
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.contact-left, .contact-right {
    min-width: 0;
    overflow: hidden;
}
.contact-form, .menu-picker, .mp-panel, .mp-grid {
    min-width: 0;
    max-width: 100%;
}
.contact-desc {
    color: #666;
    margin: 1.25rem 0 2rem;
    line-height: 1.7;
}
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-direct-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.contact-direct-item span { font-size: 1.5rem; }
.contact-direct-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-direct-item strong { font-size: 0.9rem; color: #333; }
.contact-direct-item span:last-child { font-size: 0.82rem; color: #777; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e0d8d0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    background: white;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
}
.form-note {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin-top: -0.5rem;
}
.menu-picker {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #fdf8f2;
    border: 1.5px solid #e8d8c4;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.menu-picker.visible { display: flex; }
.menu-picker > label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.mp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.mp-tab {
    background: white;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    text-transform: none;
}
.mp-tab:hover { border-color: var(--saffron); color: var(--saffron); }
.mp-tab.active { background: var(--saffron); border-color: var(--saffron); color: white; }
.mp-panel { display: none; }
.mp-panel.active { display: block; }
.mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.15rem 0.75rem;
    padding: 0.25rem 0;
}
.mp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #444;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}
.mp-item:hover { background: rgba(232,134,12,0.07); color: var(--saffron-dark); }
.mp-item input[type="checkbox"] {
    accent-color: var(--saffron);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: 0;
}
.mp-selected-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--saffron-dark);
    font-weight: 600;
    letter-spacing: 0;
    min-height: 1.1rem;
}
@media (max-width: 600px) {
    .mp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ORDER LOCATION MODAL ===== */
.order-modal-backdrop {
    display: none;
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(4,2,0,0.7);
    backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
    padding: 1.5rem;
}
.order-modal-backdrop.open { display: flex; animation: omFadeIn 0.2s ease; }
@keyframes omFadeIn { from { opacity: 0; } to { opacity: 1; } }

.order-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%; max-width: 460px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: omSlideUp 0.25s cubic-bezier(0.22,1,0.36,1);
}
@keyframes omSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.order-modal-header {
    background: #1a0e04;
    padding: 1.5rem 1.75rem;
    display: flex; align-items: center; justify-content: space-between;
}
.order-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: white;
}
.order-modal-title em { color: #E8860C; font-style: italic; }
.order-modal-close {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none;
    color: rgba(255,255,255,0.7); font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.order-modal-close:hover { background: rgba(255,255,255,0.2); }

.order-modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.order-modal-sub {
    font-size: 0.8rem; color: #9a7a5a; margin-bottom: 0.25rem;
}

.order-loc-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #FDF7EE;
    border: 1.5px solid rgba(232,134,12,0.2);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.22s;
}
.order-loc-card:hover {
    background: #fff;
    border-color: #E8860C;
    box-shadow: 0 6px 24px rgba(232,134,12,0.15);
    transform: translateY(-2px);
}
.order-loc-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #E8860C;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.order-loc-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.order-loc-info { flex: 1; }
.order-loc-name { font-weight: 700; font-size: 0.92rem; color: #1a0e04; }
.order-loc-addr { font-size: 0.75rem; color: #9a7a5a; margin-top: 0.2rem; }
.order-loc-arrow { font-size: 1rem; color: #E8860C; font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
    background: #070502;
    color: rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}
.footer-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232,134,12,0.5) 30%, rgba(212,168,67,0.6) 50%, rgba(232,134,12,0.5) 70%, transparent 100%);
    z-index: 1;
}
.footer-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%; height: 100px;
    background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(232,134,12,0.07) 0%, transparent 70%);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 5rem 2rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1.4fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand column */
.footer-logo-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: block;
}
.footer-logo-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.footer-brand-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

/* Social cards 2×2 grid */
.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.fs-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.fs-card:hover {
    border-color: rgba(232,134,12,0.3);
    background: rgba(232,134,12,0.07);
    transform: translateY(-2px);
}
.fs-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fs-icon svg { width: 14px; height: 14px; }
.fs-icon-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcb045); }
.fs-icon-fb { background: #1877f2; }
.fs-icon-wa { background: #25d366; }
.fs-info { min-width: 0; }
.fs-label {
    display: block;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}
.fs-handle {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation columns */
.footer-col { }
.footer-col-title {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.2s, gap 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); gap: 0.25rem; }

/* Reach Us column */
.footer-reach-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.footer-reach-icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: rgba(232,134,12,0.1);
    border: 1px solid rgba(232,134,12,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.footer-reach-icon svg {
    width: 12px; height: 12px;
    stroke: var(--saffron);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-reach-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.65;
}
.footer-reach-text a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-reach-text a:hover { color: var(--saffron); }

/* Hours strip */
.footer-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.1rem 1.35rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.footer-hours-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
    margin-top: 0.35rem;
    box-shadow: 0 0 6px rgba(232,134,12,0.5);
}
.footer-hours-loc {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.footer-hours-times {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* Bottom bar */
.footer-bottom {
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.22);
}
.footer-bottom-delivery {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.18);
}
.footer-delivery-badge {
    padding: 0.22rem 0.65rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
    font-size: 0.68rem;
    letter-spacing: 0.3px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
}
.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--saffron), var(--turmeric));
    border-radius: 3px;
    animation: loading 1.2s ease-in-out infinite;
}
@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ===== STATS COUNTER ===== */
.stats {
    background: linear-gradient(135deg, var(--saffron), var(--chili));
    padding: 3.5rem 2rem;
}
.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { color: white; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.stat-divider {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin: 0.5rem auto 0;
}

/* ===== DELIVERY PLATFORMS ===== */
.delivery-section {
    padding: 3rem 2rem;
    background: var(--warm-gray);
    text-align: center;
}
.delivery-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.delivery-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.delivery-logo {
    padding: 1rem 2rem;
    background: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #444;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.delivery-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--saffron);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(232,134,12,0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--saffron-dark);
    transform: translateY(-3px);
}

/* ===== ENHANCED TEXT GRADIENT ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--saffron), var(--chili));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ACHIEVEMENTS SECTION ===== */
/* ===== ACHIEVEMENTS ===== */
.achievements-section {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(212,168,67,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0%  100%,  rgba(232,134,12,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(232,134,12,0.06) 0%, transparent 55%),
        linear-gradient(160deg, #110d06 0%, #0e0a04 50%, #0c0804 100%);
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
/* Subtle diagonal-stripe texture */
.achievements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        60deg, transparent, transparent 60px,
        rgba(212,168,67,0.025) 60px, rgba(212,168,67,0.025) 61px
    );
    pointer-events: none;
}

/* Header */
.ach-header { margin-bottom: 3.5rem; position: relative; z-index: 1; }
.ach-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.85rem;
}
.ach-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
}

/* Floating stats — numbers directly on the dark background */
.ach-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 860px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}
.ach-stat { flex: 1; padding: 1rem 1.5rem; }
.ach-vdivider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(212,168,67,0.3), transparent);
    flex-shrink: 0;
}
.ach-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 60px rgba(212,168,67,0.25);
}
.ach-stat-num em {
    font-style: normal;
    color: var(--gold);
    font-size: 55%;
    vertical-align: super;
}
.ach-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}
.ach-stat-sub {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* Award ribbon strip */
.ach-ribbon {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}
.ach-ribbon-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,168,67,0.45));
}
.ach-ribbon:last-child .ach-ribbon-line,
.ach-ribbon .ach-ribbon-line:last-child {
    background: linear-gradient(to left, transparent, rgba(212,168,67,0.45));
}
.ach-ribbon-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.ach-ribbon-star {
    font-size: 0.5rem;
    color: var(--saffron);
    opacity: 0.8;
}

/* Live badges */
.ach-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cert-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, background 0.3s;
}
.cert-badge-wrap:hover {
    border-color: rgba(212,168,67,0.45);
    background: rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
    .ach-stats { flex-direction: column; gap: 1.5rem; }
    .ach-vdivider { width: 60px; height: 1px; }
    .ach-ribbon { flex-direction: column; gap: 0.5rem; }
    .ach-ribbon-line { display: none; }
    .ach-ribbon-text { white-space: normal; text-align: center; }
}

/* ===== JOURNEY TIMELINE ===== */
.journey-section { padding: 6rem 2rem; background: var(--warm-gray); overflow: hidden; }
.journey-intro { max-width: 700px; margin: 0 auto 4rem; text-align: center; font-size: 1.05rem; color: #555; line-height: 1.8; }
.timeline-container { position: relative; max-width: 900px; margin: 0 auto; padding: 2rem 0; }
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--saffron), var(--turmeric));
    border-radius: 3px;
}
.timeline-block { width: 50%; padding: 1.5rem 3rem 1.5rem 0; position: relative; }
.timeline-block.right { margin-left: 50%; padding: 1.5rem 0 1.5rem 3rem; }
.timeline-dot {
    position: absolute;
    width: 18px; height: 18px;
    background: var(--saffron);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--saffron);
    top: 2.5rem;
    right: -9px;
    z-index: 2;
}
.timeline-block.right .timeline-dot { right: auto; left: -9px; }
.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--saffron);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.timeline-block.right .timeline-card { border-left: none; border-right: 4px solid var(--saffron); }
.timeline-card:hover { transform: translateY(-4px); box-shadow: 0 8px 35px rgba(0,0,0,0.13); }
.timeline-card-award { border-left-color: #FFD700 !important; background: linear-gradient(135deg, #fffdf0, #fff9e6); }
.timeline-year-badge {
    display: inline-block;
    background: var(--saffron);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}
.award-badge { background: #FFD700 !important; color: #333 !important; }
.timeline-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.timeline-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.timeline-card p { font-size: 0.9rem; color: #666; line-height: 1.7; }
@media (max-width: 768px) {
    .timeline-line { left: 20px; }
    .timeline-block, .timeline-block.right {
        width: 100%;
        margin-left: 0;
        padding: 1rem 1rem 1rem 3.5rem;
    }
    .timeline-dot, .timeline-block.right .timeline-dot {
        left: 11px; right: auto; top: 2rem;
    }
    .timeline-block.right .timeline-card { border-right: none; border-left: 4px solid var(--saffron); }
    .timeline-card-award { border-left-color: #FFD700 !important; }
}

/* ===== MENU PAGE STYLES ===== */
.menu-page-hero {
    background: linear-gradient(135deg, #1a1a1a, #2d1f0e);
    padding: 6rem 2rem 3rem;
    text-align: center;
    color: white;
}
.menu-page-hero h1 { font-size: 3rem; font-family: 'Dancing Script', cursive; color: var(--turmeric); }
.menu-page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 0.5rem; }
.menu-filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem 1rem;
    background: var(--warm-gray);
    position: sticky;
    top: 60px;
    z-index: 100;
}
.menu-filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--saffron);
    background: transparent;
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.menu-filter-btn.active, .menu-filter-btn:hover {
    background: var(--saffron);
    color: white;
}
.menu-categories-wrap {
    padding: 3rem 2rem;
    background: var(--warm-gray);
    max-width: 1200px;
    margin: 0 auto;
}
.menu-category-section { margin-bottom: 4rem; }
.menu-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--saffron);
    display: inline-block;
}
.food-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.food-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.food-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}
.food-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    mix-blend-mode: multiply;
}
.food-card:hover .food-card-img img { transform: scale(1.08); }
.food-card-name {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
}
@media (max-width: 768px) {
    .food-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .menu-page-hero h1 { font-size: 2rem; }
}

/* ===== PAGE HERO (non-home pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #2d1f0e);
    padding: 7rem 2rem 3.5rem;
    text-align: center;
    color: white;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 0.5rem;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.page-hero .section-label { color: var(--turmeric); margin-bottom: 0.5rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.promo-bar {
    background: linear-gradient(90deg, var(--saffron-dark), var(--saffron), #f0a033);
    background-size: 200% 100%;
    animation: promoShift 6s ease infinite;
    color: white;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}
@keyframes promoShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.promo-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-pulse {
    width: 8px; height: 8px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}
.promo-bar-text { font-size: 0.85rem; }
.promo-bar-cta {
    background: white;
    color: var(--saffron-dark);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s;
}
.promo-bar-cta:hover { background: var(--charcoal); color: white; }
.promo-bar-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
}
.promo-bar-close:hover { color: white; }

/* ===== ORDER DIRECT SECTION ===== */
/* ===== ORDER DIRECT ===== */
.order-direct {
    background: #0c0905;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Angled warm glow sweeping from bottom-right */
.od-glow {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 65%;
    height: 130%;
    background: linear-gradient(135deg, transparent 30%, rgba(232,134,12,0.07) 70%, rgba(212,168,67,0.04) 100%);
    transform: skewX(-12deg);
    pointer-events: none;
    z-index: 0;
}
.order-direct::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 47px,
        rgba(255,255,255,0.018) 47px,
        rgba(255,255,255,0.018) 48px
    );
    pointer-events: none;
    z-index: 0;
}

/* Two-column split */
.od-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── LEFT column ── */
.od-left { display: flex; flex-direction: column; gap: 0; }

.od-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 1.25rem;
}

.od-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.od-title span { color: var(--saffron); font-style: italic; }

.od-subtitle {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

/* Benefits list */
.od-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.od-benefit {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.od-benefit-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(232,134,12,0.1);
    border: 1px solid rgba(232,134,12,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
}
.od-benefit-icon svg { width: 18px; height: 18px; }
.od-benefit-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}
.od-benefit-text p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}

/* CTA buttons */
.od-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.od-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    text-decoration: none;
    background: linear-gradient(135deg, var(--saffron), #c0660a);
    color: white;
    box-shadow: 0 8px 28px rgba(232,134,12,0.35);
}
.od-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(232,134,12,0.5);
    color: var(--saffron);
    box-shadow: none;
}
.od-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,134,12,0.45); }
.od-btn--outline:hover { background: rgba(232,134,12,0.08); box-shadow: 0 8px 28px rgba(232,134,12,0.15); }
.od-btn-loc {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}
.od-disclaimer {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.22);
}

/* ── RIGHT column: price card ── */
.od-right { display: flex; justify-content: center; }

.od-price-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.od-price-row {
    padding: 2rem 2.25rem;
    text-align: center;
}
.od-price-app {
    background: rgba(255,255,255,0.02);
}
.od-price-direct {
    background: linear-gradient(135deg, rgba(232,134,12,0.1), rgba(192,57,43,0.06));
}

.od-price-source {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.6rem;
}
.od-price-direct .od-price-source { color: var(--turmeric); }

.od-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    display: inline-block;
}
/* Strikethrough on app price */
.od-price-app .od-price-amount::after {
    content: '';
    position: absolute;
    left: -4%;
    top: 50%;
    width: 108%;
    height: 3px;
    background: rgba(220,50,50,0.6);
    border-radius: 2px;
}
.od-price-direct .od-price-amount { color: var(--saffron); }

.od-price-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.od-price-direct .od-price-note { color: rgba(255,255,255,0.55); }

.od-vs-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.25rem;
    background: rgba(255,255,255,0.02);
}
.od-vs-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.od-vs-bar span {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
}

/* Savings callout */
.od-savings-bar {
    background: linear-gradient(135deg, var(--saffron), #c4700a);
    padding: 1.5rem 2.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}
.od-savings-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.od-savings-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.od-savings-sub {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 900px) {
    .od-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .od-right { justify-content: stretch; }
    .od-price-card { max-width: 100%; }
}

/* ===== DELIVERY DROPDOWNS ===== */
.delivery-dropdown-wrap {
    position: relative;
}
.delivery-drop-btn {
    background: white;
    border: 1.5px solid #e8e0d8;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.4rem;
    width: 220px;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.delivery-drop-btn img {
    flex: 1;
    height: 26px !important;
    object-fit: contain;
    object-position: left center;
}
.delivery-drop-btn:hover {
    border-color: var(--saffron);
    box-shadow: 0 4px 18px rgba(232,134,12,0.15);
    transform: translateY(-2px);
}
.delivery-drop-arrow {
    color: #999;
    font-size: 0.8rem;
    transition: transform 0.2s;
}
.delivery-drop-btn.open .delivery-drop-arrow { transform: rotate(180deg); }
.delivery-drop-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid #ece6de;
    border-radius: 14px;
    overflow: hidden;
    width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.14);
    z-index: 100;
}
.delivery-drop-menu.open { display: block; animation: ddFadeIn 0.18s ease; }
@keyframes ddFadeIn { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform: translateY(0); } }
.delivery-drop-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 0;
    padding: 0.85rem 1rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f0ea;
}
.delivery-drop-item:last-child { border-bottom: none; }
.delivery-drop-item:hover { background: #fdf6ee; }
.delivery-drop-item > span { font-size: 1rem; line-height: 1; }
.ddrop-name { font-weight: 600; font-size: 0.88rem; color: #1a0e04; line-height: 1.25; }
.ddrop-loc { font-size: 0.73rem; color: #aaa; margin-top: 0.18rem; }

/* ===== ORDER DROPDOWN ===== */
.nav-order-dropdown {
    position: relative;
}
.nav-order-btn {
    background: var(--saffron);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.order-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    z-index: 2000;
}
.order-dropdown-menu.open { display: block; }
.order-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.order-dropdown-item:last-child { border-bottom: none; }
.order-dropdown-item:hover { background: rgba(232,134,12,0.15); }
.order-dropdown-icon { font-size: 1.1rem; flex-shrink: 0; }
.order-dropdown-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}
.order-dropdown-loc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
}

/* WhatsApp floating button */
.wa-float {
    position: fixed;
    bottom: 5.5rem;
    right: 1.2rem;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 998;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    touch-action: manipulation;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .spec-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 220px 220px; gap: 0.75rem; }
    .spec-bento-hero { grid-column: 1 / 3; grid-row: 1; }
    .spec-bento-tall { grid-column: 1; grid-row: 2 / 4; }
    /* channa: col 2 row 2, samosa: col 2 row 3 — auto-placed */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-inner { padding: 4rem 2rem 0; }
    .story-grid { gap: 2.5rem; }
    .story-image img { height: 400px; }
    .events-content { gap: 2.5rem; }
    .events-image img { height: 350px; }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
    .nav {
        padding: 0.6rem 1.2rem;
    }
    .nav-logo-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .nav-logo-text { font-size: 1.3rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(26,26,26,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.2rem;
        align-items: center;
        justify-content: center;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .nav-cta {
        margin-top: 0.5rem;
        padding: 0.8rem 2.5rem;
        font-size: 1rem !important;
    }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero { min-height: 100vh; min-height: 100dvh; }
    .hero-content { padding: 1.5rem; }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1.5px;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero h1 span { font-size: 1.6rem; }
    .hero-tagline { font-size: 1.3rem; margin-bottom: 1.5rem; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
    .hero-scroll { bottom: 1.5rem; }

    .stats { padding: 2.5rem 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.7rem; letter-spacing: 1.5px; }

    section { padding: 3.5rem 1.2rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .section-label { font-size: 0.75rem; letter-spacing: 2px; }

    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .story-image img { height: 300px; }
    .story-image { border-radius: 16px; }
    .story-text h3 { font-size: 1.5rem; }
    .story-text p { font-size: 0.95rem; }
    .story-timeline { gap: 0.75rem; }
    .timeline-item { padding: 0.75rem 0.5rem; min-width: 70px; }
    .timeline-year { font-size: 1.2rem; }
    .timeline-label { font-size: 0.65rem; }

    .spec-bento { grid-template-columns: 1fr; grid-template-rows: 320px 280px 220px 220px; }
    .spec-bento-hero { grid-column: 1; grid-row: 1; }
    .spec-bento-tall { grid-column: 1; grid-row: 2; }
    .spec-overlay { padding: 1.5rem; }
    .spec-name { font-size: 1.3rem; }
    .spec-desc { font-size: 0.85rem; }

    .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 1.2rem;
        align-items: center;
    }
    .service-icon {
        margin: 0;
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.5rem;
        border-radius: 16px;
    }
    .service-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
    .service-card p { font-size: 0.85rem; line-height: 1.5; }

    .locations-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .location-card { border-radius: 16px; }
    .location-img { height: 180px; }
    .location-info { padding: 1.5rem; }
    .location-info h3 { font-size: 1.2rem; }
    .location-detail { font-size: 0.85rem; }
    .location-cta { font-size: 0.8rem; }

    .catering-cta h2 { font-size: 1.8rem; }
    .catering-cta p { font-size: 0.95rem; }
    .catering-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .catering-feature { font-size: 0.9rem; }

    .reviews-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .review-card { padding: 1.5rem; border-radius: 16px; }
    .review-text { font-size: 0.9rem; }

    .events-content { grid-template-columns: 1fr; gap: 2rem; }
    .events-text h2 { font-size: 1.8rem; }
    .events-text p { font-size: 0.95rem; }
    .events-image { border-radius: 16px; }
    .events-image img { height: 280px; }
    .events-features li { font-size: 0.9rem; }

    .delivery-section { padding: 2.5rem 1.2rem; }
    .delivery-logos { gap: 1rem; }
    .delivery-logo {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .footer-inner { padding: 3rem 1.25rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-social { grid-template-columns: 1fr 1fr; }
    .footer-hours { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .footer-bottom-delivery { flex-wrap: wrap; justify-content: center; }
    .footer-logo-name { font-size: 1.6rem; }

    .back-to-top {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 42px;
        height: 42px;
    }

    .order-direct { padding: 4rem 1.2rem; }
    .od-cards { grid-template-columns: 1fr; gap: 1rem; }
    .od-compare { gap: 0.8rem; }
    .od-compare-item { min-width: 100%; max-width: 100%; padding: 1.5rem; }
    .od-compare-vs { transform: rotate(90deg); }
    .od-title { font-size: 2.5rem; }
    .promo-bar { font-size: 0.78rem; }

    .order-dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        margin-top: 0.5rem;
        box-shadow: none;
    }
    .nav-order-btn { width: 100%; max-width: 280px; justify-content: center; }

    .tiffin-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .catering-cards { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }

    .menu-filter-bar { padding: 1rem 0.75rem; gap: 0.5rem; top: 55px; }

    .cm-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
    }
    .cm-tabs::-webkit-scrollbar { display: none; }
    .cm-tab { white-space: nowrap; flex-shrink: 0; }

    .mp-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .mp-tabs::-webkit-scrollbar { display: none; }
    .mp-tab { white-space: nowrap; flex-shrink: 0; }

    .menu-picker { padding: 1rem 0.75rem; }
    .mp-grid { grid-template-columns: 1fr 1fr; gap: 0.1rem 0.5rem; }
    .mp-item {
        padding: 0.45rem 0.3rem;
        font-size: 0.82rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .mp-item input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; }
}

/* ===== RESPONSIVE — SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero h1 span { font-size: 1.3rem; }
    .hero-desc { font-size: 0.9rem; }
    .section-title { font-size: 1.5rem; }
    .stats-grid { gap: 1rem; }
    .stat-number { font-size: 1.7rem; }
    .stat-label { font-size: 0.6rem; }
    .story-image img { height: 240px; }
    .spec-bento { grid-template-rows: 280px 240px 200px 200px; }
    .catering-cta h2 { font-size: 1.5rem; }
    .events-text h2 { font-size: 1.5rem; }
    .events-image img { height: 220px; }
    .delivery-logos { flex-direction: column; }
    .delivery-logo { min-width: unset; width: 100%; }
    .catering-cards { grid-template-columns: 1fr; }
    .mp-grid { grid-template-columns: 1fr; }
    .menu-picker { padding: 0.85rem 0.65rem; }
}

/* ===== TOUCH DEVICE IMPROVEMENTS ===== */
@media (hover: none) {
    .spec-card .spec-overlay {
        background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
    }
    .service-card::before { transform: scaleX(1); }
    .btn:active { transform: scale(0.97); }
}

/* ===== MOBILE-SPECIFIC FIXES ===== */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }
}

a, button, .btn, label, select, input, textarea, .mp-tab, .cm-tab, .hamburger {
    touch-action: manipulation;
}

.hamburger {
    padding: 10px;
    margin: -10px;
}

/* ===== SAFE AREA (notch phones) ===== */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    .back-to-top {
        bottom: calc(1.2rem + env(safe-area-inset-bottom));
    }
    .nav {
        padding-left: calc(1.2rem + env(safe-area-inset-left));
        padding-right: calc(1.2rem + env(safe-area-inset-right));
    }
}
