/* Manakamana Pan Bhandar — Final Premium Homepage CSS
   Phase 7 final polish: controlled luxury palette, smooth story flow, responsive layout. */

:root {
  --deep-green: #062d22;
  --leaf-green: #0f5a3e;
  --leaf-bright: #52ad73;
  --forest: #031a15;
  --ivory: #fff6e4;
  --ivory-soft: #f5ead3;
  --gold: #c9a24d;
  --gold-bright: #ffd36d;
  --maroon: #8f1f2d;
  --ink: #13251d;
  --muted: #6c5d48;
  --card: rgba(255, 246, 228, 0.94);
  --max: 1180px;
  --wide: 1360px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;
  --shadow: 0 24px 70px rgba(3, 26, 21, 0.16);
  --shadow-heavy: 0 42px 110px rgba(0, 0, 0, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 0.96; font-family: Georgia, "Times New Roman", serif; font-weight: 800; letter-spacing: -0.04em; }
h1 { font-size: clamp(4rem, 7.4vw, 7.8rem); max-width: 760px; }
h2 { font-size: clamp(2.55rem, 5vw, 5.35rem); }
h3 { font-size: clamp(1.28rem, 1.8vw, 1.62rem); }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 42px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: 14px; top: 14px; z-index: 999; transform: translateY(-180%); padding: 10px 14px; background: var(--ivory); color: var(--forest); border-radius: var(--radius-pill); box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 26, 21, 0.86);
  color: var(--ivory);
  border-bottom: 1px solid rgba(201, 162, 77, 0.28);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-mark { width: 46px; height: 46px; display: inline-grid; place-items: center; border: 1px solid rgba(201, 162, 77, 0.55); border-radius: 50%; background: rgba(255, 246, 228, 0.08); }
.brand-mark img { width: 28px; height: 28px; }
.brand-text { display: grid; }
.brand-text strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; line-height: 1; }
.brand-text small { margin-top: 4px; color: rgba(255, 246, 228, 0.68); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 20px; color: rgba(255, 246, 228, 0.78); font-size: 0.91rem; font-weight: 800; }
.primary-nav a { position: relative; padding-block: 8px; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 220ms var(--ease); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }
.nav-toggle { display: none; }

/* Buttons */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18); }
.btn-primary { background: linear-gradient(135deg, #a32435, var(--maroon)); color: var(--ivory); border-color: rgba(201, 162, 77, 0.54); }
.btn-secondary { background: rgba(255, 246, 228, 0.08); color: var(--ivory); border-color: rgba(201, 162, 77, 0.52); }
.btn-utility { background: rgba(255, 246, 228, 0.88); color: var(--deep-green); border-color: rgba(201, 162, 77, 0.40); }
.light-secondary { background: rgba(6, 45, 34, 0.93); color: var(--ivory); }
.button-row, .contact-actions, .collection-actions, .more-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--deep-green); font-weight: 900; border-bottom: 1px solid rgba(201, 162, 77, 0.7); }
.mini-action { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 36px; padding: 8px 13px; border-radius: var(--radius-pill); border: 1px solid rgba(201,162,77,0.42); background: rgba(6,45,34,0.94); color: var(--ivory); font-size: 0.78rem; font-weight: 900; }

