/* Shared stylesheet for Desi Tadka website */

/* ===== TIFFIN: Pay in Store Section ===== */
.tf-pay-store {
  background: rgba(253, 246, 238, 0.96);
  border-left: 6px solid var(--tf-orange);
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.tf-pay-store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.tf-pay-store-locs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tf-loc {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--tf-radius);
  border: 1px solid var(--tf-border);
}

.tf-loc h3 {
  font-family: var(--tf-font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--tf-orange);
}

.tf-loc p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tf-text);
}

.tf-loc-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tf-border);
  font-weight: 500;
  color: var(--tf-orange);
}

/* ===== TIFFIN: Menu Section ===== */
.tf-menu {
  background: var(--tf-surface);
  padding: var(--space-section) 0;
}

.tf-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 2rem 0;
}

.tf-menu-col {
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: var(--tf-radius);
  border: 1px solid var(--tf-border);
}

.tf-menu-col-title {
  font-family: var(--tf-font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tf-orange);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--tf-orange);
}

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

.tf-menu-day {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--tf-border);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tf-text);
}

.tf-menu-day:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tf-menu-day strong {
  color: var(--tf-orange);
  font-weight: 600;
}

.tf-menu-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--tf-text-muted);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tf-border);
}

/* ===== TIFFIN: Quote Section ===== */
/* Authoritative rules in new tf-* namespace block below — do not add rules here */

/* ===== TIFFIN: Responsive Design ===== */
@media (max-width: 700px) {
  .tf-pay-store-locs {
    grid-template-columns: 1fr;
  }

  .tf-menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tf-menu-col {
    padding: 1.5rem;
  }

  /* tf-quote responsive: authoritative rules in new tf-* namespace block */
}

/* ========================================
   TIFFIN PLANS SECTION — Task D2
   ======================================== */

/* ===== TIFFIN PLANS — 21st-magic pricing card pattern ===== */
.tf-plans-section {
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: transparent;
}

/* Subscription plan grid. There are 4 cards (Weekly Veg / Weekly Non-Veg /
   Monthly Veg / Monthly Non-Veg) — auto-fit was wrapping the 4th card to
   row 2 around 1000-1200px wide, leaving an awkward empty gap. Locked to
   a 4-column row on desktop and a 2×2 grid on tablet so the layout never
   has a lonely card. */
.tf-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1240px;
  margin: 2rem auto 0;
}

@media (max-width: 1100px) {
  .tf-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .tf-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Base card — pure white, outline border */
.tf-plan-card {
  background: #fff;
  color: var(--tf-ink);
  border: 1px solid var(--tf-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.tf-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(40, 20, 5, 0.12);
}

/* Popular card — solid terracotta fill (21st.dev pattern) */
.tf-plan-card--popular {
  background: var(--tf-orange);
  color: #fff;
  border: 2px solid var(--tf-orange);
  box-shadow: 0 8px 24px rgba(212, 98, 30, 0.30);
}

.tf-plan-card--popular:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212, 98, 30, 0.38);
}

