/* ═══════════════════════════════════════════════════
   SINGH'S RECIPE® — SHARED BRAND STYLESHEET
   All pages import this file for consistency.
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─── */
:root {
  --void:       #070503;
  --ink:        #0C0A07;
  --charcoal:   #121009;
  --smoke:      #1A1610;
  --ash:        #252018;
  --iron:       #352E24;
  --ember:      #BE3A08;
  --gold:       #A87200;
  --gold-mid:   #BF8C1A;
  --gold-hi:    #D4A83C;
  --gold-pale:  #E8C870;
  --cream:      #F0E8D4;
  --warm:       #E4D8BE;
  --stone:      #B4A488;
  --muted:      #7A6E58;
  --dim:        #4A4235;
  --ghost:      #261E14;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
  --max:        1320px;
  --gutter:     64px;
  --nav-h:      80px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Film grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .38; mix-blend-mode: overlay;
}

/* ─── LAYOUT ─── */
.w { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── REVEAL ─── */
.up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}
.up.on { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.10s} .d2{transition-delay:.22s}
.d3{transition-delay:.34s} .d4{transition-delay:.46s}
.d5{transition-delay:.58s} .d6{transition-delay:.70s}

/* ─── TYPE ─── */
.label {
  font-family: var(--sans);
  font-size: 9px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-mid);
  display: inline-flex; align-items: center; gap: 16px;
}
.label::before {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.d-xl  { font-family: var(--serif); font-size: clamp(52px,7.5vw,108px); font-weight: 400; line-height: .93; letter-spacing: -.01em; }
.d-lg  { font-family: var(--serif); font-size: clamp(40px,5.5vw,80px);  font-weight: 400; line-height: .98; letter-spacing: -.01em; }
.d-md  { font-family: var(--serif); font-size: clamp(30px,3.8vw,56px);  font-weight: 400; line-height: 1.04; letter-spacing: -.01em; }
.d-sm  { font-family: var(--serif); font-size: clamp(22px,2.8vw,38px);  font-weight: 400; line-height: 1.1; }
.d-xs  { font-family: var(--serif); font-size: clamp(18px,2vw,26px);    font-weight: 400; line-height: 1.2; }
.i     { font-style: italic; }
.gold  { color: var(--gold-pale); }
.cream { color: var(--cream); }

/* ─── ORNAMENTS ─── */
.rule       { display: block; width: 100%; height: 1px; background: rgba(168,114,0,.12); }
.rule-gold  { display: block; width: 56px; height: 1px; background: var(--gold); margin: 0 auto; }
.diamond    { display: inline-block; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.divider    { display: flex; align-items: center; justify-content: center; gap: 20px; }
.divider-line { flex: 1; max-width: 88px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  transition: background .6s, border-color .6s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,10,7,.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: rgba(168,114,0,.09);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  color: var(--gold-hi); letter-spacing: .06em; white-space: nowrap;
}
.nav-logo sup { font-size: 10px; vertical-align: super; color: var(--gold); }
.nav-list { list-style: none; display: flex; align-items: center; gap: 38px; }
.nav-list a {
  font-size: 8.5px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--stone); opacity: .65;
  position: relative;
  transition: opacity .3s, color .3s;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.nav-list a:hover, .nav-list a.active { opacity: 1; color: var(--gold-pale); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all .3s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 100px) var(--gutter) 100px;
  background: var(--void);
  overflow: hidden;
  border-bottom: 1px solid rgba(168,114,0,.09);
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 100%, rgba(190,58,8,.20) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 50% 95%, rgba(168,114,0,.10) 0%, transparent 45%);
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,114,0,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,114,0,.038) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 0%, transparent 68%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.page-hero h1 { margin: 22px 0 20px; }
.page-hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 300; font-style: italic;
  color: var(--warm); opacity: .72;
  max-width: 560px; line-height: 1.78;
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--charcoal);
  border-top: 1px solid rgba(168,114,0,.08);
  border-bottom: 1px solid rgba(168,114,0,.08);
  padding: 16px 0; overflow: hidden;
}
.marquee-track { display: flex; animation: marquee 36s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 36px;
  font-size: 8.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--dim);
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .4; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PRODUCT PANELS ─── */
.panel {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--smoke);
}
.panel-4-5  { aspect-ratio: 4/5; }
.panel-16-10 { aspect-ratio: 16/10; }
.panel-3-4  { aspect-ratio: 3/4; }
.bg { position: absolute; inset: 0; transition: transform 1s cubic-bezier(.16,1,.3,1); }
.panel:hover .bg { transform: scale(1.05); }
.mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(168,114,0,.042) 1px,transparent 1px), linear-gradient(90deg,rgba(168,114,0,.042) 1px,transparent 1px);
  background-size: 38px 38px; opacity: 0; transition: opacity .6s;
}
.panel:hover .mesh { opacity: 1; }
.panel-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.panel-icon svg { width: 35%; max-width: 100px; opacity: .09; transition: opacity .7s, transform 1s cubic-bezier(.16,1,.3,1); }
.panel:hover .panel-icon svg { opacity: .15; transform: scale(1.06) rotate(2deg); }
.panel-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,5,3,.95) 0%, rgba(7,5,3,.5) 48%, transparent 100%); }
.panel-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 34px 36px; transition: padding .5s cubic-bezier(.16,1,.3,1); }
.panel:hover .panel-body { padding-bottom: 42px; }
.p-cat {
  display: inline-block;
  font-size: 7px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(168,114,0,.22);
  padding: 5px 12px; margin-bottom: 14px;
  transition: border-color .4s, background .4s;
}
.panel:hover .p-cat { border-color: rgba(168,114,0,.52); background: rgba(168,114,0,.07); }
.p-name { font-family: var(--serif); font-size: clamp(20px,2vw,28px); font-weight: 400; line-height: 1.15; color: var(--cream); margin-bottom: 12px; }
.p-name em { font-style: italic; color: var(--gold-pale); }
.p-desc { font-size: 11px; letter-spacing: .04em; line-height: 1.8; color: var(--muted); max-width: 300px; opacity: 0; transform: translateY(10px); transition: opacity .45s .08s, transform .45s .08s; }
.panel:hover .p-desc { opacity: 1; transform: translateY(0); }
.panel-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--ember)); transition: width .7s cubic-bezier(.16,1,.3,1); }
.panel:hover .panel-line { width: 100%; }
.panel-border { position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(168,114,0,0); transition: border-color .5s; }
.panel:hover .panel-border { border-color: rgba(168,114,0,.22); }