/* Shared sections */
.scene { position: relative; overflow: hidden; padding-block: clamp(76px, 9vw, 126px); }
.scene-opening { min-height: calc(100vh - 76px); display: grid; place-items: center; padding-block: 74px 104px; color: var(--ivory); background: radial-gradient(circle at 74% 18%, rgba(201, 162, 77, 0.22), transparent 23%), radial-gradient(circle at 8% 85%, rgba(143, 31, 45, 0.20), transparent 25%), linear-gradient(135deg, var(--forest), var(--deep-green) 55%, #04120f); }
.scene-opening::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,26,21,0.85), rgba(3,26,21,0.20) 56%, rgba(3,26,21,0.62)); pointer-events: none; }
.opening-ambient { position: absolute; inset: -20%; background-image: radial-gradient(circle at 20% 30%, rgba(255, 246, 228, 0.06) 0 1px, transparent 2px), radial-gradient(circle at 80% 68%, rgba(201, 162, 77, 0.08) 0 1px, transparent 2px); background-size: 76px 76px, 110px 110px; opacity: 0.7; }
.opening-grid { position: relative; z-index: 2; width: min(calc(100% - 42px), var(--wide)); display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center; gap: clamp(34px, 5vw, 88px); }
.opening-copy { max-width: 690px; }
.scene-kicker { width: fit-content; margin: 0 0 16px; padding: 8px 12px; border-radius: var(--radius-pill); border: 1px solid rgba(201,162,77,0.35); color: var(--gold-bright); background: rgba(201,162,77,0.10); font-size: 0.72rem; line-height: 1; font-weight: 900; text-transform: uppercase; letter-spacing: 0.18em; }
.scene-lead, .scene-heading p, .section-title p, .event-copy p, .visit-heading p, .more-copy p { max-width: 680px; color: inherit; opacity: 0.82; font-size: clamp(1rem, 1.4vw, 1.13rem); }
.scene-lead { margin-top: 24px; color: rgba(255,246,228,0.82); }
.brand-line { color: var(--gold-bright); font-weight: 900; letter-spacing: 0.06em; }
.scroll-cue { display: inline-flex; gap: 8px; margin-top: 24px; color: rgba(255,246,228,0.64); font-size: 0.9rem; }
.section-title { max-width: 820px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.section-title .scene-kicker { margin-inline: auto; }
.scene-heading { max-width: 560px; }
.scene-ivory { background: radial-gradient(circle at 12% 16%, rgba(201, 162, 77, 0.14), transparent 24%), var(--ivory); }
.scene-soft { background: linear-gradient(180deg, var(--ivory), var(--ivory-soft)); }
.scene-dark { color: var(--ivory); background: radial-gradient(circle at 82% 12%, rgba(201, 162, 77, 0.18), transparent 25%), linear-gradient(135deg, var(--deep-green), var(--forest)); }
.scene-grid, .finishing-grid, .more-grid, .event-grid, .visit-grid { display: grid; align-items: center; gap: clamp(34px, 6vw, 88px); }
.scene-grid { grid-template-columns: 0.76fr 1.24fr; }
.finishing-grid { grid-template-columns: 0.78fr 1.22fr; }

/* Golden story lines */
.golden-story-line { position: absolute; pointer-events: none; z-index: 1; }
.golden-story-line span { display: block; background: linear-gradient(180deg, rgba(201,162,77,0), var(--gold), rgba(201,162,77,0.08)); transform-origin: top; animation: storyLineDraw 1200ms var(--ease) both; }
.golden-story-line-opening { left: 50%; bottom: -48px; width: 2px; height: 130px; transform: translateX(-50%); z-index: 4; }
.golden-story-line-opening span, .bridge-story-line span, .product-story-line span, .more-story-line span, .event-story-line span { width: 100%; height: 100%; }
.bridge-story-line, .product-story-line, .more-story-line, .event-story-line { left: 50%; top: -2px; width: 2px; height: 120px; transform: translateX(-50%); opacity: 0.8; }
@keyframes storyLineDraw { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

/* Patta Table scene */
.patta-stage { position: relative; min-height: 690px; transform: translate3d(calc(var(--tilt-x, 0px) * .22), calc(var(--tilt-y, 0px) * .22), 0); transition: transform 260ms var(--ease); }
.patta-stage__frame { position: absolute; inset: 18px; border-radius: var(--radius-xl); border: 1px solid rgba(201,162,77,0.32); background: linear-gradient(135deg, rgba(255,246,228,0.06), rgba(255,246,228,0.01)); box-shadow: var(--shadow-heavy); }
.table-surface { position: absolute; inset: 18px; overflow: hidden; border-radius: 34px; background: radial-gradient(circle at 50% 50%, rgba(255,246,228,0.08), transparent 30%), linear-gradient(135deg, #102c22, #05150f 72%); }
.table-surface::before { content: ""; position: absolute; inset: 18px; border-radius: 28px; border: 1px solid rgba(201,162,77,0.12); pointer-events: none; }
.leaf-stack { position: absolute; left: 21%; top: 23%; width: 360px; height: 360px; z-index: 4; }
.patta-leaf { position: absolute; width: 178px; height: 292px; border-radius: 92% 0 92% 0; background: linear-gradient(135deg, #71c883, var(--leaf-green) 68%); box-shadow: inset 18px 6px 0 rgba(255,255,255,0.14), 0 26px 50px rgba(0,0,0,0.24); transform-origin: 50% 80%; }
.patta-leaf::after { content: ""; position: absolute; left: 50%; top: 18px; width: 2px; height: 230px; background: linear-gradient(180deg, rgba(255,246,228,0.65), transparent); transform: translateX(-50%) rotate(-8deg); border-radius: 10px; }
.leaf-one { transform: rotate(36deg); left: 88px; top: 44px; }
.leaf-two { transform: rotate(10deg); left: 44px; top: 0; opacity: .92; }
.leaf-three { transform: rotate(62deg); left: 150px; top: 28px; opacity: .9; }
.leaf-four { transform: rotate(-12deg); left: 0; top: 76px; opacity: .86; }
.leaf-vein-line { position: absolute; width: 310px; height: 2px; left: 60px; top: 220px; background: linear-gradient(90deg, rgba(201,162,77,0), rgba(201,162,77,.80), rgba(201,162,77,0)); transform: rotate(-22deg); }
.finished-pan { position: absolute; right: 18%; bottom: 20%; width: 176px; height: 176px; z-index: 5; filter: drop-shadow(0 28px 30px rgba(0,0,0,0.34)); }
.finished-pan__leaf, .finished-pan__fold { position: absolute; inset: 25px; border-radius: 88% 0 88% 0; transform: rotate(45deg); background: linear-gradient(135deg, #65bc78, var(--leaf-green)); }
.finished-pan__fold { inset: 44px 38px 31px 39px; background: linear-gradient(135deg, rgba(255,246,228,0.13), rgba(15,90,62,0.22)); }
.finished-pan__silver { position: absolute; width: 58px; height: 38px; left: 63px; top: 58px; transform: rotate(20deg); border-radius: 50%; background: linear-gradient(135deg, #fff, #cfcac0); opacity: .86; }
.finished-pan__cherry { position: absolute; width: 27px; height: 27px; right: 49px; top: 51px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #ffb1a9, #b20b22 64%); border: 4px solid var(--ivory); }
.finished-pan__crumb { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-bright); }
.crumb-one { left: 52px; top: 92px; } .crumb-two { right: 62px; top: 103px; background: #da4451; } .crumb-three { left: 83px; bottom: 46px; background: #f5ead3; }
.ingredient-bowl { position: absolute; z-index: 3; width: 110px; height: 110px; border-radius: 50%; border: 9px solid rgba(201,162,77,0.9); background: rgba(255,246,228,0.94); box-shadow: 0 18px 34px rgba(0,0,0,0.24), inset 0 0 0 8px rgba(3,26,21,0.10); display: grid; place-items: center; }
.ingredient-bowl b { width: 62px; height: 62px; border-radius: 50%; background: var(--bowl-fill); box-shadow: inset 0 0 18px rgba(0,0,0,0.16); }
.ingredient-bowl span { position: absolute; left: 50%; top: calc(100% + 8px); transform: translateX(-50%); white-space: nowrap; padding: 5px 9px; border: 1px solid rgba(201,162,77,0.35); border-radius: var(--radius-pill); background: rgba(3,26,21,0.68); color: rgba(255,246,228,0.82); font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.bowl-gulkand { left: 11%; top: 11%; --bowl-fill: radial-gradient(circle, #cf4b58, #7b1726 70%); }
.bowl-saunf { right: 12%; top: 13%; --bowl-fill: repeating-radial-gradient(circle, #c8e379 0 4px, #6f9f3d 5px 9px); }
.bowl-coconut { left: 8%; bottom: 17%; --bowl-fill: repeating-linear-gradient(36deg, #fff7e7 0 4px, #d9c9ab 5px 7px); }
.bowl-cherry { right: 7%; bottom: 12%; --bowl-fill: radial-gradient(circle at 34% 28%, #ffb7a9, #b50827 70%); }
.bowl-elaichi { left: 41%; top: 6%; --bowl-fill: repeating-linear-gradient(120deg, #d8cc7c 0 9px, #86824a 10px 16px); }
.bowl-mukhwas { right: 31%; top: 20%; --bowl-fill: repeating-conic-gradient(#d63f49 0 14deg, #ffd36d 15deg 28deg, #3ea06b 29deg 45deg); }
.bowl-tutti { left: 34%; bottom: 7%; --bowl-fill: repeating-conic-gradient(#df3f53 0 18deg, #51b86b 19deg 36deg, #ffd36d 37deg 54deg, #f48cc3 55deg 72deg); }
.bowl-dryfruit { right: 35%; bottom: 5%; --bowl-fill: repeating-radial-gradient(circle, #d7a461 0 6px, #7b4d24 7px 13px); }
.loose-ingredient { position: absolute; z-index: 2; }
.loose-mishri { left: 50%; top: 18%; width: 80px; height: 60px; }
.loose-mishri i { position: absolute; width: 13px; height: 13px; border-radius: 3px; background: rgba(255,246,228,0.88); transform: rotate(45deg); box-shadow: 0 10px 20px rgba(0,0,0,0.16); }
.loose-mishri i:nth-child(1) { left: 0; top: 18px; } .loose-mishri i:nth-child(2) { left: 28px; top: 2px; } .loose-mishri i:nth-child(3) { left: 42px; top: 36px; } .loose-mishri i:nth-child(4) { right: 4px; top: 18px; }
.loose-supari { right: 21%; top: 42%; width: 82px; height: 70px; }
.loose-supari i { position: absolute; width: 34px; height: 18px; border-radius: 999px; background: linear-gradient(135deg, #b57a43, #5e2d18); transform: rotate(28deg); box-shadow: 0 10px 18px rgba(0,0,0,0.20); }
.loose-supari i:nth-child(1) { left: 8px; top: 4px; } .loose-supari i:nth-child(2) { left: 34px; top: 25px; transform: rotate(-20deg); } .loose-supari i:nth-child(3) { left: 2px; top: 39px; transform: rotate(14deg); }
.gold-orbit { position: absolute; border: 1px solid rgba(201,162,77,0.18); border-radius: 50%; z-index: 1; }
.orbit-one { width: 560px; height: 560px; left: 13%; top: 5%; } .orbit-two { width: 390px; height: 390px; right: 6%; bottom: 7%; } .orbit-three { width: 230px; height: 230px; left: 2%; bottom: 4%; }
.patta-caption { position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%); display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; z-index: 2; }
.patta-caption span { padding: 9px 13px; border-radius: var(--radius-pill); background: rgba(255,246,228,0.10); border: 1px solid rgba(201,162,77,0.35); color: rgba(255,246,228,0.78); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }

/* Story and craft */
.scene-bridge { border-top: 1px solid rgba(201,162,77,.22); }
.story-steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.story-steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,77,.72), transparent); }
.story-step { position: relative; z-index: 1; min-height: 184px; padding: 22px 18px; border: 1px solid rgba(201,162,77,.28); border-radius: 28px; background: rgba(255,246,228,.84); box-shadow: 0 18px 42px rgba(3,26,21,.10); display: grid; align-content: start; justify-items: center; text-align: center; }
.story-step span { color: var(--gold); font-weight: 900; font-size: .78rem; letter-spacing: .14em; }
.story-icon { position: relative; width: 58px; height: 58px; margin: 16px 0; border-radius: 50%; border: 1px solid rgba(201,162,77,.42); background: var(--deep-green); box-shadow: 0 14px 30px rgba(3,26,21,.18); }
.icon-patta::after, .icon-pan::after { content: ""; position: absolute; width: 30px; height: 44px; left: 15px; top: 8px; border-radius: 90% 0 90% 0; background: linear-gradient(135deg, #76ce86, var(--leaf-green)); transform: rotate(43deg); }
.icon-filling::after { content: ""; position: absolute; inset: 15px; border-radius: 50%; background: repeating-conic-gradient(#d63f49 0 18deg, #ffd36d 19deg 38deg, #3ea06b 39deg 58deg); }
.icon-taste::after { content: ""; position: absolute; left: 16px; top: 15px; width: 27px; height: 27px; border-radius: 50%; border: 7px solid var(--gold); background: #8f1f2d; }
.icon-pan::after { transform: rotate(43deg) scale(.9); }
.story-step strong { font-family: Georgia, "Times New Roman", serif; color: var(--deep-green); font-size: 1.22rem; }
.story-step small { color: var(--muted); font-weight: 700; }
.crafted-layout { position: relative; }
.craft-panel { display: grid; grid-template-columns: 1fr minmax(290px, .36fr); gap: 24px; align-items: stretch; }
.craft-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.premium-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid rgba(201,162,77,0.25); border-radius: var(--radius-lg); background: var(--card); box-shadow: 0 18px 42px rgba(3,26,21,0.10); transition: transform 240ms var(--ease), border-color 240ms var(--ease); }
.premium-card:hover { transform: translateY(-6px); border-color: rgba(201,162,77,.55); }
.card-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(201,162,77,0.44); border-radius: 50%; color: var(--gold); font-weight: 900; margin-bottom: 22px; }
.premium-card p { color: var(--muted); font-size: .95rem; }
.whatsapp-preview { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid rgba(201,162,77,.32); background: linear-gradient(135deg, var(--deep-green), var(--forest)); color: var(--ivory); padding: 28px; box-shadow: var(--shadow); display: grid; align-content: center; gap: 14px; }
.whatsapp-preview::before { content: ""; position: absolute; width: 210px; height: 210px; border: 1px solid rgba(201,162,77,.20); border-radius: 50%; right: -80px; top: -80px; }
.whatsapp-preview strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.whatsapp-preview span { color: rgba(255,246,228,.74); }
.micro-label { margin: 0 0 5px; color: var(--gold); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.18em; }

/* Signature cards */
.signature-section { isolation: isolate; padding-block: clamp(78px, 10vw, 132px); }
.signature-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 16% 18%, rgba(201,162,77,.22), transparent 24%), radial-gradient(circle at 86% 70%, rgba(143,31,45,.22), transparent 28%), linear-gradient(180deg, rgba(3,26,21,0), rgba(3,26,21,.35)); }
.signature-section > .container { position: relative; z-index: 2; }
.signature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); margin-top: 44px; }
.signature-card { overflow: hidden; border-radius: 30px; border: 1px solid rgba(201,162,77,.30); background: linear-gradient(180deg, rgba(255,246,228,.98), rgba(255,246,228,.90)); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.23); transition: transform 300ms var(--ease), box-shadow 300ms var(--ease); }
.signature-card:hover { transform: translateY(-8px); box-shadow: 0 36px 92px rgba(0,0,0,.30); }
.signature-media { position: relative; height: 214px; overflow: hidden; background: radial-gradient(circle at 50% 54%, rgba(201,162,77,.44), transparent 30%), radial-gradient(circle at 22% 20%, rgba(143,31,45,.22), transparent 22%), linear-gradient(135deg, #0b3b2c, #031a15); }
.signature-media::before { content: ""; position: absolute; inset: 18px; border-radius: 24px; border: 1px solid rgba(201,162,77,.20); }
.pan-art { position: absolute; left: 50%; top: 53%; width: 136px; height: 136px; transform: translate(-50%, -50%) rotate(45deg); border-radius: 92% 0 92% 0; background: linear-gradient(135deg, #5bb87a, var(--leaf-green) 72%); box-shadow: inset 14px 4px 0 rgba(255,255,255,.12), 0 24px 48px rgba(0,0,0,.32); }
.pan-art::before { content: ""; position: absolute; left: 26px; top: 25px; width: 72px; height: 72px; border-radius: 50%; transform: rotate(-45deg); background: var(--pan-topping, repeating-conic-gradient(#d63f49 0 14deg, #ffd36d 15deg 28deg, #3ea06b 29deg 45deg)); border: 9px solid rgba(255,246,228,.82); }
.pan-art::after { content: ""; position: absolute; right: 24px; top: 28px; width: 22px; height: 22px; transform: rotate(-45deg); border-radius: 50%; background: var(--pan-accent, #b50827); border: 4px solid var(--ivory); }
.pan-fire { --pan-topping: radial-gradient(circle, #ffb04c, #d34718 70%); --pan-accent: #ff9f1c; }
.pan-chocolate { --pan-topping: repeating-linear-gradient(135deg, #6b3d28 0 10px, #3b1f12 11px 20px); --pan-accent: #ffd36d; }
.pan-cold { --pan-topping: radial-gradient(circle, #d6fff7, #52ad73 70%); --pan-accent: #fff6e4; }
.pan-special { --pan-topping: linear-gradient(135deg, #fff, #c9a24d); --pan-accent: #8f1f2d; }
.pan-custom { --pan-topping: repeating-conic-gradient(#8f1f2d 0 18deg, #fff6e4 19deg 36deg, #0f5a3e 37deg 54deg); --pan-accent: #ffd36d; }
.signature-body { padding: 22px; display: grid; gap: 12px; }
.signature-body h3 { color: var(--deep-green); }
.signature-body p { margin: 0; color: var(--muted); font-size: .95rem; }
.collection-actions { justify-content: center; margin-top: 34px; }
.phase-note { text-align: center; color: rgba(255,246,228,.72); margin-top: 22px; }

/* Ingredients */
.finishing-section { background: radial-gradient(circle at 18% 18%, rgba(201,162,77,.14), transparent 24%), linear-gradient(180deg, var(--ivory), var(--ivory-soft)); }
.ingredient-trail { position: absolute; inset: 0; pointer-events: none; opacity: .44; background-image: radial-gradient(circle at 18% 30%, rgba(143,31,45,.16) 0 6px, transparent 7px), radial-gradient(circle at 78% 68%, rgba(201,162,77,.24) 0 5px, transparent 6px), radial-gradient(circle at 55% 24%, rgba(15,90,62,.12) 0 7px, transparent 8px); }
.ingredient-gallery { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 18px; }
.ingredient-card { position: relative; min-height: 156px; padding: 22px 16px; border: 1px solid rgba(201,162,77,.28); border-radius: 28px; background: rgba(255,246,228,.86); box-shadow: 0 18px 42px rgba(3,26,21,.09); display: grid; place-items: center; text-align: center; gap: 12px; }
.ingredient-card i { width: 74px; height: 74px; border-radius: 50%; border: 8px solid rgba(201,162,77,.78); background: var(--ingredient-art); box-shadow: inset 0 0 18px rgba(0,0,0,.14); }
.ingredient-card strong { color: var(--deep-green); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.ingredient-gulkand { --ingredient-art: radial-gradient(circle, #d85c67, #8f1f2d 68%); }
.ingredient-saunf { --ingredient-art: repeating-radial-gradient(circle, #c5dd76 0 4px, #6a9842 5px 9px); }
.ingredient-coconut { --ingredient-art: repeating-linear-gradient(36deg, #fff9e9 0 4px, #d8c5a2 5px 7px); }
.ingredient-cherry { --ingredient-art: radial-gradient(circle at 30% 28%, #ffb7a9, #b70827 68%); }
.ingredient-elaichi { --ingredient-art: repeating-linear-gradient(120deg, #d8cc7c 0 9px, #86824a 10px 16px); }
.ingredient-dry { --ingredient-art: repeating-radial-gradient(circle, #d9a65c 0 6px, #8a5426 7px 13px); }
.ingredient-choco { --ingredient-art: repeating-linear-gradient(135deg, #6b3d28 0 10px, #402113 11px 20px); }
.ingredient-mukhwas { --ingredient-art: repeating-conic-gradient(#d63f49 0 13deg, #ffd36d 14deg 28deg, #3ea06b 29deg 45deg); }

/* More than pan */
.more-section { padding-block: clamp(82px, 10vw, 130px); background: radial-gradient(circle at 12% 18%, rgba(201,162,77,.15), transparent 24%), radial-gradient(circle at 88% 78%, rgba(15,90,62,.10), transparent 24%), linear-gradient(180deg, var(--ivory-soft), var(--ivory)); }
.more-grid { grid-template-columns: 0.78fr 1.22fr; }
.more-copy { max-width: 510px; }
.more-showcase { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.more-showcase::before { content: ""; position: absolute; inset: 10% 12%; border-radius: 999px; border: 1px solid rgba(201,162,77,.22); transform: rotate(-7deg); pointer-events: none; }
.shop-card { position: relative; overflow: hidden; min-height: 180px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 24px; border-radius: 30px; border: 1px solid rgba(201,162,77,.30); background: linear-gradient(135deg, rgba(255,246,228,.95), rgba(255,246,228,.80)), radial-gradient(circle at 86% 14%, rgba(15,90,62,.10), transparent 34%); box-shadow: 0 22px 58px rgba(3,26,21,.11); transition: transform 280ms var(--ease), border-color 280ms var(--ease); }
.shop-card:hover { transform: translateY(-7px); border-color: rgba(201,162,77,.58); }
.shop-card h3 { margin: 0 0 8px; color: var(--deep-green); }
.shop-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.shop-card .mini-action { grid-column: 2; margin-top: 10px; }
.shop-icon { position: relative; width: 72px; height: 72px; border-radius: 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(201,162,77,.52); background: linear-gradient(135deg, var(--deep-green), var(--forest)); box-shadow: 0 16px 34px rgba(3,26,21,.22); }
.shop-icon i, .shop-icon::before, .shop-icon::after { content: ""; position: absolute; display: block; }
.shop-card-fresheners .shop-icon i { width: 38px; height: 38px; border-radius: 50%; border: 7px solid rgba(255,246,228,.92); background: repeating-conic-gradient(#d63f49 0 18deg, #ffd36d 19deg 36deg, #3ea06b 37deg 54deg); }
.shop-card-snacks .shop-icon i { width: 18px; height: 44px; border-radius: 6px; background: linear-gradient(180deg, #8f1f2d, #c9a24d); transform: rotate(-18deg); }
.shop-card-snacks .shop-icon::before { width: 20px; height: 46px; border-radius: 6px; background: linear-gradient(180deg, #fff6e4, #8f1f2d); transform: translateX(16px) rotate(16deg); }
.shop-card-drinks .shop-icon i { width: 26px; height: 48px; border-radius: 9px 9px 13px 13px; border: 3px solid rgba(255,246,228,.9); background: linear-gradient(180deg, rgba(255,246,228,.28), rgba(144,216,208,.42)); }
.shop-card-essentials .shop-icon i { width: 38px; height: 42px; border-radius: 8px; border: 3px solid rgba(255,246,228,.92); background: linear-gradient(180deg, rgba(201,162,77,.38), rgba(255,246,228,.10)); }

/* Celebrations */
.scene-event { color: var(--ivory); background: radial-gradient(circle at 20% 20%, rgba(143,31,45,.24), transparent 24%), linear-gradient(135deg, var(--forest), #07291f 50%, #04120f); }
.celebration-ambient { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 72% 18%, rgba(255,211,109,.16), transparent 20%), radial-gradient(circle at 8% 78%, rgba(143,31,45,.14), transparent 24%); }
.event-grid { grid-template-columns: 0.95fr 1.05fr; }
.event-stage { position: relative; min-height: 500px; border-radius: var(--radius-xl); border: 1px solid rgba(201,162,77,.36); background: radial-gradient(circle at 50% 30%, rgba(201,162,77,.22), transparent 28%), linear-gradient(135deg, #0b3528, #031a15); box-shadow: var(--shadow-heavy); overflow: hidden; }
.event-stage::before { content: ""; position: absolute; inset: 22px; border-radius: 34px; border: 1px solid rgba(201,162,77,.14); }
.event-arch { position: absolute; left: 50%; top: 44px; width: 72%; height: 230px; transform: translateX(-50%); border: 2px solid rgba(201,162,77,.48); border-bottom: 0; border-radius: 999px 999px 0 0; box-shadow: 0 -20px 90px rgba(201,162,77,.16); }
.event-lights { position: absolute; left: 18%; right: 18%; top: 64px; display: flex; justify-content: space-between; }
.event-lights span { width: 12px; height: 12px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 22px rgba(255,211,109,.78); }
.stall-sign { position: absolute; left: 50%; top: 118px; transform: translateX(-50%); padding: 16px 24px; border-radius: 999px; border: 1px solid rgba(201,162,77,.55); background: rgba(3,26,21,.72); color: var(--gold-bright); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 800; box-shadow: 0 20px 60px rgba(0,0,0,.26); white-space: nowrap; }
.stall-counter { position: absolute; left: 10%; right: 10%; bottom: 76px; height: 150px; border-radius: 30px; border: 1px solid rgba(201,162,77,.40); background: linear-gradient(180deg, rgba(255,246,228,.10), rgba(255,246,228,.04)), linear-gradient(135deg, #5b321e, #1f120d); box-shadow: 0 28px 70px rgba(0,0,0,.36); }
.stall-counter::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 38px; border-radius: 30px 30px 12px 12px; background: linear-gradient(90deg, rgba(201,162,77,.48), rgba(255,246,228,.16), rgba(201,162,77,.48)); }
.stall-bowl, .stall-leaf, .stall-pan { position: absolute; display: block; }
.stall-bowl { bottom: 38px; width: 58px; height: 58px; border-radius: 50%; border: 7px solid rgba(201,162,77,.86); background: var(--bowl-bg, #8f1f2d); box-shadow: 0 14px 26px rgba(0,0,0,.24); }
.bowl-one { left: 15%; --bowl-bg: radial-gradient(circle, #8f1f2d, #4e0f18); } .bowl-two { left: 36%; --bowl-bg: repeating-radial-gradient(circle, #c5dd76 0 4px, #6a9842 5px 9px); } .bowl-three { right: 16%; --bowl-bg: repeating-conic-gradient(#d63f49 0 14deg, #ffd36d 15deg 28deg, #3ea06b 29deg 45deg); }
.stall-leaf { width: 70px; height: 110px; border-radius: 90% 0 90% 0; background: linear-gradient(135deg, #69ba7e, var(--leaf-green) 72%); box-shadow: inset 11px 5px 0 rgba(255,255,255,.12); transform: rotate(42deg); }
.leaf-a { left: 57%; bottom: 42px; } .leaf-b { left: 50%; bottom: 34px; transform: rotate(22deg); opacity: .88; }
.stall-pan { right: 31%; bottom: 48px; width: 78px; height: 78px; border-radius: 90% 0 90% 0; transform: rotate(45deg); background: linear-gradient(135deg, #5bb87a, var(--leaf-green) 72%); box-shadow: 0 14px 28px rgba(0,0,0,.22); }
.stall-pan::after { content: ""; position: absolute; right: 14px; top: 15px; width: 16px; height: 16px; border-radius: 50%; background: var(--maroon); border: 3px solid var(--ivory); }
.event-ribbon { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); max-width: calc(100% - 40px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 10px 16px; border-radius: var(--radius-pill); background: rgba(255,246,228,.08); color: rgba(255,246,228,.78); border: 1px solid rgba(201,162,77,.28); font-weight: 800; font-size: .84rem; letter-spacing: .05em; }
.event-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.event-tags span { display: inline-flex; padding: 11px 15px; border-radius: var(--radius-pill); border: 1px solid rgba(201,162,77,.38); background: rgba(255,246,228,.08); color: var(--ivory); font-weight: 800; }
.event-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 26px 0; }
.event-service-grid span { padding: 14px 15px; border-radius: 18px; border: 1px solid rgba(201,162,77,.28); background: rgba(255,246,228,.07); color: var(--gold-bright); font-weight: 900; }
.event-inquiry-card { margin: 0 0 28px; padding: 18px 20px; border-radius: 22px; border: 1px solid rgba(201,162,77,.32); background: rgba(255,246,228,.08); box-shadow: 0 22px 55px rgba(0,0,0,.16); }
.event-inquiry-card strong, .event-inquiry-card small { display: block; } .event-inquiry-card small { color: rgba(255,246,228,.68); margin-top: 6px; }

/* Visit and map */
.scene-visit { background: radial-gradient(circle at 18% 12%, rgba(201,162,77,.15), transparent 22%), radial-gradient(circle at 88% 84%, rgba(15,90,62,.10), transparent 22%), linear-gradient(180deg, var(--ivory), var(--ivory-soft)); }
.visit-route-line { position: absolute; left: 50%; top: -42px; width: 2px; height: 130px; transform: translateX(-50%); background: linear-gradient(180deg, rgba(201,162,77,0), rgba(201,162,77,.92), rgba(201,162,77,.05)); box-shadow: 0 0 24px rgba(201,162,77,.28); pointer-events: none; }
.visit-route-line::after { content: ""; position: absolute; left: 50%; bottom: 14px; width: 18px; height: 18px; transform: translateX(-50%) rotate(45deg); border: 2px solid var(--gold); border-radius: 50% 50% 50% 0; background: var(--ivory); }
.visit-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.visit-heading .scene-kicker { margin-inline: auto; }
.visit-grid { grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr); align-items: stretch; }
.visit-panel { display: grid; gap: 16px; }
.location-card, .contact-mini-card { border: 1px solid rgba(201,162,77,.26); background: rgba(255,246,228,.86); box-shadow: 0 18px 42px rgba(3,26,21,.09); backdrop-filter: blur(12px); }
.location-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 22px; border-radius: var(--radius-lg); }
.primary-location-card { background: linear-gradient(135deg, rgba(6,45,34,.96), rgba(3,26,21,.94)); color: var(--ivory); border-color: rgba(201,162,77,.44); }
.location-badge { width: 48px; height: 48px; display: inline-grid; place-items: center; border-radius: 50%; border: 1px solid rgba(201,162,77,.50); background: rgba(201,162,77,.14); font-size: 1.2rem; }
.location-card h3 { margin: 0 0 4px; font-size: 1.25rem; }
.location-card p:last-child { margin-bottom: 0; }
.primary-location-card p:not(.micro-label) { color: rgba(255,246,228,.78); }
.contact-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-mini-card { min-width: 0; padding: 18px; border-radius: var(--radius-md); }
.contact-mini-card span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.contact-mini-card strong { display: block; color: var(--deep-green); font-size: .98rem; overflow-wrap: anywhere; }
.refined-contact-actions { margin-top: 2px; align-items: stretch; }
.refined-contact-actions .btn { min-width: 150px; }
.map-card { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius-xl); border: 1px solid rgba(201,162,77,.34); background: var(--ivory-soft); box-shadow: var(--shadow); }
.live-map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.82) contrast(1.03); }
.map-overlay-card { position: absolute; left: 22px; right: 22px; bottom: 22px; display: grid; gap: 4px; max-width: 360px; padding: 16px 18px; border: 1px solid rgba(201,162,77,.45); border-radius: 22px; background: rgba(3,26,21,.88); color: var(--ivory); box-shadow: 0 20px 46px rgba(0,0,0,.24); backdrop-filter: blur(16px); }
.map-overlay-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; } .map-overlay-card span { color: rgba(255,246,228,.74); font-size: .9rem; }
.site-footer { background: var(--forest); color: var(--ivory); border-top: 1px solid rgba(201,162,77,.25); }
.footer-inner { min-height: 94px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-inner a { color: var(--gold-bright); font-weight: 900; }

/* Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1180px) {
  .header-cta { display: none; }
  .primary-nav { gap: 14px; }
  .opening-grid { grid-template-columns: 1fr; }
  .opening-copy { max-width: 780px; }
  .patta-stage { min-height: 620px; }
  .craft-panel, .scene-grid, .finishing-grid, .more-grid, .event-grid, .visit-grid { grid-template-columns: 1fr; }
  .craft-steps { grid-template-columns: repeat(2, 1fr); }
  .signature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .more-copy { max-width: 780px; }
  .map-card { min-height: 460px; }
}

@media (max-width: 880px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; }
  .brand { min-width: auto; }
  .brand-text strong { max-width: 170px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-toggle { margin-left: auto; display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(201,162,77,.45); border-radius: 50%; background: transparent; color: var(--ivory); }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: currentColor; border-radius: 999px; }
  .primary-nav { position: fixed; inset: 82px 14px auto 14px; display: grid; gap: 0; padding: 14px; border-radius: 24px; background: rgba(3,26,21,.97); border: 1px solid rgba(201,162,77,.28); transform: translateY(-16px); opacity: 0; pointer-events: none; transition: 220ms var(--ease); }
  body.nav-open .primary-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 15px 10px; border-bottom: 1px solid rgba(255,246,228,.08); }
  .scene { padding-block: 64px; }
  .scene-opening { min-height: auto; padding-block: 54px 78px; }
  h1 { font-size: clamp(3.25rem, 14vw, 5.2rem); }
  h2 { font-size: clamp(2.45rem, 10vw, 4rem); }
  .opening-copy { order: 2; }
  .patta-stage { order: 1; min-height: 540px; }
  .patta-stage__frame { inset: 0; }
  .table-surface { border-radius: 32px; }
  .leaf-stack { left: 10%; top: 19%; transform: scale(.86); transform-origin: left top; }
  .ingredient-bowl { width: 92px; height: 92px; border-width: 7px; }
  .ingredient-bowl b { width: 52px; height: 52px; }
  .bowl-elaichi, .bowl-dryfruit { display: none; }
  .finished-pan { right: 10%; bottom: 16%; transform: scale(.9); transform-origin: right bottom; }
  .patta-caption { position: relative; bottom: auto; margin-top: 14px; }
  .story-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-steps::before { display: none; }
  .more-showcase, .ingredient-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-stage { min-height: 420px; }
}

@media (max-width: 620px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand-text strong { font-size: .94rem; max-width: 154px; }
  .button-row, .contact-actions, .collection-actions, .more-actions { align-items: stretch; }
  .btn { width: 100%; }
  .opening-grid { width: min(calc(100% - 28px), var(--wide)); }
  .patta-stage { min-height: 450px; }
  .leaf-stack { transform: scale(.65); }
  .ingredient-bowl { width: 78px; height: 78px; }
  .ingredient-bowl span { display: none; }
  .bowl-coconut { left: 5%; bottom: 16%; }
  .bowl-cherry { right: 5%; bottom: 10%; }
  .bowl-mukhwas { right: 25%; top: 19%; }
  .bowl-tutti { left: 34%; bottom: 4%; }
  .loose-mishri, .loose-supari, .orbit-one, .orbit-two, .orbit-three { display: none; }
  .finished-pan { width: 140px; height: 140px; }
  .patta-caption span { font-size: .62rem; }
  .story-steps, .craft-steps, .signature-grid, .more-showcase, .ingredient-gallery { grid-template-columns: 1fr; }
  .premium-card, .shop-card { padding: 22px; }
  .signature-media { height: 190px; }
  .ingredient-card { min-height: 140px; }
  .shop-card { min-height: auto; grid-template-columns: 1fr; }
  .shop-card .mini-action { grid-column: 1; }
  .event-stage { min-height: 350px; border-radius: 28px; }
  .event-arch { width: 84%; height: 190px; }
  .event-lights { left: 13%; right: 13%; }
  .stall-sign { top: 102px; padding: 12px 17px; }
  .stall-counter { left: 7%; right: 7%; height: 122px; bottom: 64px; }
  .stall-bowl { width: 46px; height: 46px; border-width: 6px; }
  .stall-leaf { width: 54px; height: 86px; }
  .stall-pan { width: 60px; height: 60px; right: 26%; }
  .event-service-grid, .contact-detail-grid { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; padding: 20px; }
  .visit-heading { text-align: left; margin-bottom: 28px; }
  .visit-heading .scene-kicker { margin-inline: 0; }
  .map-card { min-height: 360px; border-radius: 30px; }
  .map-overlay-card { left: 14px; right: 14px; bottom: 14px; }
  .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 22px; }
}