.tf-plan-card--popular .tf-plan-name,
.tf-plan-card--popular .tf-plan-price,
.tf-plan-card--popular .tf-plan-features { color: #fff; }

.tf-plan-card--popular .tf-plan-anchor {
  background: rgba(26, 10, 0, 0.08);
  color: var(--tf-ink);
  border: none;
}

.tf-plan-card--popular .tf-plan-features li { color: var(--tf-ink); font-weight: 500; }

.tf-plan-card--popular .tf-check-icon { color: var(--tf-ink); }

/* Ribbon pill — absolute top-left */
.tf-plan-ribbon {
  position: absolute;
  top: -12px;
  left: 1.25rem;
  background: #fff;
  color: var(--tf-orange-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Plan name — small label above price */
.tf-plan-name {
  font-family: var(--tf-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tf-ink-soft);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

/* Big price — Fraunces headline */
.tf-plan-price {
  font-family: var(--tf-font-headline);
  font-weight: 600;
  font-size: clamp(2.25rem, 3vw + 1rem, 3rem);
  margin: 0;
  line-height: 1;
  color: var(--tf-ink);
}

.tf-plan-price-unit {
  font-family: var(--tf-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tf-ink-faint);
  margin-left: 4px;
}

/* Anchor/savings pill */
.tf-plan-anchor {
  background: var(--tf-orange-bg);
  color: var(--tf-orange-deep);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0.5rem 0;
  border: none;
}

.tf-plan-anchor strong { font-weight: 700; }

/* Checkmark feature list — 1rem/500 minimum for WCAG AA Large on highlighted card */
.tf-plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--tf-ink-soft);
  flex-grow: 1;
}

.tf-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.tf-check-icon {
  color: var(--tf-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA button — full-width pill
   Background uses --tf-orange-deep (#b5451b) not --tf-orange (#d4621e):
   white on #b5451b = 5.48:1 (PASS AA) vs 3.77:1 on #d4621e (FAIL AA at 0.95rem) */
.tf-plan-cta {
  width: 100%;
  margin-top: auto;
  padding: 13px 16px;
  border: none;
  border-radius: 10px;
  background: var(--tf-orange-deep);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--tf-font-body);
  transition: background 150ms ease-out, transform 150ms ease-out;
  text-align: center;
}

.tf-plan-cta:hover {
  background: #8f3312;
  transform: translateY(-2px);
}

.tf-plan-cta:active { transform: translateY(0); }

.tf-plan-cta:focus-visible {
  outline: 3px solid var(--tf-orange-deep);
  outline-offset: 2px;
}

/* Popular card CTA — inverted (white button on terracotta card) */
.tf-plan-cta--popular {
  background: #fff;
  color: var(--tf-orange-deep);
}

.tf-plan-cta--popular:hover {
  background: var(--tf-cream);
  color: var(--tf-orange-deep);
  transform: translateY(-2px);
}

.tf-plans-customize {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--tf-ink-soft);
}


/* ===== 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;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}
/* Re-enable pointer events on images that are inside links */
a img, button img, .nav-logo img { pointer-events: auto; }
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;
    text-decoration: none;
    cursor: pointer;
}
.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.85);
}
.btn-outline:hover {
    border-color: var(--turmeric);
    color: var(--turmeric);
    background: rgba(232,134,12,0.08);
    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: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
/* ── Base service card ── */
.service-card {
    border-radius: 24px;
    padding: 2.2rem 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
}

/* ── Dark variant (Dine-In, Takeout, Catering) ── */
.service-card--dark {
    background: linear-gradient(160deg, #1a0a00 0%, #2d1200 60%, #1a0a00 100%);
    border: 1px solid rgba(232,134,12,0.18);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-card--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E8860C, #f5a623);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.service-card--dark:hover::before { transform: scaleX(1); }
.service-card--dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(232,134,12,0.18);
    border-color: rgba(232,134,12,0.35);
}
.service-card--dark h3 { color: #ffffff; }
.service-card--dark p  { color: rgba(255,255,255,0.5); }

/* Badge */
.sc-badge {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(232,134,12,0.12);
    border: 1px solid rgba(232,134,12,0.3);
    border-radius: 50px;
    padding: 0.22rem 0.75rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E8860C;
    margin-bottom: 1.1rem;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,134,12,0); }
    50%       { box-shadow: 0 0 0 4px rgba(232,134,12,0.1); }
}

/* Icon */
.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.service-icon--dark {
    background: rgba(232,134,12,0.12);
    border: 1px solid rgba(232,134,12,0.2);
}
.service-card--dark:hover .service-icon--dark {
    transform: scale(1.12) rotate(-4deg);
    background: rgba(232,134,12,0.2);
}

/* Title & body */
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

/* Perks list */
.sc-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.sc-perks li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(232,134,12,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sc-perks li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(232,134,12,0.5);
    flex-shrink: 0;
}
.sc-perks li:last-child { border-bottom: none; }

/* CTA link */
.sc-cta {
    display: inline-block;
    color: #E8860C;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    opacity: 0.8;
    transition: opacity 0.2s, letter-spacing 0.25s;
}
.sc-cta:hover {
    opacity: 1;
    letter-spacing: 0.6px;
}

/* ── Tiffin card — premium featured state ── */
.service-card--tiffin {
    background: linear-gradient(160deg, #1a0a00 0%, #2d1200 60%, #1a0a00 100%);
    border: 1px solid rgba(232,134,12,0.25);
    box-shadow: 0 20px 60px rgba(232,134,12,0.12), inset 0 1px 0 rgba(232,134,12,0.15);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.service-card--tiffin::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(232,134,12,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.service-card--tiffin::before {
    background: linear-gradient(90deg, #E8860C, #f5a623);
    transform: scaleX(1);
}
.service-card--tiffin:hover {
    box-shadow: 0 28px 80px rgba(232,134,12,0.22), inset 0 1px 0 rgba(232,134,12,0.2);
    border-color: rgba(232,134,12,0.45);
}
.service-card--tiffin h3 {
    color: #ffffff;
}
.service-card--tiffin p {
    color: rgba(255,255,255,0.55);
}
.tiffin-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,134,12,0.15);
    border: 1px solid rgba(232,134,12,0.4);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E8860C;
    margin-bottom: 1.2rem;
}
.service-icon--tiffin {
    background: linear-gradient(135deg, rgba(232,134,12,0.25), rgba(201,106,0,0.2));
    border: 1px solid rgba(232,134,12,0.3);
}
.tiffin-card-pricing {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,134,12,0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin: 1.2rem 0 1rem;
}
.tiffin-card-price {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.tiffin-card-divider {
    width: 1px;
    height: 36px;
    background: rgba(232,134,12,0.25);
    margin: 0 1rem;
}
.tcp-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.tcp-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}
.tiffin-card-price--popular .tcp-amount {
    color: #E8860C;
}
.tcp-hst {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
}
.tiffin-card-cta {
    display: inline-block;
    color: #E8860C;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s, opacity 0.2s;
    opacity: 0.85;
}
.tiffin-card-cta:hover {
    opacity: 1;
}

/* ===== TIFFIN QUICK SUBSCRIBE FORM ===== */
.tiffin-quick-form {
    margin-top: 1.1rem;
    border-top: 1px solid rgba(232,134,12,0.18);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.tiffin-quick-form--section {
    max-width: 540px;
    margin: 1.8rem auto 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.tqf-headline {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin: 0 0 0.3rem;
    letter-spacing: 0.02em;
}
.tqf-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tqf-input {
    flex: 1 1 120px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(232,134,12,0.3);
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    color: #fff;
    font-size: 0.82rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
    transition: border-color 0.2s;
}
.tqf-input::placeholder { color: rgba(255,255,255,0.35); }
.tqf-input:focus { border-color: #E8860C; }
.tqf-select { cursor: pointer; }
.tqf-select option { background: #1a0f05; color: #fff; }
.tqf-btn {
    width: 100%;
    background: linear-gradient(135deg, #E8860C, #c96f00);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.15s;
    font-family: inherit;
}
.tqf-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.tqf-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.tqf-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin: 0;
}

/* ===== TIFFIN SUBSCRIBE BUTTONS (service card) ===== */
.tiffin-subscribe-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 4px;
}
.tsb-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(232,134,12,0.12);
    border: 1px solid rgba(232,134,12,0.35);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-align: left;
}
.tsb-btn span { color: #E8860C; font-size: 0.8rem; font-weight: 700; }
.tsb-btn:hover { background: rgba(232,134,12,0.22); border-color: #E8860C; transform: translateY(-1px); }
.tsb-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ===== TIFFIN PLAN GRID (homepage section) ===== */
.tf-plans-grid {
    margin-bottom: 24px;
}
.tf-plans-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-align: center;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}
.tf-plans-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 500px) { .tf-plans-row { grid-template-columns: 1fr; } }
.tf-plan-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    backdrop-filter: blur(6px);
}
.tf-plan-btn:hover { background: rgba(232,134,12,0.18); border-color: rgba(232,134,12,0.6); transform: translateY(-2px); }
.tf-plan-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.tf-plan-btn--popular { border-color: rgba(232,134,12,0.5); background: rgba(232,134,12,0.1); }
.tf-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #E8860C;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
/* ZOMBIE REMOVED: old dark-bg tf-plan-name/price/sub/pay-in-store/checkout-msg — see new tf-* namespace block */

/* ===== CONTACT PAGE — TIFFIN SECTION ===== */
.ct-tiffin {
    position: relative;
    background: linear-gradient(160deg, #110500 0%, #261000 50%, #110500 100%);
    border-top: 1px solid rgba(232,134,12,0.18);
    border-bottom: 1px solid rgba(232,134,12,0.18);
    padding: 5rem 2rem;
    overflow: hidden;
}
.ct-tiffin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232,134,12,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.ct-tiffin-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ct-tiffin-header {
    text-align: center;
    margin-bottom: 3rem;
}
.ct-tiffin-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,134,12,0.1);
    border: 1px solid rgba(232,134,12,0.3);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #E8860C;
    margin-bottom: 1.25rem;
}
.ct-tiffin-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1rem;
}
.ct-tiffin-title em {
    color: #E8860C;
    font-style: italic;
}
.ct-tiffin-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Plans grid */
.ct-tiffin-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}
.ct-plan {
    border-radius: 20px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ct-plan--veg {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.ct-plan--nonveg {
    background: linear-gradient(160deg, rgba(232,134,12,0.1) 0%, rgba(201,106,0,0.06) 100%);
    border: 1px solid rgba(232,134,12,0.35);
    box-shadow: 0 0 40px rgba(232,134,12,0.08);
}
.ct-plan-popular {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #E8860C, #C96A00);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}
.ct-plan-type {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
}
.ct-plan--nonveg .ct-plan-type { color: rgba(232,134,12,0.7); }
.ct-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
}
.ct-plan--nonveg .ct-plan-price { color: #E8860C; }
.ct-plan-cents {
    font-size: 1.5rem;
    margin-top: 0.4rem;
}
.ct-plan-tax {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    align-self: flex-end;
    margin-bottom: 0.4rem;
    margin-left: 0.3rem;
}
.ct-plan-per {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.2rem;
    margin-bottom: 1.25rem;
}
.ct-plan-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.ct-plan-items li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.ct-plan--nonveg .ct-plan-items li { border-bottom-color: rgba(232,134,12,0.1); }
.ct-plan-items li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.ct-plan--nonveg .ct-plan-items li::before { background: rgba(232,134,12,0.5); }
.ct-plan-items li:last-child { border-bottom: none; }
.ct-plan-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.2px;
}
.ct-plan-btn--veg {
    background: linear-gradient(135deg, #E8860C, #C96A00);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 28px rgba(232,134,12,0.35);
}
.ct-plan-btn--veg:hover {
    box-shadow: 0 12px 40px rgba(232,134,12,0.5);
    transform: translateY(-1px);
}
.ct-plan-btn--nonveg {
    background: linear-gradient(135deg, #E8860C, #C96A00);
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(232,134,12,0.35);
}
.ct-plan-btn--nonveg:hover {
    box-shadow: 0 12px 40px rgba(232,134,12,0.5);
    transform: translateY(-1px);
}

/* Discount strip */
.ct-tiffin-discount {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(232,134,12,0.08);
    border: 1px solid rgba(232,134,12,0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.5;
}
.ct-tiffin-discount svg { flex-shrink: 0; }
.ct-tiffin-discount strong { color: rgba(255,255,255,0.85); }

@media (max-width: 600px) {
    .ct-tiffin-plans { grid-template-columns: 1fr; }
    .ct-tiffin-title { font-size: 1.75rem; }
}

/* ===== 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;
    display: flex;
    flex-direction: column;
}
.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;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.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; }

/* ZOMBIE REMOVED: old dark-bg tf-plan-price (Playfair Display white) — see new tf-* namespace block */

.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: 2px solid rgba(255,255,255,0.85);
    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: var(--turmeric); color: var(--turmeric); background: rgba(232,134,12,0.08); }

@media (max-width: 600px) {
    .tf-plans { grid-template-columns: 1fr; max-width: 100%; }
    .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 ===== */
/* ===== PRIVATE EVENTS (redesigned) ===== */
.ev-section {
    position: relative;
    background: linear-gradient(135deg, #070402 0%, #0e0804 50%, #160c04 100%);
    padding: 7rem 2rem;
    overflow: hidden;
    color: white;
}
.ev-glow {
    position: absolute; border-radius: 50%;
    pointer-events: none;
}
.ev-glow-left {
    width: 560px; height: 560px;
    top: 50%; left: -160px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(232,134,12,0.13) 0%, transparent 70%);
}
.ev-glow-right {
    width: 480px; height: 480px;
    top: 20%; right: -120px;
    background: radial-gradient(circle, rgba(180,80,0,0.1) 0%, transparent 70%);
}
.ev-inner {
    max-width: 1160px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    position: relative; z-index: 1;
}
.ev-eyebrow {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--turmeric);
    margin-bottom: 1.5rem;
}
.ev-eyebrow::before {
    content: ''; width: 28px; height: 1px;
    background: var(--turmeric); opacity: 0.6; flex-shrink: 0;
}
.ev-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 900; color: white; line-height: 1.1;
    margin-bottom: 1.5rem;
}
.ev-heading em { color: var(--saffron); font-style: italic; }
.ev-sub {
    color: rgba(255,255,255,0.52); font-size: 0.96rem;
    line-height: 1.85; margin-bottom: 2.5rem; max-width: 460px;
}
.ev-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.75rem; margin-bottom: 2.75rem;
}
.ev-feat {
    display: flex; align-items: center; gap: 0.7rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 0.85rem 1rem;
    transition: border-color 0.25s, background 0.25s;
}
.ev-feat:hover {
    background: rgba(232,134,12,0.08);
    border-color: rgba(232,134,12,0.3);
}
.ev-feat-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(232,134,12,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ev-feat-icon svg { width: 13px; height: 13px; stroke: var(--saffron); }
.ev-feat span {
    font-size: 0.8rem; color: rgba(255,255,255,0.72);
    line-height: 1.35; font-weight: 500;
}
.ev-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: linear-gradient(135deg, var(--saffron), #c46f08);
    color: white !important; font-size: 0.88rem; font-weight: 700;
    padding: 0.95rem 2.2rem; border-radius: 50px;
    letter-spacing: 0.5px; text-decoration: none;
    box-shadow: 0 8px 30px rgba(232,134,12,0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ev-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(232,134,12,0.5);
}

/* Right visual */
.ev-visual { position: relative; }
.ev-card {
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 40px 80px rgba(0,0,0,0.55);
    transition: transform 0.4s;
}
.ev-card:hover { transform: translateY(-4px); }
.ev-img-wrap {
    position: relative; overflow: hidden;
}
.ev-img-wrap img {
    width: 100%; height: 400px;
    object-fit: cover; display: block;
    transition: transform 0.7s ease;
}
.ev-card:hover .ev-img-wrap img { transform: scale(1.04); }
.ev-img-badge {
    position: absolute; top: 1.25rem; left: 1.25rem;
    background: rgba(232,134,12,0.92); backdrop-filter: blur(8px);
    color: white; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.45rem 1.1rem; border-radius: 50px;
}
.ev-img-corner {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(7,4,2,0.65) 0%, transparent 100%);
}
.ev-stats {
    display: flex; align-items: center; justify-content: space-around;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.09);
    padding: 1.4rem 1.5rem;
}
.ev-stat { text-align: center; }
.ev-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--saffron);
    line-height: 1;
}
.ev-stat-num em { font-size: 1rem; font-style: normal; }
.ev-stat-lbl {
    font-size: 0.62rem; color: rgba(255,255,255,0.32);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem;
}
.ev-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Legacy classes still used by other pages */
.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: 4rem 2rem;
    overflow-x: hidden;
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.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;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, #0f0500 0%, #2a0f00 50%, #1a0800 100%);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(232,134,12,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.newsletter-tag {
    display: inline-block;
    background: rgba(232,134,12,0.15);
    color: #E8860C;
    border: 1px solid rgba(232,134,12,0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    margin-bottom: 1.25rem;
}
.newsletter-heading {
    font-family: 'Playfair Display SC', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}
.newsletter-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 1.75rem 0;
    max-width: 420px;
}
.newsletter-perks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.newsletter-perk {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}
.newsletter-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
}
.newsletter-card-tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

