/* ===== HOME PAGE ===== */

/* HERO */
.hero {
  min-height: 100vh; background: var(--burgundy-deep);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; animation: float 6s ease-in-out infinite;
}
.hero__glow--1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%); top: -10%; left: -5%; animation-delay: 0s; }
.hero__glow--2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,26,40,0.3) 0%, transparent 70%); bottom: -10%; right: 10%; animation-delay: 2s; }
.hero__glow--3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 70%); top: 30%; right: -5%; animation-delay: 4s; }
.hero__ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(232,160,32,0.07);
  pointer-events: none; right: -80px; top: 50%; transform: translateY(-50%);
}
.hero__ring--1 { width: 600px; height: 600px; animation: spin 80s linear infinite; }
.hero__ring--2 { width: 420px; height: 420px; animation: spin 50s linear infinite reverse; right: 12px; }
.hero__ring--3 { width: 250px; height: 250px; border-color: rgba(232,160,32,0.12); animation: spin 30s linear infinite; right: 95px; }
.hero__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); margin-bottom: 1.5rem; }
.hero__eyebrow-dot { width: 6px; height: 6px; background: var(--saffron); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px rgba(232,160,32,0.6); animation: pulse-ring 2s ease-in-out infinite; }
.hero__title { font-family: var(--ff-display); font-size: clamp(3rem, 5.5vw, 5.2rem); line-height: 0.98; color: var(--cream); margin-bottom: 1.25rem; text-shadow: 0 4px 30px rgba(107,15,26,0.3); }
.hero__title-accent { color: var(--saffron); display: block; text-shadow: 0 0 40px rgba(232,160,32,0.25); }
.hero__italic { font-family: var(--ff-serif); font-size: 1.15rem; font-style: italic; color: rgba(253,246,236,0.6); margin-bottom: 1rem; }
.hero__desc { font-size: 0.95rem; color: rgba(253,246,236,0.68); line-height: 1.78; margin-bottom: 2.5rem; max-width: 480px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(232,160,32,0.12); flex-wrap: wrap; }
.hero__stat-num { font-family: var(--ff-display); font-size: 2rem; color: var(--saffron); line-height: 1; text-shadow: 0 0 20px rgba(232,160,32,0.2); }
.hero__stat-lbl { font-size: 0.72rem; color: rgba(253,246,236,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; height: 460px; }
.hero__orb { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(232,160,32,0.08) 0%, rgba(107,15,26,0.3) 60%, transparent 100%); border: 1px solid rgba(232,160,32,0.1); box-shadow: 0 0 60px rgba(232,160,32,0.06), inset 0 0 60px rgba(107,15,26,0.2); }
.hero__cards-wrap { position: relative; width: 300px; height: 300px; }
.hero__card {
  position: absolute; background: rgba(253,246,236,0.06);
  border: 1px solid rgba(232,160,32,0.14); border-radius: 16px;
  padding: 1.5rem 1.25rem; text-align: center; backdrop-filter: blur(12px);
  transition: all 0.35s ease; cursor: default; width: 120px;
}
.hero__card:hover { background: rgba(232,160,32,0.1); border-color: rgba(232,160,32,0.35); transform: translateY(-6px) scale(1.05) !important; }
.hero__card:nth-child(1) { top: 0; left: 0; }
.hero__card:nth-child(2) { top: 0; right: 0; }
.hero__card:nth-child(3) { bottom: 0; left: 20px; }
.hero__card:nth-child(4) { bottom: 20px; right: 0; }
.hero__card span { font-size: 2.2rem; display: block; margin-bottom: 0.4rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.hero__card-n { font-size: 0.75rem; font-weight: 700; color: var(--cream); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.2; }
.hero__card-p { font-size: 0.82rem; color: var(--saffron); margin-top: 0.2rem; font-weight: 600; }
.hero__scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(253,246,236,0.35); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(232,160,32,0.5), transparent); animation: float 1.5s ease-in-out infinite; }

/* FEATURES */
.features { background: var(--white); padding: 6rem 0; }
.features__header { text-align: center; margin-bottom: 4rem; }
.features__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.feat-card {
  padding: 2.5rem 2rem; border: 1px solid var(--cream-dark); border-radius: var(--radius-lg);
  text-align: center; transition: all var(--transition); position: relative; overflow: hidden; background: var(--white);
  cursor: default;
}
.feat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,160,32,0.03) 0%, transparent 60%); opacity: 0; transition: opacity 0.35s; }
.feat-card:hover::before { opacity: 1; }
.feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); border-color: rgba(232,160,32,0.2); }
.feat-card__icon-wrap { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(107,15,26,0.06) 0%, rgba(232,160,32,0.06) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: transform 0.35s; }
.feat-card:hover .feat-card__icon-wrap { transform: scale(1.1) rotate(5deg); }
.feat-card__icon { font-size: 2rem; }
.feat-card h3 { font-family: var(--ff-display); font-size: 1.15rem; color: var(--burgundy); margin-bottom: 0.65rem; }
.feat-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.68; }
.feat-card__line { width: 0; height: 2px; background: var(--saffron); border-radius: 1px; margin: 1.25rem auto 0; transition: width 0.4s ease; }
.feat-card:hover .feat-card__line { width: 50px; }