/* Product atmosphere backgrounds */
.p-tandoori .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(190,58,8,.55) 0%, transparent 56%), radial-gradient(ellipse 46% 30% at 50% 78%, rgba(228,118,18,.28) 0%, transparent 44%), linear-gradient(165deg,#110806 0%,#281008 44%,#170A04 100%); }
.p-hariyali .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(32,80,24,.60) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(66,120,22,.26) 0%, transparent 46%), linear-gradient(165deg,#0A1006 0%,#0C1E06 50%,#081206 100%); }
.p-shashlik .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(148,60,10,.54) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(196,106,26,.26) 0%, transparent 46%), linear-gradient(165deg,#120E06 0%,#261206 50%,#181006 100%); }
.p-butter  .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(165,68,18,.54) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(208,126,28,.24) 0%, transparent 46%), linear-gradient(165deg,#131008 0%,#241206 50%,#1A1008 100%); }
.p-jalfrezi .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(148,28,10,.55) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(186,76,18,.26) 0%, transparent 46%), linear-gradient(165deg,#120808 0%,#200C06 50%,#180808 100%); }
.p-kesar   .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(174,116,8,.52) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(218,158,16,.24) 0%, transparent 46%), linear-gradient(165deg,#141008 0%,#201806 50%,#181408 100%); }
.p-patiala .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(124,36,88,.50) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(162,56,106,.22) 0%, transparent 46%), linear-gradient(165deg,#11080E 0%,#1D0C14 50%,#150A10 100%); }
.p-tarka   .bg { background: radial-gradient(ellipse 72% 58% at 50% 85%, rgba(96,68,16,.52) 0%, transparent 56%), radial-gradient(ellipse 48% 32% at 50% 78%, rgba(146,108,24,.24) 0%, transparent 46%), linear-gradient(165deg,#0E0C08 0%,#1A1606 50%,#140E06 100%); }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 18px 56px;
  border: 1px solid rgba(168,114,0,.45);
  background: linear-gradient(135deg, rgba(168,114,0,.16), rgba(190,58,8,.09));
  color: var(--gold-pale);
  font-size: 8.5px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: border-color .5s, letter-spacing .5s cubic-bezier(.16,1,.3,1);
}
.btn-gold::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(168,114,0,.32),rgba(190,58,8,.22)); opacity: 0; transition: opacity .4s; }
.btn-gold:hover { border-color: var(--gold-hi); letter-spacing: .38em; }
.btn-gold:hover::before { opacity: 1; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 48px;
  border: 1px solid rgba(90,80,60,.35);
  color: var(--muted);
  font-size: 8.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  transition: color .4s, border-color .4s;
}
.btn-ghost:hover { color: var(--gold-hi); border-color: rgba(168,114,0,.32); }