/* Override MailerLite embed styles inside card */
.newsletter-card .ml-embedded * {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .newsletter-section { padding: 56px 1.25rem; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
    .newsletter-sub { max-width: 100%; }
    .newsletter-card { padding: 1.75rem 1.25rem; }
    .newsletter-heading { font-size: 1.7rem; }
}

/* ===== 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);
}

/* ── Reveal variants ── */
.reveal--left {
    opacity: 0;
    transform: translateX(-32px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal--right {
    opacity: 0;
    transform: translateX(32px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal--scale {
    opacity: 0;
    transform: scale(0.88);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== 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: 0.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}
.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: rgba(232,134,12,0.08);
    border: 2px solid #E8860C;
    color: #E8860C;
    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.18); box-shadow: 0 8px 28px rgba(232,134,12,0.25); }
.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;
}

/* ===== REVIEWS CAROUSEL ===== */
.rv-carousel {
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 2rem;
}
.rv-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-slide {
    min-width: 100%;
}
.rv-location-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.rv-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.rv-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.rv-btn:hover {
    border-color: var(--saffron);
    color: var(--saffron);
    background: rgba(232,134,12,0.1);
}
.rv-dots {
    display: flex;
    gap: 0.5rem;
}
.rv-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}
.rv-dot.active {
    background: var(--saffron);
    width: 24px;
    border-radius: 4px;
}
.rv-google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.78rem;
    color: #666;
    font-weight: 500;
}
@media (max-width: 860px) {
    .rv-grid { grid-template-columns: 1fr 1fr; }
    .rv-grid .review-card:last-child { display: none; }
}
@media (max-width: 540px) {
    .rv-grid { grid-template-columns: 1fr; }
    .rv-grid .review-card:not(:first-child) { display: none; }
    .rv-carousel { padding: 0 1rem; }
}

/* WhatsApp floating button */
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes waPulse2 {
    0%   { transform: scale(1);   opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}
.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;
    z-index: 998;
    transition: transform 0.25s;
    text-decoration: none;
    touch-action: manipulation;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.wa-float::before,
.wa-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
}
.wa-float::before {
    animation: waPulse 1.8s ease-out infinite;
}
.wa-float::after {
    animation: waPulse2 1.8s ease-out 0.9s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-float:hover::before,
.wa-float:hover::after { animation-play-state: paused; }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ===== WHATSAPP PRE-CHAT WIDGET ===== */
.wa-prechat-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.45);
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 1.2rem 7.5rem;
    backdrop-filter: blur(2px);
}
.wa-prechat-overlay.open { display: flex; }

.wa-prechat-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: waChatIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
    transform-origin: bottom right;
}
@keyframes waChatIn {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.wa-prechat-header {
    background: #075E54;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}
.wa-prechat-avatar {
    width: 44px; height: 44px;
    background: #128C7E;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.wa-prechat-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.wa-prechat-status { color: rgba(255,255,255,0.7); font-size: 0.72rem; margin-top: 2px; }
.wa-prechat-close {
    position: absolute; top: 0.7rem; right: 0.9rem;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    border-radius: 50%; width: 26px; height: 26px;
    font-size: 1rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.wa-prechat-close:hover { background: rgba(255,255,255,0.3); }

.wa-prechat-body { padding: 1rem 1.1rem 1.25rem; background: #ece5dd; }

.wa-prechat-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
    color: #111;
    line-height: 1.45;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
    margin-bottom: 0.9rem;
    display: inline-block;
    max-width: 90%;
}

.wa-prechat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.wa-opt {
    background: #fff;
    border: 1.5px solid #25D366;
    color: #075E54;
    border-radius: 20px;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.wa-opt:hover, .wa-opt.selected {
    background: #25D366;
    color: #fff;
}

.wa-prechat-custom {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.wa-prechat-custom input {
    flex: 1;
    border: 1.5px solid #ccc;
    border-radius: 20px;
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
    font-family: inherit;
    outline: none;
    background: #fff;
    color: #111;
    transition: border-color 0.15s;
}
.wa-prechat-custom input:focus { border-color: #25D366; }
.wa-prechat-custom input::placeholder { color: #aaa; }
#wa-send-btn {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.15s;
}
#wa-send-btn:hover { background: #1da851; }
.wa-back-btn {
    background: none; border: none;
    color: #075E54; font-size: 0.8rem; font-weight: 700;
    cursor: pointer; padding: 0 0 0.6rem;
    font-family: inherit; display: block;
}
.wa-back-btn:hover { text-decoration: underline; }

.wa-answer-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #111;
    line-height: 1.55;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
    margin-bottom: 0.85rem;
    max-height: 280px;
    overflow-y: auto;
}
.wa-answer-bubble ul {
    padding-left: 1.1rem;
    margin: 0.3rem 0;
}
.wa-answer-bubble li { margin-bottom: 0.2rem; }
.wa-answer-bubble p { margin: 0 0 0.2rem; }
.wa-answer-bubble a { color: #075E54; }

.wa-wa-btn {
    display: flex; align-items: center; gap: 0.5rem; justify-content: center;
    width: 100%;
    background: #25D366; color: #fff;
    border: none; border-radius: 20px;
    padding: 0.65rem 1rem;
    font-size: 0.84rem; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: background 0.15s;
}
.wa-wa-btn:hover { background: #1da851; }

@media (max-width: 420px) {
    .wa-prechat-overlay { padding: 0 0.75rem 7rem; }
    .wa-prechat-modal { max-width: 100%; border-radius: 16px; }
    .wa-answer-bubble { max-height: 220px; }
}

/* ===== 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: 1.75rem 1.5rem; border-radius: 18px; }
    .service-card h3 { font-size: 1.15rem; }
    .service-card p { font-size: 0.85rem; line-height: 1.5; }
    .service-icon { width: 52px; height: 52px; border-radius: 14px; }

    .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; }

    /* ev-section mobile */
    .ev-section { padding: 5rem 1.5rem; }
    .ev-inner { grid-template-columns: 1fr; gap: 3rem; }
    .ev-features { grid-template-columns: 1fr; }
    .ev-sub { max-width: 100%; }
    .ev-img-wrap img { height: 300px; }
    .ev-glow-left { width: 300px; height: 300px; left: -100px; }
    .ev-glow-right { display: none; }

    .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: 1.5rem 1rem 0; }
    /* Brand col full width, then nav+services side by side, then reach full width */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; }
    .footer-grid > *:first-child { grid-column: 1 / -1; }
    .footer-grid > *:last-child { grid-column: 1 / -1; }
    .footer-logo-img { width: 40px; height: 40px; margin-bottom: 0.5rem; }
    .footer-logo-name { font-size: 1.2rem; margin-bottom: 0.4rem; }
    .footer-brand-tagline { font-size: 0.75rem; margin-bottom: 0.75rem; line-height: 1.5; }
    .footer-social { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
    .footer-col-title { font-size: 0.7rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
    .footer-links { margin: 0; }
    .footer-links li { margin-bottom: 0.3rem; }
    .footer-links a { font-size: 0.82rem; }
    .footer-reach-item { gap: 0.4rem; margin-bottom: 0.4rem; }
    .footer-reach-icon { width: 28px; height: 28px; }
    .footer-reach-icon svg { width: 13px; height: 13px; }
    .footer-reach-text { font-size: 0.78rem; }
    .footer-hours { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem 0; }
    .footer-hours-card { padding: 0.7rem 0.85rem; gap: 0.6rem; }
    .footer-hours-times { font-size: 0.7rem; line-height: 1.5; }
    .footer-hours-loc { font-size: 0.65rem; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1rem 0; }
    .footer-bottom-copy { font-size: 0.68rem; }
    .footer-bottom-delivery { flex-wrap: wrap; justify-content: center; gap: 0.25rem; }
    .footer-delivery-badge { font-size: 0.62rem; padding: 0.15rem 0.5rem; }

    .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; }

    /* Tiffin service card pricing — prevent squeeze on narrow phones */
    .tiffin-card-pricing { padding: 0.65rem 0.75rem; gap: 0; }
    .tcp-amount { font-size: 1.1rem; }
    .tiffin-card-divider { margin: 0 0.65rem; }

    /* Contact page tiffin section */
    .ct-tiffin { padding: 3.5rem 1.2rem; }
    .ct-tiffin-title { font-size: 1.6rem; }
    .ct-plan { padding: 1.5rem 1.25rem; }
    .ct-plan-price { font-size: 2.2rem; }
    .ct-plan-cents { font-size: 1.1rem; }
}

/* ===== 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--dark::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;
}

/* ===== FRUIT CREAM PROMO ===== */
@keyframes fcpShimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes fcpPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,134,12,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(232,134,12,0); }
}
@keyframes fcpDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes fcpRingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.fruit-cream-promo {
    background: #0a0804;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.fcp-bg-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232,134,12,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}
.fcp-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.fcp-glow-left {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,134,12,0.2) 0%, transparent 70%);
    top: -150px; left: -200px;
}
.fcp-glow-right {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
    bottom: -150px; right: -150px;
}
.fcp-glow-center {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.fcp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 auto;
}
.fcp-image-wrap {
    flex: 0 0 380px;
    position: relative;
}
.fcp-img-ring {
    position: absolute;
    inset: -5px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 40%, var(--chili) 70%, var(--saffron) 100%);
    background-size: 300% 300%;
    animation: fcpRingRotate 6s linear infinite;
    z-index: 0;
    opacity: 0.9;
}
.fcp-img-ring-2 {
    inset: -12px;
    opacity: 0.2;
    animation-duration: 10s;
    animation-direction: reverse;
}
.fcp-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 1;
}
.fcp-img-badge {
    position: absolute;
    top: -22px;
    right: -22px;
    background: linear-gradient(135deg, #f5a623, var(--saffron));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 0.65rem 1.4rem;
    border-radius: 40px;
    box-shadow: 0 8px 30px rgba(232,134,12,0.6);
    z-index: 2;
    animation: fcpPulse 2.5s ease-in-out infinite;
    letter-spacing: 0.01em;
}
.fcp-img-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}
.fcp-img-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1208, #2a1e0a);
    border: 1px solid rgba(212,168,67,0.4);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}