/* MENU PREVIEW */
.menu-prev { background: var(--cream); padding: 6rem 0; }
.menu-prev__hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.menu-prev__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.mp-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.mp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mp-card__head { background: var(--burgundy); padding: 1.75rem 1.5rem 2rem; position: relative; overflow: hidden; }
.mp-card__head::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%); }
.mp-card__head.gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.mp-card__head.dark { background: linear-gradient(135deg, var(--charcoal-soft) 0%, var(--charcoal) 100%); }
.mp-card__cat { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(253,246,236,0.5); margin-bottom: 0.35rem; position: relative; z-index: 1; }
.mp-card__title { font-family: var(--ff-display); font-size: 1.35rem; color: var(--cream); position: relative; z-index: 1; }
.mp-card__emoji { position: absolute; right: 1.25rem; bottom: 0.75rem; font-size: 2.8rem; opacity: 0.45; transition: transform 0.35s, opacity 0.35s; }
.mp-card:hover .mp-card__emoji { transform: scale(1.2) rotate(-5deg); opacity: 0.7; }
.mp-card__items { padding: 0.5rem 1.5rem 1rem; }
.mp-card__items li { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.9rem; }
.mp-card__items li:last-child { border-bottom: none; }
.mp-card__items li span:first-child { color: var(--charcoal); font-weight: 500; }
.mp-card__items li span:last-child { color: var(--burgundy); font-weight: 700; }
.mp-card__link { display: block; padding: 0.85rem 1.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--saffron); border-top: 1px solid var(--cream-dark); transition: all 0.2s; text-align: right; }
.mp-card__link:hover { background: rgba(232,160,32,0.04); }

/* TIFFIN PROMO */
.tiffin-promo { padding: 6rem 0; position: relative; overflow: hidden; }
.tiffin-promo__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy-mid) 50%, var(--burgundy) 100%); }
.tiffin-promo__bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(232,160,32,0.08) 0%, transparent 60%); }
.tiffin-promo__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tiffin-promo__card { background: rgba(253,246,236,0.05); border: 1px solid rgba(232,160,32,0.14); border-radius: var(--radius-xl); padding: 2.5rem; backdrop-filter: blur(8px); }
.tiffin-promo__card-icon { font-size: 3rem; text-align: center; margin-bottom: 1rem; }
.tiffin-promo__card h3 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--cream); text-align: center; margin-bottom: 1.5rem; }
.tiffin-promo__card ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.tiffin-promo__card ul li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: rgba(253,246,236,0.82); }
.tiffin-promo__card ul li span { font-size: 1.1rem; flex-shrink: 0; }

/* CAT STRIP */
.cat-strip { background: var(--charcoal); padding: 6rem 0; position: relative; overflow: hidden; }
.cat-strip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(232,160,32,0.3), transparent); }
.cat-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cat-strip__feats { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.cat-strip__feat { display: flex; gap: 1rem; align-items: flex-start; }
.cat-strip__feat span { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
.cat-strip__feat strong { display: block; color: var(--saffron-light); font-size: 0.95rem; margin-bottom: 0.2rem; }
.cat-strip__feat p { font-size: 0.87rem; color: rgba(253,246,236,0.58); margin: 0; }
.cat-strip__box { background: rgba(253,246,236,0.04); border: 1px solid rgba(232,160,32,0.15); border-radius: var(--radius-xl); padding: 2.75rem; }
.cat-strip__box h3 { font-family: var(--ff-display); font-size: 1.7rem; color: var(--cream); margin-bottom: 1rem; }
.cat-strip__box p { color: rgba(253,246,236,0.65); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }

/* TESTIMONIALS */
.testimonials { background: var(--white); padding: 6rem 0; }
.testimonials__header { text-align: center; margin-bottom: 3.5rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.tcard { padding: 2.25rem; border-radius: var(--radius-lg); background: var(--cream); position: relative; transition: all var(--transition); overflow: hidden; }
.tcard::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--saffron); transition: height 0.5s ease; border-radius: 0 0 4px 0; }
.tcard:hover::before { height: 100%; }
.tcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tcard__stars { color: var(--saffron); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.06em; }
.tcard p { font-family: var(--ff-serif); font-size: 1rem; font-style: italic; color: var(--charcoal-soft); line-height: 1.75; margin-bottom: 1.25rem; }
.tcard__name { font-weight: 700; font-size: 0.88rem; color: var(--burgundy); }
.tcard__loc { font-size: 0.78rem; color: var(--text-muted); }

/* HOME CTA */
.home-cta { background: linear-gradient(135deg, var(--saffron) 0%, var(--gold-light) 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.home-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.home-cta h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 3rem); color: var(--burgundy-deep); margin-bottom: 0.75rem; position: relative; }
.home-cta p { color: var(--charcoal-soft); font-size: 1rem; max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.72; position: relative; }
.home-cta__number { font-family: var(--ff-display); font-size: 3rem; color: var(--burgundy-deep); display: block; letter-spacing: 0.04em; margin: 0.5rem auto 1rem; text-decoration: none; transition: opacity 0.2s; position: relative; }
.home-cta__number:hover { opacity: 0.75; }
.home-cta__address { font-size: 0.87rem; color: var(--charcoal-soft); margin-top: 1rem; position: relative; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .features__grid { grid-template-columns: repeat(2,1fr); }
  .menu-prev__grid { grid-template-columns: 1fr 1fr; }
  .tiffin-promo__inner { grid-template-columns: 1fr; gap: 3rem; }
  .cat-strip__inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .features__grid { grid-template-columns: 1fr; }
  .menu-prev__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