/* ─── PHILOSOPHY QUOTE ─── */
.philosophy {
  padding: 128px 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(168,114,0,.07);
  border-bottom: 1px solid rgba(168,114,0,.07);
  text-align: center; position: relative; overflow: hidden;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(20px,2.8vw,36px);
  font-weight: 300; font-style: italic;
  color: var(--warm); opacity: .78;
  line-height: 1.6; max-width: 860px; margin: 0 auto;
}
.philosophy-quote strong { font-style: normal; font-weight: 600; color: var(--gold-pale); }
.philosophy-attr { margin-top: 32px; font-size: 9px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--dim); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(168,114,0,.09);
  padding: 96px 0 52px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(168,114,0,.08);
  margin-bottom: 44px;
}
.footer-name { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--gold-hi); letter-spacing: .04em; margin-bottom: 10px; }
.footer-name sup { font-size: 12px; vertical-align: super; color: var(--gold); }
.footer-slug { font-size: 8.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--dim); margin-bottom: 22px; }
.footer-blurb { font-size: 12px; line-height: 1.9; color: var(--muted); max-width: 280px; }
.footer-col-h { font-size: 8px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(168,114,0,.10); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 11.5px; letter-spacing: .05em; color: var(--muted); display: inline-flex; align-items: center; gap: 9px; transition: color .3s; }
.footer-links a::before { content: '—'; font-size: 8px; color: var(--dim); transition: color .3s; }
.footer-links a:hover { color: var(--gold-hi); }
.footer-links a:hover::before { color: var(--gold); }
.footer-base { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 11px; letter-spacing: .06em; color: var(--dim); }
.footer-copy strong { color: var(--muted); }
.footer-badge { font-size: 8px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--dim); border: 1px solid rgba(168,114,0,.11); padding: 10px 22px; }

/* ─── EMBERS ─── */
#embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ep { position: absolute; border-radius: 50%; opacity: 0; animation: ep-up linear infinite; }
@keyframes ep-up {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  8%   { opacity: .85; }
  88%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-90vh) translateX(var(--x)) scale(.1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 860px) {
  :root { --gutter: 28px; --nav-h: 68px; }
  .nav-list { display: none; }
  .nav-list.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: var(--nav-h);
    background: rgba(7,5,3,.97);
    backdrop-filter: blur(32px);
    align-items: center; justify-content: center;
    gap: 34px; z-index: 799;
  }
  .nav-list.open a { font-size: 13px; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-base { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  :root { --gutter: 20px; }
}