.fcp-content { flex: 0 0 400px; }
.fcp-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.fcp-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--saffron);
    display: inline-block;
    animation: fcpDotBlink 1.5s ease-in-out infinite;
}
.fcp-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5e6c8 40%, var(--gold) 70%, #f5a623 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fcpShimmer 4s linear infinite;
}
.fcp-star-row {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.fcp-star-row span {
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    margin-left: 0.4rem;
    font-size: 0.8rem;
}
.fcp-flavours {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}
.fcp-flavour {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.55rem 1.2rem;
    border-radius: 12px;
    letter-spacing: 0.02em;
    transition: transform 0.2s;
}
.fcp-flavour:hover { transform: translateY(-2px); }
.fcp-flavour-icon { font-size: 1.1rem; }
.fcp-mango {
    background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
    border: 1px solid rgba(245,166,35,0.4);
    color: #f5c060;
    box-shadow: 0 0 20px rgba(245,166,35,0.1) inset;
}
.fcp-plain {
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}
.fcp-desc {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.85;
    margin-bottom: 1.4rem;
}
.fcp-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), transparent);
    margin-bottom: 1.4rem;
    border-radius: 2px;
}
.fcp-bottom-row { display: flex; align-items: center; gap: 2rem; }
.fcp-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.fcp-supply {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e05a45;
    letter-spacing: 0.04em;
}
.fcp-locations, .fcp-modes {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.02em;
}
@media (max-width: 860px) {
    .fcp-inner { flex-direction: column; gap: 3rem; text-align: center; width: 100%; }
    .fcp-image-wrap { flex: none; width: 100%; max-width: 380px; margin: 0 auto; }
    .fcp-image-wrap img { height: 300px; }
    .fcp-content { flex: none; width: 100%; }
    .fcp-title { font-size: 3.5rem; }
    .fcp-eyebrow { justify-content: center; }
    .fcp-flavours { justify-content: center; }
    .fcp-divider { margin-left: auto; margin-right: auto; }
    .fcp-bottom-row { justify-content: center; }
    .fcp-meta { align-items: center; }
    .fcp-star-row { text-align: center; }
}
@media (max-width: 480px) {
    .fruit-cream-promo { padding: 4rem 1.2rem; }
    .fcp-title { font-size: 2.8rem; }
    .fcp-img-badge { font-size: 1rem; top: -14px; right: -10px; }
}

/* ===== REDUCED MOTION (accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
    /* Kill only looping decorative animations */
    .hero-bg { animation: none !important; }
    .spice-particle { display: none !important; }
    .ks-badge { animation: none !important; }
    .fcp-img-ring, .fcp-img-ring-2 { animation: none !important; }
    .ch-aurora { animation: none !important; }
    .ah-aurora { animation: none !important; }
    .mandala-outer, .mandala-mid, .mandala-inner { animation: none !important; }
    .ah-marquee-track { animation: none !important; }
    .preloader-bar { animation: none !important; }
    .sc-badge { animation: none !important; }
    .wa-float::before { animation: none !important; }
    .ks-bg img { will-change: auto !important; }
    /* Reveal elements: show immediately instead of invisible-then-snap */
    .reveal, .reveal--left, .reveal--right, .reveal--scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== 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));
    }
}

/* Prevent iOS Safari auto-zoom on input focus (font-size must be ≥16px) */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
    }
}

/* === Tiffin subscription page (warm editorial — 2-color system) === */
:root {
    /* Strict 2-color palette: cream + terracotta only */
    --tf-cream: #fdf6ee;
    --tf-cream-light: #fff9f4;
    --tf-cream-mid: #f4e8d8;
    --tf-ink: #1a0a00;
    --tf-ink-soft: #4a3a2a;
    --tf-ink-faint: #8a7060;
    --tf-orange: #d4621e;
    --tf-orange-deep: #b5451b;
    --tf-orange-muted: rgba(212, 98, 30, 0.08);
    --tf-orange-bg: #fff5ec;   /* light terracotta tint — for hover states only */
    --tf-border: #e8c9a8;
    /* State-only colours — never for decoration */
    --tf-success: #2e7d32;
    --tf-success-bg: #e8f5e9;
    --tf-warn: #c04a1a;
    --tf-warn-bg: #fff3e0;
    /* Shadows and shape */
    --tf-shadow-sm: 0 1px 3px rgba(40, 20, 5, 0.06);
    --tf-shadow-md: 0 8px 24px rgba(40, 20, 5, 0.10);
    --tf-shadow-lg: 0 30px 60px rgba(20, 10, 5, 0.18);
    --tf-radius: 14px;
    /* Spacing scale */
    --tf-space-xs: 0.5rem;
    --tf-space-sm: 1rem;
    --tf-space-md: 1.5rem;
    --tf-space-lg: 2.5rem;
    --tf-space-xl: 4rem;
    /* Typography */
    --tf-font-headline: 'Fraunces', Georgia, serif;
    --tf-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --tf-font-script: 'Caveat', cursive;
}
.tf-page { font-family: var(--tf-font-body); color: var(--tf-ink); background: var(--tf-cream); margin: 0; line-height: 1.55; position: relative; }
.tf-page * { box-sizing: border-box; }

/* Full-page food atmosphere — hero.webp fixed behind everything at ~8% opacity */
.tf-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(253,246,238,0.93) 0%, rgba(253,246,238,0.90) 40%, rgba(253,246,238,0.93) 100%),
        url('/assets/tiffin/hero.webp');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}
.tf-page > * { position: relative; z-index: 1; }

.tf-section { padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem); }
.tf-section-inner { max-width: 76rem; margin: 0 auto; }

.tf-eyebrow { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tf-orange-deep); font-weight: 700; }

.tf-h1 { font-family: var(--tf-font-headline); font-weight: 400; font-size: clamp(2.5rem, 4vw + 1rem, 5rem); line-height: 1.05; margin: 0.5rem 0 1rem; color: var(--tf-ink); }
.tf-h2 { font-family: var(--tf-font-headline); font-weight: 600; font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem); line-height: 1.15; margin: 0 0 0.75rem; color: var(--tf-ink); }
.tf-h3 { font-family: var(--tf-font-headline); font-size: 1.5rem; font-weight: 600; line-height: 1.2; margin: 0 0 0.5rem; }

.tf-sub { font-size: 1.05rem; color: var(--tf-ink-soft); max-width: 60ch; }

.tf-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; text-decoration: none; transition: transform 120ms, background 120ms, border-color 120ms; }
/* --tf-orange-deep (#b5451b) gives 5.48:1 with white — PASS AA.
   --tf-orange (#d4621e) only gives 3.77:1 — FAIL AA for body-size text. */
.tf-btn--primary { background: var(--tf-orange-deep); color: #fff; }
.tf-btn--primary:hover { background: #8f3312; transform: translateY(-1px); }
.tf-btn--ghost { background: transparent; color: var(--tf-orange-deep); border-color: var(--tf-orange); }
.tf-btn--ghost:hover { background: var(--tf-orange-bg); }
.tf-btn:focus-visible { outline: 3px solid var(--tf-orange-deep); outline-offset: 2px; }

.tf-pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--tf-border); color: var(--tf-ink-soft); font-size: 0.8rem; font-weight: 600; margin-right: 6px; margin-bottom: 6px; }
/* tf-pill--price: use deep terracotta for 5.48:1 contrast with white */
.tf-pill--price { background: var(--tf-orange-deep); border-color: var(--tf-orange-deep); color: #fff; font-weight: 700; }
.tf-pills { margin: 1rem 0 1.5rem; }

.tf-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.tf-hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: clamp(3rem, 5vw, 6rem) clamp(1rem, 4vw, 3rem); overflow: hidden; }
.tf-hero-bg { position: absolute; inset: 0; background-image: linear-gradient(120deg, rgba(253,246,238,0.95), rgba(253,246,238,0.65) 40%, rgba(253,246,238,0.25) 70%), url('/assets/tiffin/hero.webp'); background-size: cover; background-position: center; z-index: 0; }
.tf-hero-content { position: relative; z-index: 1; max-width: 56rem; }
@media (max-width: 640px) {
    .tf-hero-bg { background-image: linear-gradient(180deg, rgba(253,246,238,0.92), rgba(253,246,238,0.55) 60%, rgba(253,246,238,0.25)), url('/assets/tiffin/hero.webp'); }
}

.tf-how { background: rgba(253, 246, 238, 0.92); }
.tf-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.tf-how-card { background: #fff; border: 1px solid var(--tf-border); border-radius: var(--tf-radius); padding: 1.75rem; box-shadow: var(--tf-shadow-sm); transition: transform 200ms, box-shadow 200ms; }
.tf-how-card:hover { transform: translateY(-4px); box-shadow: var(--tf-shadow-md); }
.tf-how-icon { color: var(--tf-orange); margin-bottom: 0.5rem; }
.tf-how-num { font-family: var(--tf-font-headline); font-style: italic; font-weight: 700; font-size: 2.25rem; color: var(--tf-orange); line-height: 1; margin-bottom: 0.5rem; }
.tf-how-card h3 { font-style: italic; }
.tf-how-card p { color: var(--tf-ink-soft); margin: 0.5rem 0 0; font-size: 0.95rem; }
@media (max-width: 800px) { .tf-how-grid { grid-template-columns: 1fr; } }

/* Pause Request Form Section */
.tf-pause { padding: clamp(2rem, 4vw, 4rem) 0; background: linear-gradient(135deg, rgba(241, 202, 167, 0.1) 0%, rgba(255, 248, 245, 0.8) 100%); border-top: 2px solid var(--tf-border); border-bottom: 2px solid var(--tf-border); }
.tf-pause-inner { max-width: 76rem; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.tf-pause h2 { font-family: var(--tf-font-headline); font-size: 2rem; font-weight: 600; color: var(--tf-ink); margin: 0 0 0.5rem; line-height: 1.1; }
.tf-pause-sub { color: var(--tf-ink-soft); font-size: 0.95rem; margin: 0 0 2rem; max-width: 60ch; }

.tf-pause-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.tf-form { background: #fff; padding: 2rem; border-radius: var(--tf-radius); box-shadow: var(--tf-shadow-sm); }
.tf-form-group { margin-bottom: 1.5rem; }
.tf-form-group:last-child { margin-bottom: 0; }
.tf-form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--tf-ink); margin-bottom: 0.5rem; }
.tf-form-input, .tf-form-select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--tf-border); border-radius: 10px; font-family: var(--tf-font-body); font-size: 0.95rem; color: var(--tf-ink); background: #fff; transition: border-color 200ms, box-shadow 200ms; }
.tf-form-input:focus, .tf-form-select:focus { outline: none; border-color: var(--tf-orange); box-shadow: 0 0 0 3px rgba(241, 140, 65, 0.1); }
.tf-form-select { cursor: pointer; }
.tf-form-input::placeholder { color: var(--tf-ink-soft); }

.tf-form-result { margin-top: 1.5rem; padding: 1rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; display: none; text-align: center; }
.tf-form-result[data-state="success"] { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.tf-form-result[data-state="error"] { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.tf-pause-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; }
.tf-pause-buttons button, .tf-pause-buttons a { flex: 1; padding: 12px 16px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; text-align: center; text-decoration: none; cursor: pointer; transition: all 200ms; }
.tf-pause-buttons button { background: var(--tf-orange-deep); color: #fff; border: none; }
.tf-pause-buttons button:hover { background: #8f3312; transform: translateY(-2px); }
.tf-pause-buttons button:active { transform: translateY(0); }

.tf-pause-sidebar { background: #fff; padding: 2rem; border-radius: var(--tf-radius); box-shadow: var(--tf-shadow-sm); }
.tf-pause-sidebar h3 { font-family: var(--tf-font-headline); font-size: 1.25rem; font-weight: 600; color: var(--tf-ink); margin: 0 0 1rem; }
.tf-pause-sidebar p { color: var(--tf-ink-soft); font-size: 0.9rem; margin: 0 0 1.5rem; line-height: 1.6; }
.tf-pause-sidebar ul { list-style: none; padding: 0; margin: 0; }
.tf-pause-sidebar li { padding: 0.75rem 0; border-bottom: 1px solid var(--tf-border); color: var(--tf-ink-soft); font-size: 0.9rem; }
.tf-pause-sidebar li:last-child { border-bottom: none; }
.tf-pause-sidebar li::before { content: "✓ "; color: var(--tf-orange); font-weight: 700; margin-right: 0.5rem; }

.tf-pause-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; background: #25d366; color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 200ms; }
.tf-pause-whatsapp:hover { background: #1fbd54; transform: translateY(-1px); }

@media (max-width: 700px) {
  .tf-pause-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tf-form, .tf-pause-sidebar { padding: 1.5rem; }
  .tf-pause h2 { font-size: 1.5rem; }
}

/* FAQ Accordion Section */
.tf-faq { padding: clamp(2rem, 4vw, 4rem) 0; background: rgba(255,255,255,0.94); border-bottom: 2px solid var(--tf-border); }
.tf-faq-inner { max-width: 76rem; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.tf-faq h2 { font-family: var(--tf-font-headline); font-size: 2rem; font-weight: 600; color: var(--tf-ink); margin: 0 0 0.5rem; line-height: 1.1; }
.tf-faq-intro { color: var(--tf-ink-soft); font-size: 0.95rem; margin: 0 0 2rem; max-width: 60ch; }

.tf-faq-list { list-style: none; padding: 0; margin: 0; }
.tf-faq-item { margin-bottom: 1rem; border: 1.5px solid var(--tf-border); border-radius: var(--tf-radius); overflow: hidden; transition: all 200ms; }
.tf-faq-item:hover { box-shadow: var(--tf-shadow-sm); }
.tf-faq-item[open] { border-color: var(--tf-orange); background: linear-gradient(to bottom, rgba(241, 140, 65, 0.05), transparent); }

.tf-faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; cursor: pointer; font-weight: 600; color: var(--tf-ink); user-select: none; transition: background 200ms; }
.tf-faq-item summary:hover { background: rgba(241, 140, 65, 0.05); }
.tf-faq-item summary::marker { color: var(--tf-orange); }
.tf-faq-item summary::after { content: ""; width: 20px; height: 20px; background: radial-gradient(circle at 50% 50%, var(--tf-orange) 0%, var(--tf-orange) 35%, transparent 35%); position: relative; transition: transform 200ms; }
.tf-faq-item[open] summary::after { transform: rotate(90deg); }

.tf-faq-item p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--tf-ink-soft); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 700px) {
  .tf-faq h2 { font-size: 1.5rem; }
  .tf-faq-item summary { padding: 1rem; font-size: 0.9rem; }
  .tf-faq-item p { padding: 0 1rem 1rem; font-size: 0.9rem; }
}

/* Sticky Mobile CTA Button — iOS safe-area aware */
.tf-sticky-cta {
  position: fixed;
  bottom: 1rem;
  bottom: max(1rem, calc(env(safe-area-inset-bottom, 0px) + 0.5rem));
  left: 1rem;
  right: 1rem;
  display: none;
  z-index: 999;
}
.tf-sticky-cta.visible { display: block; animation: slideUp 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* Sticky CTA: deep terracotta = 5.48:1 with white at 0.9rem/700 — PASS AA */
.tf-sticky-cta button { width: 100%; padding: 14px 16px; background: var(--tf-orange-deep); color: #fff; border: none; border-radius: 10px; font-weight: 700; font-size: 0.9rem; cursor: pointer; box-shadow: var(--tf-shadow-md); transition: all 200ms; }
.tf-sticky-cta button:hover { background: #8f3312; }
.tf-sticky-cta button:active { transform: scale(0.98); }

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

@media (min-width: 701px) {
  .tf-sticky-cta { display: none !important; }
}

/* ===== TIFFIN SUBSCRIBE MODAL (E1+E2) ===== */
.tf-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.tf-modal[hidden] { display: none; }
.tf-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 10, 5, 0.65); backdrop-filter: blur(4px); }
.tf-modal-card {
  position: relative;
  background: var(--tf-cream);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  /* On mobile: leave room for sticky CTA + iOS home bar */
  max-height: min(92vh, calc(100dvh - 2rem));
  overflow-y: auto;
  /* Smooth momentum scroll on iOS */
  -webkit-overflow-scrolling: touch;
  padding: 1.75rem;
  box-shadow: var(--tf-shadow-lg);
}
.tf-modal-close { position: absolute; top: 12px; right: 14px; background: transparent; border: none; font-size: 28px; line-height: 1; color: var(--tf-ink-faint); cursor: pointer; padding: 4px 10px; }
.tf-modal-close:hover { color: var(--tf-orange-deep); }
.tf-modal-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tf-orange-deep); font-weight: 700; margin-bottom: 4px; }
.tf-modal-title { font-family: var(--tf-font-headline); font-style: italic; font-size: 1.6rem; margin: 0; color: var(--tf-ink); }
.tf-modal-sub { font-size: 0.9rem; color: var(--tf-ink-soft); margin: 0 0 1rem; }
.tf-modal-section { border: none; padding: 0; margin: 0 0 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--tf-border); }
.tf-modal-section:last-of-type { border: none; }
.tf-modal-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tf-ink-faint); font-weight: 700; margin-bottom: 8px; padding: 0; }
.tf-modal-section .tf-form-input { width: 100%; margin-bottom: 8px; }
.tf-modal-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tf-tog-opt { background: #fff; border: 2px solid var(--tf-border); border-radius: 8px; padding: 12px; font-family: inherit; font-size: 0.9rem; cursor: pointer; text-align: center; color: var(--tf-ink); }
.tf-tog-opt small { display: block; font-size: 0.7rem; color: var(--tf-ink-faint); font-weight: 400; margin-top: 2px; }
.tf-tog-opt.is-active { border-color: var(--tf-orange); background: var(--tf-orange-bg); color: var(--tf-orange-deep); font-weight: 700; }
.tf-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin: 8px 0 4px; }
@media (max-width: 480px) { .tf-days-grid { grid-template-columns: repeat(4, 1fr); } }
.tf-day-chip { background: #fff; border: 2px solid var(--tf-border); border-radius: 8px; padding: 10px 4px; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; text-align: center; color: var(--tf-ink); transition: border-color 150ms, background 150ms, color 150ms, transform 100ms; }
.tf-day-chip:hover:not(:disabled) { border-color: rgba(241, 140, 65, 0.5); transform: translateY(-1px); }
.tf-day-chip.is-selected { border-color: var(--tf-orange); background: var(--tf-orange); color: #fff; }
.tf-day-chip:disabled { opacity: 0.35; cursor: not-allowed; background: #f5f1ec; }
.tf-day-chip.is-closed { text-decoration: line-through; opacity: 0.4; cursor: not-allowed; }
.tf-zone-result { padding: 8px 12px; border-radius: 6px; font-size: 0.85rem; margin-top: 6px; }
.tf-zone-result[data-state="ok"] { background: var(--tf-success-bg); color: var(--tf-success); }
.tf-zone-result[data-state="bad"] { background: var(--tf-warn-bg); color: var(--tf-warn); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.tf-zone-result button { background: var(--tf-orange); color: #fff; border: none; padding: 4px 10px; border-radius: 4px; cursor: pointer; font-size: 0.8rem; font-weight: 700; }
.tf-modal-total { background: var(--tf-ink); color: var(--tf-cream); border-radius: 10px; padding: 1rem; font-size: 0.85rem; }
.tf-modal-total .tf-tot-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.tf-modal-total .tf-tot-row.tf-tot-big { font-family: var(--tf-font-headline); font-style: italic; font-size: 1.25rem; color: var(--tf-cream); border-top: 1px solid #4a3a2a; padding-top: 8px; margin-top: 8px; }
.tf-modal-total small { color: #8a8070; font-size: 0.7rem; display: block; margin-top: 6px; }
.tf-modal-cta { width: 100%; margin-top: 1rem; }
/* tf-modal-foot: ink-faint (#8a7060) on cream = 4.29:1 — FAIL at 0.75rem.
   Use ink-soft (#4a3a2a) = 10.88:1 — PASS AAA */
.tf-modal-foot { text-align: center; font-size: 0.75rem; color: var(--tf-ink-soft); margin: 0.5rem 0 0; }
.tf-addon-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-top: 1px dashed var(--tf-border); font-size: 0.9rem; }
.tf-addon-row:first-child { border-top: none; }
.tf-addon-name { flex: 1; }
.tf-addon-name small { display: block; color: var(--tf-ink-faint); font-size: 0.72rem; margin-top: 1px; }
.tf-addon-price { color: var(--tf-ink-soft); font-weight: 600; min-width: 4.5rem; text-align: right; }
.tf-stepper { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--tf-border); border-radius: 6px; padding: 2px; }
.tf-stepper-btn { width: 28px; height: 28px; border: none; background: var(--tf-orange-bg); color: var(--tf-orange-deep); border-radius: 4px; font-weight: 700; cursor: pointer; }
.tf-stepper-btn:hover { background: var(--tf-orange); color: #fff; }
.tf-stepper-val { min-width: 20px; text-align: center; font-weight: 700; }
.tf-check { width: 26px; height: 26px; border: 2px solid var(--tf-border); border-radius: 5px; background: #fff; cursor: pointer; }
.tf-check--on { background: var(--tf-orange); border-color: var(--tf-orange); position: relative; }
.tf-check--on::after { content: "✓"; color: #fff; position: absolute; top: -2px; left: 5px; font-weight: 700; }

/* Quote section — cream card, dark ink, terracotta left-border accent */
.tf-quote { background: transparent; padding: clamp(2.5rem, 4vw, 4rem) clamp(1rem, 4vw, 3rem); }
.tf-quote .tf-section-inner { display: flex; align-items: center; justify-content: center; }
.tf-quote-card {
    max-width: 640px;
    width: 100%;
    background: #fff;
    border-left: 5px solid var(--tf-orange);
    border-radius: 0 var(--tf-radius) var(--tf-radius) 0;
    padding: 2rem 2.5rem;
    box-shadow: var(--tf-shadow-md);
    text-align: left;
}
.tf-quote-text {
    font-family: var(--tf-font-headline);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--tf-ink);
    margin: 0 0 1rem 0;
    line-height: 1.45;
}
.tf-quote-text em { font-style: italic; }
.tf-quote-attr {
    font-size: 0.85rem;
    color: var(--tf-orange-deep);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Plan cards — typographic, no photos */
/* .tf-plan-img intentionally removed — cards are photo-free */
.tf-page main { padding-top: 0; }
/* Tiffin page nav matches the homepage's scrolled/solid look: dark
   translucent bar, white uppercase links, saffron CTA. We can't rely on
   the .nav default (transparent) like the homepage does, because tiffin's
   hero gradient is cream — white text on cream is invisible. So we pin
   the tiffin nav to the SAME look the homepage nav has AFTER scrolling.
   Result: identical-looking navbar across both pages, just always-on
   here because there's no dark hero to ride over. */
.tf-page .nav,
.tf-page .nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* ========================================================================
   Pause-a-day section — single editorial card with WhatsApp quick-action
   ======================================================================== */
.tf-pause-header { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.tf-pause-header .tf-sub { margin-left: auto; margin-right: auto; }

.tf-pause-card {
    max-width: 44rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 8px 32px rgba(26, 10, 0, 0.08), 0 2px 6px rgba(26, 10, 0, 0.04);
    border: 1px solid rgba(212, 98, 30, 0.1);
}

/* WhatsApp quick action bar — top of card */
.tf-pause-quick {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(37, 211, 102, 0.02) 100%);
    border: 1px solid rgba(37, 211, 102, 0.18);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.tf-pause-quick-icon {
    width: 44px; height: 44px;
    background: rgba(37, 211, 102, 0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tf-pause-quick-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tf-pause-quick-text strong { font-family: var(--tf-font-headline); font-size: 1rem; font-weight: 600; color: var(--tf-ink); }
.tf-pause-quick-text span { font-size: 0.85rem; color: var(--tf-ink-soft); line-height: 1.4; }
.tf-pause-wa-btn {
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 200ms ease;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.tf-pause-wa-btn:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35); }
.tf-pause-wa-btn:active { transform: translateY(0); }

/* Divider — "or fill the form below" */
.tf-pause-divider {
    display: flex; align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--tf-ink-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}
.tf-pause-divider::before, .tf-pause-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(26, 10, 0, 0.1);
}

/* Form fields — proper editorial styling */
.tf-form { display: flex; flex-direction: column; gap: 1.1rem; }
.tf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) {
    .tf-form-row { grid-template-columns: 1fr; }
}
.tf-form-label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.92rem; color: var(--tf-ink); }
.tf-form-label-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tf-ink-soft);
}
.tf-form-optional { color: rgba(26, 10, 0, 0.4); font-weight: 500; text-transform: none; letter-spacing: 0; }
.tf-form-input {
    width: 100%;
    padding: 11px 14px;
    background: #fdfaf6;
    border: 1.5px solid rgba(26, 10, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--tf-font-body);
    color: var(--tf-ink);
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
    box-sizing: border-box;
}
.tf-form-input:hover { border-color: rgba(26, 10, 0, 0.2); }
.tf-form-input:focus {
    outline: none;
    border-color: var(--tf-orange-deep);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 98, 30, 0.15);
}
.tf-form-input::placeholder { color: rgba(26, 10, 0, 0.35); }
select.tf-form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23b5451b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.tf-form-input { resize: vertical; min-height: 64px; font-family: var(--tf-font-body); }
.tf-form-hint { font-size: 0.78rem; color: var(--tf-ink-soft); margin-top: 2px; }

.tf-pause-submit { width: 100%; margin-top: 0.5rem; }

.tf-form-result { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: 8px; font-size: 0.9rem; }
.tf-form-result[data-state="success"] { background: rgba(37, 211, 102, 0.1); color: #15803d; border: 1px solid rgba(37, 211, 102, 0.3); }
.tf-form-result[data-state="error"] { background: rgba(220, 38, 38, 0.08); color: #b91c1c; border: 1px solid rgba(220, 38, 38, 0.25); }

/* Mobile — stack the WhatsApp quick action */
@media (max-width: 540px) {
    .tf-pause-quick { grid-template-columns: auto 1fr; gap: 0.85rem; }
    .tf-pause-wa-btn { grid-column: 1 / -1; justify-content: center; padding: 12px 16px; }
}

/* ========================================================================
   Hero polish — stronger gradient, refined pills, price-from line
   ======================================================================== */

/* Override hero background gradient to reduce food bleed into text area */
.tf-page .tf-hero-bg {
    background-image:
        linear-gradient(105deg,
            rgba(253, 246, 238, 0.97) 0%,
            rgba(253, 246, 238, 0.92) 35%,
            rgba(253, 246, 238, 0.55) 60%,
            rgba(253, 246, 238, 0.18) 85%
        ),
        url('/assets/tiffin/hero.webp');
}
@media (max-width: 800px) {
    .tf-page .tf-hero-bg {
        background-image:
            linear-gradient(180deg,
                rgba(253, 246, 238, 0.96) 0%,
                rgba(253, 246, 238, 0.85) 50%,
                rgba(253, 246, 238, 0.45) 100%
            ),
            url('/assets/tiffin/hero.webp');
    }
}

/* Tighter hero subtitle — match width to headline rhythm */
.tf-hero .tf-sub {
    max-width: 36rem;
    font-size: clamp(1rem, 1.1vw + 0.5rem, 1.15rem);
    line-height: 1.55;
    color: rgba(26, 10, 0, 0.78);
    margin: 0 0 1.5rem 0;
    text-align: left;
}

/* Refined pill row — consistent visual weight, tiny dot accent */
.tf-hero .tf-pills {
    display: flex; flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1rem;
}
.tf-hero .tf-pill {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 98, 30, 0.18);
    color: var(--tf-ink);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 999px;
    margin: 0;
}
.tf-pill-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--tf-orange);
    flex-shrink: 0;
}

/* Price-from line — replaces the orange pricing pill, sits between pills and CTAs */
.tf-hero-price {
    margin: 0 0 1.75rem;
    color: var(--tf-ink-soft);
    font-size: 0.92rem;
}
.tf-hero-price strong {
    color: var(--tf-orange-deep);
    font-family: var(--tf-font-headline);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}
.tf-hero-price span {
    color: rgba(26, 10, 0, 0.5);
    font-size: 0.85rem;
}

/* Hero CTA row — make sure both buttons read clearly on softer right-side gradient */
.tf-hero .tf-cta-row {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ========================================================================
   Trial banner — "try one tiffin first" prompt above plan grid
   ======================================================================== */
.tf-trial-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 98, 30, 0.06) 0%, rgba(212, 98, 30, 0.02) 100%);
    border: 1.5px dashed rgba(212, 98, 30, 0.35);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    margin: 0 0 1.25rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}
.tf-trial-icon {
    width: 52px; height: 52px;
    background: rgba(212, 98, 30, 0.12);
    color: var(--tf-orange-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tf-trial-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tf-trial-text strong { font-family: var(--tf-font-headline); font-size: 1.05rem; font-weight: 600; color: var(--tf-ink); font-style: italic; }
.tf-trial-text span { font-size: 0.88rem; color: var(--tf-ink-soft); line-height: 1.4; }
.tf-trial-text b { color: var(--tf-orange-deep); font-weight: 700; }

.tf-trial-cta-row { display: flex; gap: 0.5rem; flex-shrink: 0; }
.tf-btn--ghost-orange {
    background: transparent;
    color: var(--tf-orange-deep);
    border: 1.5px solid var(--tf-orange-deep);
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 200ms ease;
    white-space: nowrap;
}
.tf-btn--ghost-orange:hover { background: var(--tf-orange-deep); color: #fff; transform: translateY(-1px); }

/* Mobile — stack trial CTAs vertically */
@media (max-width: 720px) {
    .tf-trial-banner {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    .tf-trial-cta-row { grid-column: 1 / -1; flex-direction: column; }
    .tf-btn--ghost-orange { width: 100%; padding: 11px 16px; }
}

/* ========================================================================
   Delivery promo callout — small inline banner highlighting delivery cost
   ======================================================================== */
.tf-delivery-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(212, 98, 30, 0.18);
    border-radius: 999px;
    padding: 8px 18px;
    margin: 0 auto 2.5rem;
    font-size: 0.88rem;
    color: var(--tf-ink-soft);
}
.tf-delivery-icon { font-size: 1.05rem; flex-shrink: 0; }
.tf-delivery-text strong { color: var(--tf-orange-deep); font-weight: 700; }
.tf-section-inner > .tf-delivery-promo { display: flex; max-width: max-content; }

/* ========================================================================
   Embedded Stripe Checkout — payment view inside subscribe modal
   ======================================================================== */
#tf-modal-payment-view { display: flex; flex-direction: column; gap: 1rem; }
.tf-modal-back {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(212, 98, 30, 0.25);
    color: var(--tf-orange-deep);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease;
}
.tf-modal-back:hover {
    background: rgba(212, 98, 30, 0.08);
    border-color: var(--tf-orange-deep);
}
#tf-stripe-mount {
    border-radius: 8px;
    overflow: hidden;
}
#tf-stripe-mount:not(:empty) {
    /* Only reserve space when Stripe iframe is actually mounted */
    min-height: 400px;
}
/* When the payment view is hidden, fully remove from layout flow */
#tf-modal-payment-view[hidden] { display: none !important; }

/* ========================================================================
   TIFFIN MOBILE POLISH — 375px / 414px / 768px breakpoints
   All fixes are additive overrides; no desktop rules changed.
   ======================================================================== */

/* ── Hero: tighter on small screens ─────────────────────────────────── */
@media (max-width: 480px) {
  .tf-hero {
    min-height: 85vh;
    padding: clamp(4.5rem, 12vw, 6rem) 1.25rem 2rem;
    align-items: flex-start;
  }
  .tf-h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: 0.75rem;
  }
  .tf-hero .tf-sub {
    font-size: 0.97rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  /* Pills: tighter gap, slightly smaller text so they don't wrap to 3 lines */
  .tf-hero .tf-pills {
    gap: 0.35rem;
    margin: 0 0 0.75rem;
  }
  .tf-hero .tf-pill {
    font-size: 0.76rem;
    padding: 6px 11px;
  }
  /* Price-from line */
  .tf-hero-price {
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
  }
  /* CTA row: primary full-width, ghost secondary below */
  .tf-hero .tf-cta-row {
    flex-direction: column;
    gap: 0.6rem;
  }
  .tf-hero .tf-btn--primary {
    width: 100%;
    font-size: 1rem;
    padding: 15px 20px;
  }
  .tf-hero .tf-btn--ghost {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    padding: 12px 20px;
    opacity: 0.85;
  }
}

/* ── How-it-works: single column, compact ────────────────────────────── */
@media (max-width: 480px) {
  .tf-how { padding: 2.5rem 1.25rem; }
  .tf-how-card { padding: 1.25rem; }
  .tf-how-num { font-size: 1.75rem; }
}

/* ── Plan cards: full-width stack, remove hover lift on touch ────────── */
@media (max-width: 480px) {
  .tf-plans-section {
    padding: 2rem 1rem 1.5rem;
  }
  .tf-plans-grid {
    gap: 1rem;
  }
  .tf-plan-card {
    padding: 1.5rem 1.25rem;
    /* No pointer hover on touch — remove hover trap */
    transform: none !important;
  }
  /* Still allow the popular card to look elevated */
  .tf-plan-card--popular {
    box-shadow: 0 6px 18px rgba(212, 98, 30, 0.28);
  }
  .tf-plan-price {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  .tf-plan-features {
    font-size: 0.92rem;
  }
  .tf-plan-ribbon {
    font-size: 0.65rem;
    padding: 5px 12px;
    top: -10px;
  }
  .tf-plan-cta {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
}

/* ── Trial banner: full-width stack on mobile ────────────────────────── */
@media (max-width: 540px) {
  .tf-trial-banner {
    padding: 1rem 1.1rem;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .tf-trial-icon {
    width: 42px;
    height: 42px;
  }
  .tf-trial-icon svg { width: 26px; height: 26px; }
  .tf-trial-text strong { font-size: 0.95rem; }
  .tf-trial-text span { font-size: 0.82rem; }
  /* Buttons already handled by existing .tf-trial-cta-row @media(max-width:720px) */
  .tf-btn--ghost-orange {
    font-size: 0.88rem;
  }
}

/* ── Delivery promo: wrap text naturally ─────────────────────────────── */
@media (max-width: 480px) {
  .tf-delivery-promo {
    font-size: 0.82rem;
    padding: 7px 14px;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
  }
}

/* ── Pause-a-meal section ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .tf-pause { padding: 2rem 0; }
  .tf-pause-card {
    padding: 1.25rem;
    border-radius: 12px;
  }
  .tf-pause-quick {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
  .tf-pause-quick-icon { width: 36px; height: 36px; }
  .tf-pause-quick-text strong { font-size: 0.9rem; }
  .tf-pause-quick-text span { font-size: 0.8rem; }
}

/* ── FAQ: bigger tap targets ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .tf-faq-item summary {
    padding: 1.1rem 1rem;
    font-size: 0.92rem;
    line-height: 1.4;
  }
  .tf-faq-item p {
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

/* ── Modal: mobile-first sizing ─────────────────────────────────────── */
@media (max-width: 540px) {
  .tf-modal { padding: 0.5rem; align-items: flex-end; }
  .tf-modal-card {
    border-radius: 16px 16px 0 0;
    max-height: 94dvh;
    padding: 1.25rem 1.1rem;
    /* Extra bottom padding so content clears iOS home indicator */
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 1rem));
  }
  .tf-modal-title { font-size: 1.3rem; }
  .tf-modal-sub { font-size: 0.85rem; }
  .tf-tog-opt { padding: 10px 8px; font-size: 0.85rem; }
  .tf-modal-cta { padding: 14px 16px; }
}

/* ── iPad portrait (768px): 2-up plan grid ───────────────────────────── */
@media (min-width: 540px) and (max-width: 820px) {
  .tf-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================================================
   TRUST BAND — appears below plan grid, above Pay in Store
   Compact row: Cancel anytime · No long-term contract · Halal · Since 2019
   ======================================================================== */
.tf-trust-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--tf-border);
  border-bottom: 1px solid var(--tf-border);
  margin-top: 1.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
.tf-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tf-ink-soft);
  white-space: nowrap;
}
.tf-trust-item svg {
  color: var(--tf-orange-deep);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .tf-trust-band {
    gap: 0.4rem 1rem;
    padding: 0.85rem 1rem;
  }
  .tf-trust-item {
    font-size: 0.78rem;
  }
}

/* ========================================================================
   HERO TESTIMONIAL — slim quote below pills, above price-from
   Single line: social proof before the CTA
   ======================================================================== */
.tf-hero-testimonial {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 98, 30, 0.15);
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 0 1rem;
  font-size: 0.83rem;
  color: var(--tf-ink);
  font-style: italic;
}
.tf-hero-testimonial strong {
  font-style: normal;
  color: var(--tf-orange-deep);
  font-weight: 700;
  font-size: 0.78rem;
}
@media (max-width: 480px) {
  .tf-hero-testimonial {
    font-size: 0.78rem;
    padding: 6px 13px;
    flex-wrap: wrap;
    border-radius: 10px;
  }
}

/* ========================================================================
   PLAN CARD — popular card: force name & price to use ink (dark) not white
   white on #d4621e = 3.77:1 FAIL AA for body-size text.
   ink (#1a0a00) on #d4621e = 5.12:1 PASS AA.
   Price is large text (clamp 2.25rem+) — 3.77:1 would pass AA Large,
   but using ink is safer and more legible at small sizes on mobile.
   ======================================================================== */
.tf-plan-card--popular .tf-plan-name {
  color: var(--tf-ink);
}
.tf-plan-card--popular .tf-plan-price {
  color: var(--tf-ink);
}
/* The /wk unit is small (0.95rem) — use ink too */
.tf-plan-card--popular .tf-plan-price .tf-plan-price-unit {
  color: var(--tf-ink-soft);
}
/* Anchor/savings pill on popular card stays dark-on-tinted-bg — already correct */

/* ========================================================================
   Tiffin delivery areas — cream + terracotta, matches site palette
   ======================================================================== */
.tf-areas { background: rgba(255, 255, 255, 0.55); border-top: 1px solid rgba(212, 98, 30, 0.15); border-bottom: 1px solid rgba(212, 98, 30, 0.15); backdrop-filter: blur(4px); }
.tf-areas-sub { text-align: center; max-width: 42rem; margin: 0 auto 2rem; }
.tf-areas .tf-eyebrow,
.tf-areas .tf-h2 { text-align: center; }
.tf-areas .tf-h2 { margin-bottom: 0.5rem; }

.tf-areas-grid {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    justify-content: center;
    max-width: 60rem;
    margin: 0 auto 1.75rem;
}
.tf-area-chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #fff;
    color: var(--tf-ink);
    border: 1px solid rgba(212, 98, 30, 0.25);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms ease;
}
.tf-area-chip small { color: var(--tf-ink-soft); font-size: 0.78rem; font-weight: 500; }
.tf-area-chip--primary {
    background: var(--tf-orange-deep);
    color: #fff;
    border-color: var(--tf-orange-deep);
}
.tf-area-chip--primary small { color: rgba(255, 255, 255, 0.85); }
.tf-area-chip--primary:hover { background: var(--tf-ink); border-color: var(--tf-ink); transform: translateY(-2px); }
.tf-area-chip:hover { border-color: var(--tf-orange-deep); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(212, 98, 30, 0.12); }

.tf-areas-note { text-align: center; color: var(--tf-ink-soft); font-size: 0.92rem; max-width: 38rem; margin: 0 auto; }
.tf-areas-note a { color: var(--tf-orange-deep); font-weight: 600; text-decoration: none; }
.tf-areas-note a:hover { text-decoration: underline; }

/* ========================================================================
   Override legacy .tf-sub centering across whole tiffin page
   The legacy .tf-sub { margin: 0 auto; text-align: center } was leaking
   into every section's subtitle. Hero was fixed earlier; this fixes the rest.
   ======================================================================== */
.tf-page .tf-section .tf-sub {
    margin: 0 0 1.5rem 0;
    text-align: left;
    max-width: 60ch;
}
/* Sections that ARE centered intentionally (areas + pause + plans header) restore center */
.tf-page .tf-areas .tf-sub,
.tf-page .tf-pause-header .tf-sub,
.tf-page .tf-plans-section > .tf-section-inner > .tf-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* Pay-in-store: tighten top padding (legacy 5rem was too much) */
.tf-pay-store { padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1rem, 4vw, 3rem); }

/* ========================================================================
   Cash payment promo — secondary CTA on plan cards + promo banner
   ======================================================================== */
.tf-btn--cash {
    background: #fff;
    color: var(--tf-orange-deep);
    border: 1.5px solid var(--tf-orange-deep);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 12px;
    margin-top: 0.5rem;
    line-height: 1.3;
    transition: all 200ms ease;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
}
.tf-btn--cash small { display: block; font-size: 0.72rem; font-weight: 500; opacity: 0.7; margin-top: 2px; }
.tf-btn--cash:hover { background: var(--tf-orange-deep); color: #fff; transform: translateY(-1px); }
.tf-btn--cash:hover small { opacity: 0.9; }

/* Cash CTA on the highlighted Most-Popular card — invert colors */
.tf-btn--cash-popular {
    background: rgba(255, 255, 255, 0.95);
    color: var(--tf-orange-deep);
    border: 1.5px solid #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 12px;
    margin-top: 0.5rem;
    line-height: 1.3;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: all 200ms ease;
}
.tf-btn--cash-popular small { display: block; font-size: 0.72rem; font-weight: 500; opacity: 0.7; margin-top: 2px; }
.tf-btn--cash-popular:hover { background: var(--tf-ink); color: #fff; border-color: var(--tf-ink); }

/* Cash promo banner — appears below plan grid */
.tf-cash-promo {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(46, 125, 50, 0.02) 100%);
    border: 1.5px dashed rgba(46, 125, 50, 0.35);
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    margin: 1.5rem auto 0;
    max-width: 64rem;
}
.tf-cash-promo-icon { font-size: 2rem; flex-shrink: 0; }
.tf-cash-promo-text { display: flex; flex-direction: column; gap: 4px; }
.tf-cash-promo-text strong { font-family: var(--tf-font-headline); font-style: italic; font-size: 1.1rem; color: #1a3a1a; }
.tf-cash-promo-text span { color: var(--tf-ink-soft); font-size: 0.92rem; line-height: 1.5; }
.tf-cash-promo-text b { color: #1a3a1a; font-weight: 700; }
@media (max-width: 600px) {
    .tf-cash-promo { flex-direction: column; align-items: flex-start; padding: 1rem 1.25rem; }
}

/* Cash reservation summary inside modal */
.tf-cash-summary {
    background: var(--tf-ink);
    color: var(--tf-cream);
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    margin: 1rem 0;
}
.tf-cash-summary .row { display: flex; justify-content: space-between; padding: 4px 0; }
.tf-cash-summary .row.big { font-family: var(--tf-font-headline); font-style: italic; font-size: 1.2rem; padding-top: 8px; margin-top: 8px; border-top: 1px solid #4a3a2a; }
.tf-cash-summary small { color: #8a8070; font-size: 0.72rem; display: block; margin-top: 6px; }

/* ========================================================================
   Tiffin video — lightweight horizontal click-to-watch card
   ======================================================================== */
.tf-video {
    padding: clamp(1.25rem, 2vw, 2rem) clamp(1rem, 4vw, 3rem);
    background: rgba(253, 246, 238, 0.92);
}
.tf-video-inner { max-width: 64rem; margin: 0 auto; }

.tf-video-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.75rem;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 28px rgba(26, 10, 0, 0.08);
    border: 1px solid rgba(212, 98, 30, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.tf-video-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(26, 10, 0, 0.14); }

.tf-video-poster {
    position: relative;
    aspect-ratio: 9 / 16;
    max-height: 240px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--tf-orange-bg);
}
.tf-video-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tf-video-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 200ms ease;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.tf-video-card:hover .tf-video-play { transform: translate(-50%, -50%) scale(1.1); }
.tf-video-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}

.tf-video-text { min-width: 0; }
.tf-video-text .tf-eyebrow { display: block; margin-bottom: 0.4rem; }
.tf-video-h {
    font-family: var(--tf-font-headline);
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem);
    font-weight: 500;
    color: var(--tf-ink);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}
.tf-video-text p {
    margin: 0;
    color: var(--tf-ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}
.tf-video-text strong { color: var(--tf-orange-deep); }

@media (max-width: 640px) {
    .tf-video-card { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
    .tf-video-poster { max-height: 320px; aspect-ratio: 16 / 9; }
    .tf-video-text { text-align: center; }
}

/* ── Homepage tiffin section: alignment + spacing fixes ───────────────── */
/* Big veg/non-veg cards: shrink the +HST suffix so it doesn't dominate */
.tiffin-section .tf-plan .tf-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0.4rem 0 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.tiffin-section .tf-plan .tf-plan-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}

/* Subscription buttons: 4-col grid on desktop, scoped price size */
.tiffin-section .tf-plans-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}
.tiffin-section .tf-plan-btn {
    align-items: center;
    text-align: center;
    padding: 18px 14px;
    gap: 6px;
}
.tiffin-section .tf-plan-btn .tf-plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
}
.tiffin-section .tf-plan-btn .tf-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    display: inline-flex;
    align-items: baseline;
}
.tiffin-section .tf-plan-btn .tf-plan-price small {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    margin-left: 2px;
}
.tiffin-section .tf-plan-btn .tf-plan-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.2px;
}
.tiffin-section .tf-plan-btn .tf-plan-badge {
    top: -9px;
    font-size: 0.58rem;
    padding: 3px 10px;
    letter-spacing: 1.5px;
}

@media (max-width: 900px) {
    .tiffin-section .tf-plans-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .tiffin-section .tf-plans-row { grid-template-columns: 1fr; }
    .tiffin-section .tf-plan { padding: 1.5rem 1.25rem; }
}

/* "Pick your plan" label spacing */
.tiffin-section .tf-plans-label {
    text-align: center;
    margin: 0 0 1.25rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* ── Tiffin plan cards: premium typography + readable contrast ────────── */
.tiffin-section .tf-plan {
    background: linear-gradient(180deg, rgba(20,12,4,0.78) 0%, rgba(15,9,3,0.88) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.25rem 1.75rem 1.75rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}
.tiffin-section .tf-plan--veg {
    border-color: rgba(82,183,136,0.35);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(82,183,136,0.18) inset;
}
.tiffin-section .tf-plan--nonveg {
    border-color: rgba(232,134,12,0.5);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,134,12,0.25) inset, 0 0 40px rgba(232,134,12,0.12);
}

/* Type label "VEGETARIAN" / "NON-VEGETARIAN" */
.tiffin-section .tf-plan-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.tiffin-section .tf-plan--veg .tf-plan-type { color: #6ed29c; }
.tiffin-section .tf-plan--nonveg .tf-plan-type { color: #f4a83a; }

/* Price — Playfair, cream, with subtle line separator */
.tiffin-section .tf-plan .tf-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw + 0.4rem, 2.85rem);
    font-weight: 700;
    line-height: 1;
    color: var(--cream, #fdfaf6);
    margin: 0 0 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.tiffin-section .tf-plan .tf-plan-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}

/* Items list — better contrast + lighter dividers */
.tiffin-section .tf-plan-items li {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.1px;
}
.tiffin-section .tf-plan-items li::before {
    width: 5px; height: 5px;
    opacity: 1;
}

/* "Most Popular" badge — refined */
.tiffin-section .tf-plan--nonveg .tf-plan-badge {
    top: 0;
    right: 1.5rem;
    background: linear-gradient(135deg, #f4a83a 0%, var(--saffron) 100%);
    color: #1a0f04;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    padding: 0.32rem 0.85rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(232,134,12,0.4);
}

/* Subscription button polish — cream price, gold accents */
.tiffin-section .tf-plan-btn {
    background: rgba(20,12,4,0.6);
    border-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}
.tiffin-section .tf-plan-btn:hover {
    background: rgba(232,134,12,0.14);
    border-color: rgba(232,134,12,0.55);
}
.tiffin-section .tf-plan-btn--popular {
    background: linear-gradient(180deg, rgba(232,134,12,0.18) 0%, rgba(232,134,12,0.08) 100%);
    border-color: rgba(232,134,12,0.55);
}
.tiffin-section .tf-plan-btn .tf-plan-name {
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tiffin-section .tf-plan-btn .tf-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream, #fdfaf6);
    border: none;
    padding: 0;
    margin: 2px 0;
}
.tiffin-section .tf-plan-btn .tf-plan-price small {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 3px;
}
.tiffin-section .tf-plan-btn .tf-plan-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
}
.tiffin-section .tf-plan-btn--popular .tf-plan-name { color: #f4a83a; }
.tiffin-section .tf-plan-btn--popular .tf-plan-badge {
    background: linear-gradient(135deg, #f4a83a 0%, var(--saffron) 100%);
    color: #1a0f04;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(232,134,12,0.45);
    max-width: calc(100% - 16px);
    white-space: nowrap;
}

/* Prevent button from clipping floating badge */
.tiffin-section .tf-plan-btn { overflow: visible; min-width: 0; }
.tiffin-section .tf-plan-btn .tf-plan-name {
    line-height: 1.25;
    word-spacing: -1px;
}

/* Big "MOST POPULAR" badge on non-veg card — keep inside card bounds */
.tiffin-section .tf-plan--nonveg .tf-plan-badge {
    max-width: calc(100% - 2.5rem);
    white-space: nowrap;
}
