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

/* =========================================================
   R1 PREMIUM VISUAL FOUNDATION + IMAGE-READY SYSTEM
   Purpose: replace flat CSS-food illustration feel with image-first
   premium slots that can be replaced later with real photos.
   ========================================================= */
:root {
  --r1-panel: rgba(255, 246, 228, 0.965);
  --r1-line: rgba(201, 162, 77, 0.34);
  --r1-line-strong: rgba(201, 162, 77, 0.72);
  --r1-photo-shadow: 0 34px 90px rgba(0,0,0,0.34);
  --r1-soft-shadow: 0 18px 55px rgba(3, 26, 21, 0.13);
  --r1-texture: radial-gradient(circle at 18% 12%, rgba(201,162,77,.13), transparent 26%), radial-gradient(circle at 88% 22%, rgba(15,90,62,.08), transparent 28%);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(201,162,77,.08), transparent 25%),
    linear-gradient(180deg, #fff8ea, #f6ead0);
}

.container { width: min(calc(100% - 52px), var(--max)); }
.scene { padding-block: clamp(88px, 10vw, 138px); }
.scene-ivory { background: var(--r1-texture), linear-gradient(180deg, #fff8eb, #f5e8cc); }
.scene-soft { background: var(--r1-texture), linear-gradient(180deg, #fff7e8, #f1e3c7); }
.scene-dark { background: radial-gradient(circle at 16% 20%, rgba(201,162,77,.16), transparent 26%), radial-gradient(circle at 84% 72%, rgba(143,31,45,.18), transparent 28%), linear-gradient(135deg, #083426, #031a15 72%); }

/* Media card foundation */
.image-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--r1-line);
  background: linear-gradient(135deg, rgba(255,246,228,.09), rgba(255,246,228,.015));
  box-shadow: var(--r1-photo-shadow);
  isolation: isolate;
}
.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,26,21,0), rgba(3,26,21,.24)),
    radial-gradient(circle at 18% 12%, rgba(255,246,228,.16), transparent 20%);
  mix-blend-mode: soft-light;
}
.image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  filter: saturate(1.02) contrast(1.03);
}
.image-slot figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 4;
  max-width: min(420px, calc(100% - 36px));
  padding: 8px 12px;
  border: 1px solid rgba(201,162,77,.44);
  border-radius: var(--radius-pill);
  background: rgba(3,26,21,.66);
  color: rgba(255,246,228,.82);
  backdrop-filter: blur(12px);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .02em;
}
.media-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,162,77,.55);
  background: rgba(3,26,21,.58);
  color: rgba(255,246,228,.88);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Opening scene: premium Patta Table */
.scene-opening {
  min-height: calc(100vh - 76px);
  background:
    radial-gradient(circle at 68% 22%, rgba(201,162,77,.24), transparent 26%),
    radial-gradient(circle at 10% 76%, rgba(143,31,45,.18), transparent 24%),
    linear-gradient(135deg, #031a15, #062d22 58%, #010c09);
}
.scene-opening::after {
  background:
    linear-gradient(90deg, rgba(3,26,21,.94), rgba(3,26,21,.34) 48%, rgba(3,26,21,.70)),
    radial-gradient(circle at 76% 48%, rgba(201,162,77,.10), transparent 32%);
}
.opening-grid {
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(42px, 6vw, 104px);
}
.opening-copy {
  position: relative;
  z-index: 6;
  padding: clamp(22px, 3vw, 38px) 0;
}
.opening-copy h1 {
  font-size: clamp(4.6rem, 7.8vw, 8.65rem);
  max-width: 820px;
  text-shadow: 0 22px 48px rgba(0,0,0,.28);
}
.scene-lead { max-width: 540px; }
.brand-line {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: .01em;
}
.patta-stage {
  min-height: clamp(620px, 58vw, 760px);
  display: grid;
  align-items: center;
  transform: none !important;
}
.patta-image-slot {
  width: 100%;
  height: clamp(540px, 52vw, 700px);
  border-radius: 48px;
  border-color: rgba(201,162,77,.48);
  background: rgba(255,246,228,.06);
}
.patta-image-slot::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  border-radius: 36px;
  border: 1px solid rgba(201,162,77,.22);
  pointer-events: none;
}
.patta-image-labels {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 7;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  width: min(96%, 760px);
}
.patta-image-labels span {
  padding: 9px 12px;
  border: 1px solid rgba(201,162,77,.48);
  border-radius: var(--radius-pill);
  background: rgba(3,26,21,.70);
  color: rgba(255,246,228,.90);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

/* Story + craft: less icon-like, more editorial */
.story-steps {
  gap: 20px;
}
.story-step {
  min-height: 210px;
  padding: 30px 20px;
  background: linear-gradient(180deg, rgba(255,250,238,.96), rgba(255,246,228,.88));
  border-color: rgba(201,162,77,.34);
  box-shadow: var(--r1-soft-shadow);
}
.story-step::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(201,162,77,.12);
  pointer-events: none;
}
.story-icon {
  box-shadow: 0 18px 36px rgba(3,26,21,.18), inset 0 0 0 7px rgba(255,246,228,.08);
}
.premium-card,
.whatsapp-preview,
.shop-card,
.ingredient-card,
.signature-card,
.location-card,
.contact-mini-card,
.map-card {
  box-shadow: var(--r1-soft-shadow);
}
.premium-card {
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,246,228,.88));
}

/* Signature Pan: photo-ready product cards */
.signature-grid {
  gap: clamp(22px, 3vw, 36px);
}
.signature-card {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(244,230,199,.93));
  border-color: rgba(201,162,77,.42);
}
.signature-media {
  height: clamp(250px, 22vw, 320px);
  background: #071f18;
  border-bottom: 1px solid rgba(201,162,77,.30);
}
.signature-media::before {
  inset: 16px;
  z-index: 4;
  border-color: rgba(201,162,77,.18);
}
.signature-media img {
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
}
.signature-card:hover .signature-media img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.08);
}
.signature-body {
  padding: 26px 26px 28px;
}
.signature-body h3 {
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
}
.mini-action {
  width: fit-content;
}

/* Ingredient image cards */
.ingredient-card {
  min-height: 184px;
  padding: 16px 14px 18px;
  background: linear-gradient(180deg, rgba(255,250,238,.97), rgba(255,246,228,.86));
}
.ingredient-card i { display: none !important; }
.ingredient-photo {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(201,162,77,.45);
  box-shadow: 0 18px 34px rgba(3,26,21,.15);
}
.ingredient-card strong {
  font-size: 1.12rem;
}

/* Shop category cards: image-backed, not generic service cards */
.more-grid {
  align-items: start;
}
.shop-card {
  grid-template-columns: 160px 1fr;
  min-height: 220px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,250,238,.98), rgba(246,232,202,.90));
  gap: 20px;
}
.shop-card-media {
  align-self: stretch;
  min-height: 180px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(3,26,21,.15);
}
.shop-card-media::before {
  background: linear-gradient(180deg, rgba(3,26,21,0), rgba(3,26,21,.30));
}
.shop-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.25rem);
}
.shop-card .mini-action {
  grid-column: 2;
}

/* Event section: photo slot instead of placeholder illustration */
.event-premium-grid {
  grid-template-columns: 1fr .95fr;
}
.event-image-slot {
  min-height: clamp(420px, 40vw, 580px);
  border-radius: 44px;
  border-color: rgba(201,162,77,.44);
}
.event-image-slot::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border-radius: 32px;
  border: 1px solid rgba(201,162,77,.18);
  pointer-events: none;
}
.event-copy {
  position: relative;
  z-index: 4;
}
.event-inquiry-card {
  background: rgba(255,246,228,.08);
  border: 1px solid rgba(201,162,77,.28);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

/* Contact polish */
.visit-heading p {
  margin-inline: auto;
  max-width: 720px;
}
.live-map-card {
  min-height: 520px;
}
.map-overlay-card {
  box-shadow: 0 18px 44px rgba(3,26,21,.18);
}

/* Replace old CSS-art remnants if any remain */
.pan-art,
.event-stage,
.shop-icon { display: none !important; }

/* Mobile refinement */
@media (max-width: 1060px) {
  .opening-grid,
  .event-premium-grid {
    grid-template-columns: 1fr;
  }
  .patta-stage {
    min-height: auto;
    order: -1;
  }
  .patta-image-slot {
    height: min(76vw, 620px);
    min-height: 380px;
  }
  .opening-copy h1 {
    font-size: clamp(4rem, 13vw, 6.4rem);
  }
  .shop-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .scene { padding-block: 66px; }
  .scene-opening { padding-block: 42px 72px; }
  .opening-copy { padding-top: 16px; }
  .patta-image-slot {
    height: 420px;
    border-radius: 32px;
  }
  .patta-image-slot::after { inset: 10px; border-radius: 24px; }
  .image-slot figcaption { display: none; }
  .patta-image-labels {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 14px;
    width: 100%;
  }
  .patta-image-labels span { font-size: .64rem; padding: 7px 9px; }
  .signature-media { height: 260px; }
  .ingredient-photo { width: 82px; height: 82px; border-radius: 22px; }
  .shop-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .shop-card-media {
    min-height: 210px;
  }
  .shop-card .mini-action { grid-column: 1; }
  .event-image-slot { min-height: 360px; border-radius: 32px; }
  .media-badge { display: none; }
}

@media (max-width: 440px) {
  .opening-copy h1 { font-size: clamp(3.2rem, 15vw, 4.55rem); }
  .patta-image-slot { height: 340px; min-height: 320px; }
  .signature-media { height: 220px; }
  .shop-card-media { min-height: 170px; }
}

/* =========================================================
   R2 OPENING STORY REBUILD
   Purpose: rebuild the top homepage experience so it reads as
   a premium editorial pan story, not generic vector/card UI.
   ========================================================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(201,162,77,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,246,228,.94), rgba(244,231,202,.96));
}

.scene-opening {
  padding-block: clamp(56px, 7vw, 96px) clamp(78px, 8vw, 118px);
  background:
    radial-gradient(circle at 74% 28%, rgba(201,162,77,.20), transparent 24%),
    radial-gradient(circle at 12% 84%, rgba(143,31,45,.18), transparent 24%),
    linear-gradient(135deg, #02110d 0%, #062d22 50%, #010906 100%);
}
.scene-opening::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(201,162,77,.16);
  border-radius: clamp(28px, 4vw, 58px);
  pointer-events: none;
}
.scene-opening::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,26,21,.95) 0%, rgba(3,26,21,.70) 26%, rgba(3,26,21,.18) 60%, rgba(3,26,21,.45) 100%),
    radial-gradient(circle at 78% 50%, rgba(255,246,228,.05), transparent 42%);
}
.opening-grid {
  position: relative;
  z-index: 3;
  grid-template-columns: minmax(320px, .74fr) minmax(560px, 1.26fr);
  align-items: center;
}
.opening-copy {
  max-width: 650px;
  padding: clamp(20px, 3vw, 46px) 0 clamp(18px, 2vw, 30px);
}
.opening-copy .scene-kicker {
  color: var(--gold-bright);
  background: rgba(201,162,77,.12);
  border-color: rgba(201,162,77,.46);
  box-shadow: 0 14px 42px rgba(0,0,0,.16);
}
.opening-copy h1 {
  font-size: clamp(4.3rem, 7vw, 7.95rem);
  letter-spacing: -.055em;
  text-wrap: balance;
}
.scene-lead {
  margin-top: 28px;
  color: rgba(255,246,228,.84);
  font-size: clamp(1.08rem, 1.3vw, 1.24rem);
  line-height: 1.7;
}
.brand-line {
  margin: 0 0 1.25rem;
  color: #f5cc73;
  letter-spacing: .025em;
}
.scroll-cue {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(201,162,77,.28);
  border-radius: var(--radius-pill);
  background: rgba(255,246,228,.055);
  color: rgba(255,246,228,.74);
}

.patta-stage {
  min-height: clamp(620px, 53vw, 760px);
  align-items: stretch;
}
.patta-stage::before,
.patta-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,162,77,.16);
  pointer-events: none;
}
.patta-stage::before {
  width: 78%;
  aspect-ratio: 1.12;
  right: -2%;
  top: 3%;
}
.patta-stage::after {
  width: 62%;
  aspect-ratio: 1.05;
  right: 18%;
  bottom: 3%;
  border-color: rgba(255,246,228,.08);
}
.patta-image-slot {
  position: relative;
  z-index: 2;
  height: clamp(575px, 50vw, 735px);
  border-radius: 54px;
  border: 1px solid rgba(201,162,77,.58);
  box-shadow: 0 55px 140px rgba(0,0,0,.42);
  background: #061b15;
}
.patta-image-slot img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.08) brightness(.92);
}
.patta-image-slot::before {
  background:
    linear-gradient(90deg, rgba(3,26,21,.14), transparent 42%, rgba(3,26,21,.05)),
    linear-gradient(180deg, rgba(255,246,228,.06), rgba(3,26,21,.22));
  mix-blend-mode: normal;
}
.patta-image-slot::after {
  inset: 18px;
  border-radius: 38px;
  border: 1px solid rgba(201,162,77,.25);
  box-shadow: inset 0 0 0 1px rgba(255,246,228,.045);
}
.patta-image-slot figcaption,
.story-image-slot figcaption,
.craft-image-slot figcaption {
  font-size: .70rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .84;
}
.patta-image-labels {
  bottom: -16px;
  width: min(92%, 840px);
}
.patta-image-labels span {
  background: rgba(3,26,21,.78);
  border-color: rgba(201,162,77,.55);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.golden-story-line-opening {
  height: 160px;
  bottom: -76px;
}

/* Story bridge rebuilt as image-first editorial strip */
.scene-bridge {
  padding-block: clamp(84px, 9vw, 132px);
  border-top: 1px solid rgba(201,162,77,.28);
  background:
    radial-gradient(circle at 10% 20%, rgba(201,162,77,.16), transparent 26%),
    linear-gradient(180deg, #fff8eb, #f5e7cc);
}
.scene-bridge .scene-grid {
  grid-template-columns: .52fr 1.48fr;
}
.story-showcase {
  display: grid;
  gap: 22px;
}
.story-image-slot {
  height: clamp(310px, 30vw, 455px);
  border-radius: 38px;
  box-shadow: 0 26px 80px rgba(3,26,21,.16);
  background: #f8ead0;
}
.story-image-slot img {
  object-position: center center;
}
.story-image-slot::before {
  background: linear-gradient(180deg, rgba(255,246,228,.06), rgba(3,26,21,.02));
}
.story-step-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.story-step-strip::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,77,.75), transparent);
}
.story-step-refined {
  min-height: auto;
  padding: 18px 14px 20px;
  border-radius: 22px;
  background: rgba(255,250,238,.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 38px rgba(3,26,21,.08);
}
.story-step-refined::after,
.story-step-refined .story-icon { display: none; }
.story-step-refined span {
  margin-bottom: 10px;
  color: var(--gold);
}
.story-step-refined strong {
  font-size: 1.12rem;
}
.story-step-refined small {
  font-size: .78rem;
}

/* Crafted-to-taste rebuilt as editorial image + compact cards */
.scene-soft#scene-crafted-taste {
  padding-block: clamp(84px, 9vw, 134px);
  background:
    radial-gradient(circle at 82% 16%, rgba(15,90,62,.08), transparent 30%),
    radial-gradient(circle at 10% 86%, rgba(201,162,77,.16), transparent 30%),
    linear-gradient(180deg, #fff6e4, #f0dfbf);
}
.craft-panel-refined {
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, .95fr);
  grid-template-areas:
    "image steps"
    "image preview";
  align-items: stretch;
  gap: 24px;
}
.craft-image-slot {
  grid-area: image;
  min-height: 650px;
  border-radius: 42px;
  box-shadow: 0 30px 90px rgba(3,26,21,.15);
  background: #f6e4c5;
}
.craft-image-slot img {
  object-position: center center;
}
.craft-steps-refined {
  grid-area: steps;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.craft-steps-refined .premium-card {
  padding: 24px;
  border-radius: 28px;
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,246,228,.90));
}
.craft-steps-refined .premium-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,77,.14), transparent 62%);
}
.craft-steps-refined .premium-card h3 {
  margin-top: 22px;
}
.whatsapp-preview-refined {
  grid-area: preview;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6,45,34,.98), rgba(3,26,21,.96));
  color: var(--ivory);
  border: 1px solid rgba(201,162,77,.38);
  box-shadow: 0 26px 70px rgba(3,26,21,.20);
}
.whatsapp-preview-refined span {
  color: rgba(255,246,228,.74);
}

@media (max-width: 1180px) {
  .opening-grid,
  .scene-bridge .scene-grid,
  .craft-panel-refined {
    grid-template-columns: 1fr;
  }
  .patta-stage { order: -1; }
  .craft-panel-refined {
    grid-template-areas: "image" "steps" "preview";
  }
  .craft-image-slot { min-height: 520px; }
}

@media (max-width: 760px) {
  .scene-opening::before { inset: 10px; border-radius: 30px; }
  .opening-copy h1 { font-size: clamp(3.6rem, 15vw, 5.55rem); }
  .scene-lead { font-size: 1rem; line-height: 1.6; }
  .patta-image-slot {
    min-height: 430px;
    height: 62vh;
    max-height: 560px;
    border-radius: 32px;
  }
  .patta-image-slot img { object-position: center center; }
  .patta-image-labels { margin-top: 18px; }
  .story-step-strip { grid-template-columns: 1fr 1fr; }
  .story-step-strip::before { display: none; }
  .story-image-slot { height: 290px; border-radius: 28px; }
  .craft-image-slot { min-height: 360px; border-radius: 30px; }
  .craft-steps-refined { grid-template-columns: 1fr; }
  .craft-steps-refined .premium-card { min-height: auto; }
}

@media (max-width: 480px) {
  .patta-image-slot { height: 430px; }
  .patta-image-labels span { font-size: .58rem; }
  .story-step-strip { grid-template-columns: 1fr; }
}

/* =========================================================
   R3 PRODUCTS + INGREDIENTS + MORE THAN PAN REBUILD
   Purpose: rebuild the middle homepage so it feels image-first,
   editorial, premium, and no longer like generic UI cards.
   ========================================================= */
.signature-section {
  padding-block: clamp(86px, 10vw, 150px);
  background:
    radial-gradient(circle at 18% 4%, rgba(201,162,77,.25), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(143,31,45,.24), transparent 30%),
    linear-gradient(135deg, #031a15 0%, #062d22 48%, #02120f 100%);
}
.signature-section .section-title {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.signature-section .section-title p:not(.scene-kicker) {
  color: rgba(255,246,228,.78);
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  margin-top: clamp(38px, 5vw, 62px);
}
.signature-card {
  position: relative;
  grid-column: span 3;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  isolation: isolate;
  background: #061b16;
  border: 1px solid rgba(201,162,77,.42);
  box-shadow: 0 34px 90px rgba(0,0,0,.36);
}
.signature-card:nth-child(1),
.signature-card:nth-child(2) {
  grid-column: span 6;
  min-height: 545px;
}
.signature-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(201,162,77,.18);
  border-radius: 25px;
  pointer-events: none;
}
.signature-media {
  position: absolute;
  inset: 0;
  height: auto;
  border: 0;
  background: #061b16;
}
.signature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(3,26,21,.08) 0%, rgba(3,26,21,.08) 42%, rgba(3,26,21,.86) 100%),
    radial-gradient(circle at 50% 20%, rgba(201,162,77,.06), transparent 38%);
}
.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.signature-card:hover .signature-media img {
  transform: scale(1.075);
  filter: saturate(1.12) contrast(1.09);
}
.signature-body {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 3vw, 38px);
  color: rgba(255,246,228,.88);
  background: linear-gradient(180deg, transparent, rgba(3,26,21,.62));
}
.signature-body h3 {
  color: var(--ivory);
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  text-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.signature-card:nth-child(1) .signature-body h3,
.signature-card:nth-child(2) .signature-body h3 {
  font-size: clamp(2.1rem, 3vw, 3.15rem);
}
.signature-body p {
  max-width: 31rem;
  color: rgba(255,246,228,.78);
  font-size: 1rem;
}
.signature-body .mini-action {
  margin-top: 8px;
  background: rgba(255,246,228,.92);
  color: var(--deep-green);
  border-color: rgba(201,162,77,.55);
}
.signature-body .mini-action:hover {
  background: var(--gold);
  color: #061b16;
}
.media-badge { display: none !important; }
.collection-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.phase-note {
  text-align: center;
  color: rgba(255,246,228,.68);
  margin-top: 18px;
  font-size: .95rem;
}

.finishing-section {
  padding-block: clamp(82px, 9vw, 136px);
  background:
    radial-gradient(circle at 16% 15%, rgba(201,162,77,.16), transparent 26%),
    linear-gradient(180deg, #fff7e8 0%, #f6e7c9 100%);
}
.finishing-grid {
  grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr);
  align-items: start;
}
.finishing-section .scene-heading {
  position: sticky;
  top: 110px;
}
.ingredient-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.ingredient-card {
  min-height: 238px;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,250,238,.92);
  border: 1px solid rgba(201,162,77,.34);
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: 0 20px 54px rgba(3,26,21,.12);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.ingredient-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,162,77,.62);
  box-shadow: 0 30px 70px rgba(3,26,21,.18);
}
.ingredient-photo {
  width: 100%;
  height: 176px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}
.ingredient-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  color: var(--deep-green);
  font-size: 1.18rem;
  background: rgba(255,246,228,.92);
  border-top: 1px solid rgba(201,162,77,.20);
}

.more-section {
  padding-block: clamp(82px, 9vw, 136px);
  background:
    linear-gradient(180deg, #f6e7c9 0%, #fff6e4 54%, #f4e3c0 100%);
}
.more-grid {
  grid-template-columns: minmax(240px,.48fr) minmax(0,1.52fr);
  align-items: start;
}
.more-copy {
  position: sticky;
  top: 110px;
}
.more-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.shop-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 405px;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #061b16;
  border: 1px solid rgba(201,162,77,.36);
  box-shadow: 0 30px 78px rgba(3,26,21,.18);
}
.shop-card-media {
  min-height: 265px;
  align-self: stretch;
  border-radius: 0;
  box-shadow: none;
}
.shop-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3,26,21,.04), rgba(3,26,21,.48));
}
.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}
.shop-card:hover .shop-card-media img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.05);
}
.shop-card > div:not(.shop-card-media) {
  padding: 24px 26px 6px;
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,246,228,.92));
}
.shop-card h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  color: var(--deep-green);
}
.shop-card p {
  color: var(--muted);
  max-width: 26rem;
}
.shop-card .mini-action {
  grid-column: 1;
  margin: 0 26px 24px;
}

@media (max-width: 1080px) {
  .signature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signature-card,
  .signature-card:nth-child(1),
  .signature-card:nth-child(2) { grid-column: auto; min-height: 460px; }
  .finishing-grid,
  .more-grid { grid-template-columns: 1fr; }
  .finishing-section .scene-heading,
  .more-copy { position: static; }
}
@media (max-width: 760px) {
  .signature-grid,
  .ingredient-gallery,
  .more-showcase { grid-template-columns: 1fr; }
  .signature-card,
  .signature-card:nth-child(1),
  .signature-card:nth-child(2) { min-height: 430px; }
  .signature-body { padding: 24px; }
  .ingredient-card { min-height: 218px; }
  .ingredient-photo { height: 158px; }
  .shop-card { min-height: 360px; }
  .shop-card-media { min-height: 220px; }
}

/* =========================================================
   R4 FINAL EVENT + LOCATION REBUILD
   Purpose: finish the homepage with a stronger event scene,
   cleaner location actions, and final visual assets.
   ========================================================= */
.scene-event {
  padding-block: clamp(88px, 10vw, 150px);
  background:
    radial-gradient(circle at 12% 20%, rgba(143,31,45,.30), transparent 25%),
    radial-gradient(circle at 78% 18%, rgba(201,162,77,.18), transparent 24%),
    linear-gradient(135deg, #020b08 0%, #062d22 48%, #010705 100%);
}
.scene-event::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(201,162,77,.14);
  border-radius: clamp(28px, 4vw, 58px);
}
.event-premium-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
}
.event-visual {
  position: relative;
}
.event-visual::before {
  content: "Premium Pan Stall";
  position: absolute;
  z-index: 8;
  left: clamp(18px, 3vw, 38px);
  top: clamp(18px, 3vw, 38px);
  padding: 12px 18px;
  border: 1px solid rgba(201,162,77,.54);
  border-radius: var(--radius-pill);
  background: rgba(3,26,21,.72);
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.event-image-slot {
  min-height: clamp(520px, 48vw, 700px);
  border-radius: clamp(32px, 4vw, 56px);
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
}
.event-image-slot img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.05) brightness(.92);
}
.event-image-slot .image-slot-overlay,
.event-image-slot::before {
  background:
    linear-gradient(90deg, rgba(3,26,21,.16), rgba(3,26,21,.02) 44%, rgba(3,26,21,.48)),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.42));
}
.event-image-slot::after {
  inset: clamp(12px, 2vw, 22px);
  border-radius: clamp(24px, 3vw, 42px);
  border-color: rgba(255,211,109,.20);
}
.event-copy {
  padding: clamp(22px, 3vw, 38px);
  border-radius: 34px;
  border: 1px solid rgba(201,162,77,.20);
  background: linear-gradient(135deg, rgba(255,246,228,.06), rgba(255,246,228,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 26px 70px rgba(0,0,0,.14);
}
.event-copy h2 {
  color: var(--gold-bright);
}
.premium-event-tags span,
.event-service-grid span {
  backdrop-filter: blur(10px);
}
.event-service-grid span {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,162,77,.14), rgba(255,246,228,.035));
}
.event-inquiry-card {
  color: var(--ivory);
}

.scene-visit {
  padding-block: clamp(84px, 9vw, 138px);
  background:
    radial-gradient(circle at 16% 14%, rgba(201,162,77,.17), transparent 22%),
    radial-gradient(circle at 88% 86%, rgba(15,90,62,.13), transparent 24%),
    linear-gradient(180deg, #fff6e4 0%, #f7e8ca 100%);
}
.refined-visit-grid {
  grid-template-columns: minmax(320px, .86fr) minmax(460px, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
}
.visit-panel {
  align-content: start;
}
.visit-photo-slot {
  min-height: 245px;
  border-radius: 32px;
  border: 1px solid rgba(201,162,77,.32);
  box-shadow: 0 22px 54px rgba(3,26,21,.12);
}
.visit-photo-slot img {
  object-position: center;
}
.visit-photo-slot::before {
  background: linear-gradient(180deg, rgba(3,26,21,.04), rgba(3,26,21,.34));
}
.location-card,
.contact-mini-card {
  background: rgba(255,250,238,.92);
}
.primary-location-card {
  background:
    radial-gradient(circle at 92% 20%, rgba(201,162,77,.15), transparent 30%),
    linear-gradient(135deg, #062d22, #031a15);
}
.landmark-card {
  background: linear-gradient(135deg, rgba(255,250,238,.98), rgba(246,232,202,.84));
}
.refined-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.refined-contact-actions .btn {
  justify-content: center;
  min-width: 0;
}
.live-map-card {
  min-height: clamp(520px, 42vw, 660px);
  border-radius: clamp(32px, 4vw, 50px);
}
.map-overlay-card {
  left: clamp(16px, 3vw, 28px);
  right: auto;
  bottom: clamp(16px, 3vw, 28px);
  max-width: min(420px, calc(100% - 32px));
}
.site-footer {
  background:
    radial-gradient(circle at 50% -40%, rgba(201,162,77,.14), transparent 38%),
    linear-gradient(180deg, #062d22, #031a15);
}

@media (max-width: 1060px) {
  .event-premium-grid,
  .refined-visit-grid { grid-template-columns: 1fr; }
  .event-copy { padding: 28px; }
  .event-visual::before { font-size: .88rem; }
}
@media (max-width: 760px) {
  .event-image-slot { min-height: 410px; border-radius: 30px; }
  .event-copy { padding: 22px; border-radius: 28px; }
  .event-tags span { flex: 1 1 auto; justify-content: center; }
  .event-service-grid { grid-template-columns: 1fr; }
  .refined-contact-actions { grid-template-columns: 1fr; }
  .visit-photo-slot { min-height: 205px; border-radius: 26px; }
  .live-map-card { min-height: 410px; border-radius: 28px; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; padding-block: 24px; }
}
@media (max-width: 440px) {
  .event-image-slot { min-height: 330px; }
  .event-visual::before { display: none; }
  .visit-photo-slot { min-height: 172px; }
  .live-map-card { min-height: 340px; }
}

/* =========================================================
   PHASE V2 — SLIDESHOW INTEGRATION
   Adds real image slideshows for Patta Table, Leaf to Flavor,
   and Crafted to Your Taste. Text remains outside images.
   ========================================================= */
.site-slideshow {
  position: relative;
  width: 100%;
}
.slideshow-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.slideshow-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms var(--ease), transform 1200ms var(--ease);
  pointer-events: none;
}
.slideshow-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slideshow-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.slideshow-ui {
  position: absolute;
  left: clamp(16px, 2.4vw, 32px);
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(201,162,77,.34);
  border-radius: var(--radius-pill);
  background: rgba(3,26,21,.68);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.slideshow-ui.compact {
  background: rgba(3,26,21,.58);
  bottom: 16px;
}
.slideshow-caption {
  margin: 0;
  color: rgba(255,246,228,.88);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.slideshow-dots {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.slideshow-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,246,228,.58);
  background: rgba(255,246,228,.24);
  box-shadow: none;
  cursor: pointer;
  transition: width 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.slideshow-dot.is-active {
  width: 30px;
  background: var(--gold);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}
.opening-slideshow,
.opening-slideshow .slideshow-frame {
  height: 100%;
}
.opening-slideshow .patta-image-slot {
  display: block;
}
.process-slideshow .story-image-slot,
.craft-slideshow .craft-image-slot {
  display: block;
}
.story-image-slot,
.craft-image-slot {
  position: relative;
}
.story-step-refined.slide-step,
.craft-choice-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(201,162,77,.25);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
}
.story-step-refined.slide-step {
  display: grid;
  align-content: start;
  justify-items: center;
}
.story-step-refined.slide-step.is-active,
.craft-choice-card.is-active {
  border-color: rgba(201,162,77,.78);
  box-shadow: 0 24px 58px rgba(3,26,21,.14), inset 0 0 0 1px rgba(201,162,77,.22);
  transform: translateY(-4px);
}
.story-step-refined.slide-step.is-active span,
.craft-choice-card.is-active .card-number {
  color: #a47013;
}
.craft-choice-card {
  width: 100%;
  display: block;
}
.craft-choice-card:focus-visible,
.story-step-refined.slide-step:focus-visible,
.slideshow-dot:focus-visible {
  outline: 3px solid rgba(201,162,77,.72);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .slideshow-slide,
  .slideshow-dot,
  .story-step-refined.slide-step,
  .craft-choice-card {
    transition: none !important;
  }
}
@media (max-width: 760px) {
  .slideshow-ui {
    position: static;
    margin-top: 12px;
    border-radius: 22px;
  }
  .slideshow-caption { font-size: .70rem; }
  .slideshow-dot { width: 9px; height: 9px; }
  .slideshow-dot.is-active { width: 24px; }
}

/* =========================================================
   PHASE VI — FINAL DEPLOY POLISH
   Purpose: first-screen balance, refined slideshow sizing,
   mobile order, and deploy-ready finishing. These rules are
   placed last intentionally to override earlier phase styles.
   ========================================================= */
:root {
  --opening-copy-min: 340px;
  --opening-visual-min: 560px;
}

.scene-opening {
  min-height: min(940px, calc(100svh - 74px));
  padding-block: clamp(34px, 4.8vw, 68px) clamp(54px, 5.8vw, 84px);
  overflow: hidden;
}

.opening-grid {
  width: min(calc(100% - 48px), 1320px);
  grid-template-columns: minmax(var(--opening-copy-min), .78fr) minmax(var(--opening-visual-min), 1.22fr);
  gap: clamp(28px, 4vw, 70px);
}

.opening-copy {
  max-width: 560px;
  padding: 0;
}

.opening-copy .scene-kicker {
  margin-bottom: clamp(12px, 1.4vw, 20px);
}

.opening-copy h1 {
  max-width: 9.6ch;
  font-size: clamp(4rem, 6.15vw, 6.85rem);
  line-height: .89;
  letter-spacing: -.064em;
  margin-bottom: 0;
}

.scene-lead {
  max-width: 520px;
  margin-top: clamp(18px, 2.4vw, 28px);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.62;
}

.brand-line {
  margin-top: 16px;
  margin-bottom: 18px;
}

.hero-actions {
  gap: 12px;
}

.scroll-cue {
  margin-top: 20px;
}

.patta-stage {
  min-height: clamp(500px, 40vw, 650px);
}

.patta-image-slot {
  height: clamp(500px, 39vw, 650px);
  min-height: 500px;
  border-radius: clamp(34px, 3.8vw, 50px);
}

.opening-slideshow,
.opening-slideshow .slideshow-frame {
  min-height: inherit;
}

.patta-image-labels {
  bottom: -12px;
}

.golden-story-line-opening {
  height: 120px;
  bottom: -60px;
}

.story-image-slot,
.craft-image-slot {
  overflow: hidden;
}

.story-image-slot img,
.craft-image-slot img,
.patta-image-slot img {
  object-fit: cover;
  object-position: 50% 50%;
}

.story-step-refined.slide-step,
.craft-choice-card,
.slideshow-dot {
  -webkit-tap-highlight-color: transparent;
}

.story-step-refined.slide-step:hover,
.craft-choice-card:hover {
  border-color: rgba(201, 162, 77, .62);
}

.site-footer {
  border-top: 1px solid rgba(201, 162, 77, .20);
}

@media (min-width: 1360px) and (max-height: 850px) {
  .scene-opening {
    min-height: auto;
    padding-block: 34px 64px;
  }
  .opening-copy h1 {
    font-size: clamp(3.75rem, 5.25vw, 6.15rem);
  }
  .patta-stage {
    min-height: 500px;
  }
  .patta-image-slot {
    height: 500px;
    min-height: 500px;
  }
}

@media (max-width: 1180px) {
  .scene-opening {
    min-height: auto;
    padding-block: 54px 82px;
  }
  .opening-grid {
    width: min(calc(100% - 38px), 820px);
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .opening-copy {
    order: 1;
    max-width: 720px;
  }
  .patta-stage {
    order: 2;
    min-height: auto;
  }
  .opening-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(4rem, 10vw, 6.2rem);
  }
  .patta-image-slot {
    height: clamp(420px, 58vw, 560px);
    min-height: 420px;
  }
  .patta-image-labels {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .scene-opening {
    padding-block: 42px 66px;
  }
  .scene-opening::before {
    inset: 9px;
    border-radius: 28px;
  }
  .opening-grid {
    width: min(calc(100% - 28px), 620px);
    gap: 26px;
  }
  .opening-copy {
    padding-top: 0;
  }
  .opening-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(3.15rem, 14.5vw, 4.55rem);
    line-height: .91;
  }
  .scene-lead {
    margin-top: 16px;
    font-size: .98rem;
    line-height: 1.55;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .scroll-cue {
    display: none;
  }
  .patta-stage {
    min-height: auto;
  }
  .patta-image-slot {
    height: min(78vw, 430px);
    min-height: 300px;
    border-radius: 28px;
  }
  .patta-image-slot::after {
    inset: 10px;
    border-radius: 20px;
  }
  .patta-image-labels {
    gap: 7px;
  }
  .patta-image-labels span {
    font-size: .58rem;
    padding: 7px 8px;
  }
  .story-image-slot {
    height: min(70vw, 340px);
  }
  .craft-image-slot {
    min-height: auto;
    height: min(76vw, 390px);
  }
  .slideshow-ui {
    position: static;
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 20px;
    gap: 10px;
  }
}

@media (max-width: 440px) {
  .opening-copy h1 {
    font-size: clamp(2.9rem, 15vw, 3.8rem);
  }
  .patta-image-slot {
    height: 330px;
  }
  .slideshow-caption {
    max-width: 52%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* =========================================================
   HOTFIX — Clean opening slideshow image
   Removes leftover ingredient tag overlay from the Patta Table
   slideshow. Opening image should remain clean with dot controls only.
   ========================================================= */
.patta-image-labels {
  display: none !important;
}
.opening-slideshow .slideshow-ui {
  left: auto;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  width: auto;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(3, 26, 21, .58);
}
.opening-slideshow .slideshow-caption {
  display: none !important;
}
.opening-slideshow .slideshow-dots {
  justify-content: center;
}
@media (max-width: 760px) {
  .opening-slideshow .slideshow-ui {
    position: static;
    margin: 12px auto 0;
    width: fit-content;
    background: rgba(3, 26, 21, .72);
  }
}

/* =========================================================
   PHASE VII — ELEGANCE + SLIDESHOW REFINEMENT
   Purpose: calmer luxury controls, better image focus,
   softer cinematic overlays, less card heaviness, and
   refined mobile spacing. Placed last intentionally.
   ========================================================= */
:root {
  --refined-gold-line: rgba(232, 195, 111, .78);
  --refined-gold-soft: rgba(201, 162, 77, .28);
  --refined-emerald-glass: rgba(3, 26, 21, .46);
}

/* Opening scene should feel like a premium editorial spread, not a poster. */
.scene-opening {
  padding-block: clamp(32px, 4.2vw, 62px) clamp(52px, 5.2vw, 78px);
}
.opening-grid {
  grid-template-columns: minmax(330px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(42px, 5vw, 86px);
}
.opening-copy h1 {
  max-width: 10.6ch;
  font-size: clamp(3.75rem, 5.6vw, 6.25rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.scene-lead {
  max-width: 490px;
  color: rgba(255, 246, 228, .80);
}
.hero-actions .btn {
  padding-inline: 20px;
  min-height: 46px;
}

/* Slideshow image treatment: subtle cinema, no text over image. */
.slideshow-frame {
  background: #031a15;
  box-shadow:
    0 28px 86px rgba(0, 0, 0, .34),
    inset 0 0 0 1px rgba(201, 162, 77, .20);
}
.slideshow-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 26, 21, .10), transparent 36%, rgba(3, 26, 21, .22)),
    radial-gradient(circle at 50% 50%, transparent 50%, rgba(3, 26, 21, .30) 100%);
  opacity: .78;
}
.slideshow-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(232, 195, 111, .22);
  border-radius: calc(clamp(34px, 3.8vw, 50px) - 13px);
  box-shadow: inset 0 0 42px rgba(201, 162, 77, .04);
}
.patta-image-slot {
  border: 1px solid rgba(232, 195, 111, .38);
  box-shadow:
    0 34px 105px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(255, 246, 228, .04) inset;
}
.slideshow-slide {
  transform: scale(1.045);
  transition: opacity 1150ms cubic-bezier(.22, 1, .36, 1), transform 2200ms cubic-bezier(.22, 1, .36, 1);
}
.slideshow-slide.is-active {
  transform: scale(1.012);
}
.slideshow-slide img {
  filter: saturate(1.02) contrast(1.02);
}

/* Elegant line indicators instead of noisy carousel dots. */
.slideshow-ui,
.opening-slideshow .slideshow-ui,
.slideshow-ui.compact {
  border: 1px solid rgba(232, 195, 111, .24);
  background: rgba(3, 26, 21, .46);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px) saturate(1.1);
}
.opening-slideshow .slideshow-ui {
  right: clamp(20px, 2.6vw, 38px);
  bottom: clamp(20px, 2.6vw, 38px);
  padding: 11px 14px;
}
.slideshow-dots {
  gap: 8px;
}
.slideshow-dot {
  width: 18px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 246, 228, .34);
  opacity: .78;
  transform: none;
}
.slideshow-dot.is-active {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #efd68a, #b9892d);
  box-shadow: 0 0 18px rgba(232, 195, 111, .36);
  opacity: 1;
  transform: none;
}
.slideshow-caption {
  color: rgba(255, 246, 228, .82);
  letter-spacing: .10em;
}

/* Per-slide focal positions to reduce awkward cropping. */
.opening-slideshow .slideshow-slide:nth-child(1) img { object-position: 50% 50%; }
.opening-slideshow .slideshow-slide:nth-child(2) img { object-position: 48% 50%; }
.opening-slideshow .slideshow-slide:nth-child(3) img { object-position: 50% 48%; }
.opening-slideshow .slideshow-slide:nth-child(4) img { object-position: 54% 50%; }
.process-slideshow .slideshow-slide:nth-child(1) img { object-position: 44% 50%; }
.process-slideshow .slideshow-slide:nth-child(2) img { object-position: 52% 50%; }
.process-slideshow .slideshow-slide:nth-child(3) img { object-position: 58% 50%; }
.process-slideshow .slideshow-slide:nth-child(4) img { object-position: 46% 50%; }
.craft-slideshow .slideshow-slide:nth-child(1) img { object-position: 50% 50%; }
.craft-slideshow .slideshow-slide:nth-child(2) img { object-position: 50% 48%; }
.craft-slideshow .slideshow-slide:nth-child(3) img { object-position: 56% 48%; }
.craft-slideshow .slideshow-slide:nth-child(4) img { object-position: 50% 50%; }

/* Process/craft sections: image is primary, cards are quiet controls. */
.story-showcase,
.craft-panel-refined {
  box-shadow: 0 30px 86px rgba(3, 26, 21, .10);
}
.story-step-refined.slide-step,
.craft-choice-card {
  background: rgba(255, 250, 238, .72);
  border-color: rgba(201, 162, 77, .20);
  box-shadow: 0 16px 44px rgba(3, 26, 21, .055);
  transform: none;
}
.story-step-refined.slide-step.is-active,
.craft-choice-card.is-active {
  background: rgba(255, 246, 228, .96);
  border-color: rgba(201, 162, 77, .66);
  box-shadow:
    0 20px 56px rgba(3, 26, 21, .10),
    inset 0 0 0 1px rgba(232, 195, 111, .22);
  transform: translateY(-2px);
}
.story-step-refined.slide-step:hover,
.craft-choice-card:hover {
  transform: translateY(-2px);
}
.craft-choice-card h3,
.story-step-refined strong {
  letter-spacing: -.018em;
}

/* Mobile: keep slideshows calm and controls below image. */
@media (max-width: 1180px) {
  .opening-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .opening-copy h1 {
    font-size: clamp(3.65rem, 9vw, 5.7rem);
  }
  .patta-image-slot {
    height: clamp(420px, 56vw, 540px);
  }
}
@media (max-width: 760px) {
  .scene-opening {
    padding-block: 36px 60px;
  }
  .opening-copy h1 {
    font-size: clamp(3rem, 13vw, 4.25rem);
    max-width: 10.4ch;
  }
  .patta-image-slot {
    height: min(72vw, 390px);
    min-height: 292px;
    border-radius: 24px;
  }
  .slideshow-frame::after {
    inset: 9px;
    border-radius: 18px;
  }
  .opening-slideshow .slideshow-ui,
  .slideshow-ui {
    position: static;
    margin: 12px auto 0;
    width: fit-content;
    padding: 10px 12px;
  }
  .slideshow-caption {
    display: none;
  }
  .slideshow-dot {
    width: 16px;
  }
  .slideshow-dot.is-active {
    width: 36px;
  }
  .story-step-refined.slide-step.is-active,
  .craft-choice-card.is-active,
  .story-step-refined.slide-step:hover,
  .craft-choice-card:hover {
    transform: none;
  }
}
@media (max-width: 440px) {
  .opening-copy h1 {
    font-size: clamp(2.75rem, 13.5vw, 3.55rem);
  }
  .patta-image-slot {
    height: 305px;
    min-height: 280px;
  }
}

/* Phase VIII — scroll-based slideshow behavior refinements */
.is-scroll-driven .slideshow-ui.compact {
  margin-top: 1rem;
}

.is-scroll-driven .slideshow-caption {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 162, 77, 0.94);
}

.is-scroll-driven .slide-step {
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease, opacity 260ms ease;
}

.is-scroll-driven .slide-step:not(.is-active) {
  opacity: 0.72;
}

.is-scroll-driven .slide-step.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

@media (min-width: 900px) {
  .story-showcase.is-scroll-driven,
  .craft-panel.is-scroll-driven {
    scroll-margin-top: 120px;
  }
}

/* =========================================================
   PHASE IX-B — MOBILE LAYOUT CORRECTION
   Purpose: mobile display, spacing, tap comfort, image sizing,
   button stacking, no horizontal overflow. Placed last intentionally.
   ========================================================= */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.image-slot figcaption {
  display: none !important;
}

@media (max-width: 880px) {
  .site-header {
    background: rgba(3, 26, 21, .94);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand-mark img {
    width: 24px;
    height: 24px;
  }

  .brand-text strong {
    font-size: .94rem;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text small {
    font-size: .66rem;
    letter-spacing: .14em;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .primary-nav {
    inset: 76px 12px auto 12px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .container,
  .opening-grid {
    width: min(calc(100% - 26px), var(--max));
  }

  .scene {
    padding-block: 58px;
  }

  h2 {
    font-size: clamp(2.16rem, 11vw, 3.28rem);
    line-height: .98;
  }

  h3 {
    font-size: clamp(1.08rem, 5.5vw, 1.36rem);
  }

  .section-title {
    margin-bottom: 24px;
    text-align: left;
  }

  .section-title .scene-kicker {
    margin-inline: 0;
  }

  .scene-kicker {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: .64rem;
    letter-spacing: .145em;
  }

  .scene-lead,
  .scene-heading p,
  .section-title p,
  .event-copy p,
  .visit-heading p,
  .more-copy p {
    font-size: .96rem;
    line-height: 1.55;
  }

  .scene-opening {
    min-height: auto;
    padding-block: 26px 54px;
    display: block;
  }

  .scene-opening::before {
    inset: 7px;
    border-radius: 26px;
  }

  .scene-opening::after {
    background: linear-gradient(180deg, rgba(3,26,21,.82), rgba(3,26,21,.32) 48%, rgba(3,26,21,.76));
  }

  .opening-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .opening-copy {
    order: 1;
    max-width: 100%;
    padding-top: 0;
  }

  .patta-stage {
    order: 2;
    min-height: auto;
    transform: none !important;
  }

  .opening-copy h1 {
    max-width: 9.7ch;
    font-size: clamp(2.68rem, 12.4vw, 3.78rem);
    line-height: .92;
    letter-spacing: -.052em;
  }

  .scene-lead {
    max-width: 31rem;
    margin-top: 14px;
  }

  .brand-line {
    margin-bottom: 14px;
    font-size: .82rem;
    letter-spacing: .045em;
  }

  .button-row,
  .contact-actions,
  .collection-actions,
  .more-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
    border-radius: 20px;
    font-size: .93rem;
  }

  .scroll-cue,
  .golden-story-line-opening,
  .bridge-story-line,
  .product-story-line,
  .more-story-line,
  .event-story-line,
  .visit-route-line {
    display: none;
  }

  .opening-slideshow,
  .opening-slideshow .slideshow-frame,
  .patta-image-slot {
    height: clamp(255px, 68vw, 335px);
    min-height: 255px;
    max-height: 335px;
    border-radius: 24px;
  }

  .slideshow-frame,
  .story-image-slot,
  .craft-image-slot,
  .event-image-slot,
  .visit-photo-slot,
  .live-map-card {
    border-radius: 24px;
  }

  .slideshow-frame::after {
    inset: 8px;
    border-radius: 17px;
  }

  .opening-slideshow .slideshow-ui,
  .slideshow-ui,
  .slideshow-ui.compact {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin: 10px auto 0;
    padding: 10px 12px;
    border-radius: 999px;
  }

  .slideshow-dots {
    gap: 7px;
  }

  .slideshow-dot {
    min-width: 20px;
    width: 20px;
    height: 4px;
  }

  .slideshow-dot.is-active {
    width: 34px;
    min-width: 34px;
    height: 4px;
  }

  .scene-grid,
  .finishing-grid,
  .more-grid,
  .event-grid,
  .visit-grid,
  .scene-bridge .scene-grid,
  .craft-panel-refined,
  .refined-visit-grid,
  .event-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 26px;
  }

  .scene-heading,
  .more-copy,
  .event-copy,
  .visit-heading {
    max-width: 100%;
  }

  .story-showcase,
  .craft-panel-refined {
    gap: 16px;
  }

  .story-image-slot,
  .process-slideshow .slideshow-frame {
    height: clamp(230px, 64vw, 310px);
    min-height: 230px;
  }

  .story-step-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .story-step-refined {
    min-height: 96px;
    padding: 12px 10px 13px;
    border-radius: 18px;
  }

  .story-step-refined span {
    margin-bottom: 5px;
    font-size: .78rem;
  }

  .story-step-refined strong {
    font-size: .98rem;
    line-height: 1.05;
  }

  .story-step-refined small {
    margin-top: 3px;
    font-size: .66rem;
    line-height: 1.2;
  }

  .craft-panel-refined {
    grid-template-areas: "image" "steps" "preview";
  }

  .craft-image-slot,
  .craft-slideshow .slideshow-frame {
    min-height: 0;
    height: clamp(245px, 68vw, 335px);
  }

  .craft-steps-refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .craft-choice-card,
  .craft-steps-refined .premium-card {
    min-height: 112px;
    padding: 14px 11px;
    border-radius: 18px;
  }

  .craft-choice-card .card-number {
    font-size: .75rem;
  }

  .craft-choice-card h3 {
    margin-top: 8px;
    font-size: .98rem;
    line-height: 1.05;
  }

  .craft-choice-card p {
    display: none;
  }

  .whatsapp-preview-refined {
    border-radius: 22px;
    padding: 18px;
  }

  .signature-grid,
  .more-showcase,
  .ingredient-gallery {
    grid-template-columns: 1fr !important;
  }

  .more-showcase {
    gap: 12px;
  }

  .shop-card {
    grid-template-columns: 86px 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .shop-card-media {
    min-height: 86px;
    height: 86px;
    border-radius: 18px;
  }

  .shop-card h3 {
    font-size: 1.03rem;
  }

  .shop-card p {
    font-size: .82rem;
    line-height: 1.35;
  }

  .mini-action {
    min-height: 40px;
    padding-inline: 12px;
  }

  .event-image-slot {
    min-height: 0;
    height: clamp(260px, 72vw, 360px);
  }

  .event-copy {
    padding: 20px;
    border-radius: 24px;
  }

  .event-tags,
  .premium-event-tags {
    gap: 8px;
  }

  .event-tags span,
  .premium-event-tags span,
  .event-service-grid span {
    min-height: 38px;
    padding: 8px 10px;
    font-size: .78rem;
  }

  .event-service-grid,
  .refined-contact-actions,
  .contact-detail-grid {
    grid-template-columns: 1fr !important;
  }

  .location-card,
  .contact-mini-card {
    border-radius: 20px;
    padding: 16px;
  }

  .visit-photo-slot {
    min-height: 180px;
  }

  .live-map-card {
    min-height: 340px;
  }

  .map-overlay-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    border-radius: 18px;
  }

  .footer-inner {
    gap: 10px;
  }
}

@media (max-width: 440px) {
  .container,
  .opening-grid {
    width: min(calc(100% - 22px), var(--max));
  }

  .scene {
    padding-block: 50px;
  }

  .scene-opening {
    padding-block: 22px 48px;
  }

  .opening-grid {
    gap: 18px;
  }

  .opening-copy h1 {
    font-size: clamp(2.36rem, 12.8vw, 3.18rem);
    max-width: 9.6ch;
  }

  .scene-lead {
    font-size: .91rem;
    line-height: 1.48;
    margin-top: 12px;
  }

  .brand-line {
    font-size: .76rem;
  }

  .opening-slideshow,
  .opening-slideshow .slideshow-frame,
  .patta-image-slot {
    height: clamp(238px, 68vw, 292px);
    min-height: 238px;
    max-height: 292px;
  }

  .story-image-slot,
  .process-slideshow .slideshow-frame {
    height: clamp(220px, 64vw, 278px);
    min-height: 220px;
  }

  .craft-image-slot,
  .craft-slideshow .slideshow-frame {
    height: clamp(228px, 68vw, 292px);
  }

  .story-step-strip,
  .craft-steps-refined {
    gap: 8px;
  }

  .story-step-refined {
    min-height: 90px;
    padding: 11px 8px;
  }

  .story-step-refined small {
    display: none;
  }

  .craft-choice-card,
  .craft-steps-refined .premium-card {
    min-height: 96px;
    padding: 12px 8px;
  }

  .craft-choice-card h3 {
    font-size: .91rem;
  }

  .shop-card {
    grid-template-columns: 74px 1fr;
  }

  .shop-card .mini-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .shop-card-media {
    width: 74px;
    height: 74px;
    min-height: 74px;
  }

  .live-map-card {
    min-height: 315px;
  }
}

@media (max-width: 360px) {
  .brand-text strong {
    max-width: 190px;
  }

  .opening-copy h1 {
    font-size: 2.24rem;
  }

  .btn {
    font-size: .88rem;
    padding-inline: 12px;
  }

  .story-step-strip,
  .craft-steps-refined {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PHASE IX-C — MOBILE FINAL HARDENING
   Purpose: final mobile-safe pass for small phones, normal phones,
   tablets, tap targets, overflow guards, crop stability, and
   deploy-ready reliability. Placed last intentionally.
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 86px;
}

body {
  min-width: 0;
  overscroll-behavior-x: none;
}

*,
*::before,
*::after {
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

img {
  height: auto;
}

a,
button,
.btn,
.nav-toggle,
.slideshow-dot,
.slide-step,
.craft-choice-card,
.mini-action {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 162, 77, .22);
}

[data-slideshow-scope] {
  isolation: isolate;
}

.slideshow-frame {
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.slideshow-slide img {
  transform-origin: center;
  will-change: transform, opacity;
}

.primary-nav,
.button-row,
.contact-actions,
.refined-contact-actions,
.collection-actions,
.more-actions,
.event-tags,
.premium-event-tags,
.event-service-grid,
.story-step-strip,
.craft-steps-refined,
.signature-grid,
.more-showcase,
.ingredient-gallery,
.contact-detail-grid {
  max-width: 100%;
}

@media (hover: none), (pointer: coarse) {
  .premium-card:hover,
  .signature-card:hover,
  .shop-card:hover,
  .craft-choice-card:hover,
  .story-step-refined:hover,
  .btn:hover,
  .text-link:hover {
    transform: none !important;
  }
}

@media (max-width: 880px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
    z-index: 1000;
  }

  .header-inner {
    width: min(calc(100% - 22px), var(--wide));
  }

  .primary-nav {
    left: max(11px, env(safe-area-inset-left, 11px));
    right: max(11px, env(safe-area-inset-right, 11px));
    max-width: calc(100vw - 22px);
    box-sizing: border-box;
  }

  .primary-nav a,
  .nav-toggle,
  .btn,
  .mini-action,
  .slideshow-dot,
  .story-step-refined,
  .craft-choice-card {
    cursor: pointer;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .scene,
  .scene-opening,
  .scene-ivory,
  .scene-soft,
  .scene-dark {
    overflow-x: clip;
  }

  .scene {
    scroll-margin-top: 76px;
  }

  .container,
  .opening-grid,
  .header-inner {
    box-sizing: border-box;
  }

  .opening-copy,
  .scene-heading,
  .section-title,
  .more-copy,
  .event-copy,
  .visit-heading,
  .contact-mini-card,
  .location-card {
    overflow-wrap: anywhere;
  }

  .opening-copy h1,
  h2,
  h3 {
    text-wrap: balance;
  }

  .scene-opening {
    padding-top: max(24px, env(safe-area-inset-top, 0px));
  }

  .opening-grid {
    min-height: 0;
  }

  .opening-copy .scene-kicker {
    max-width: fit-content;
  }

  .opening-copy h1 {
    margin-bottom: 0;
  }

  .patta-stage {
    width: 100%;
    max-width: 100%;
  }

  .site-slideshow,
  .slideshow-frame,
  .image-slot,
  .story-image-slot,
  .craft-image-slot,
  .opening-slideshow,
  .patta-image-slot {
    width: 100%;
    max-width: 100%;
  }

  .slideshow-slide,
  .slideshow-slide img {
    width: 100%;
    height: 100%;
  }

  .slideshow-ui,
  .opening-slideshow .slideshow-ui,
  .slideshow-ui.compact {
    max-width: calc(100vw - 36px);
    box-sizing: border-box;
  }

  .slideshow-dot {
    min-height: 32px;
    padding: 14px 0;
    background-clip: content-box;
  }

  .story-step-refined,
  .craft-choice-card,
  .btn,
  .mini-action,
  .contact-mini-card,
  .location-card,
  .event-tags span,
  .premium-event-tags span,
  .event-service-grid span {
    min-height: 44px;
  }

  .story-step-refined,
  .craft-choice-card {
    display: grid;
    align-content: center;
  }

  .story-step-strip,
  .craft-steps-refined {
    align-items: stretch;
  }

  .process-slideshow .slideshow-slide:nth-child(1) img { object-position: 48% 50%; }
  .process-slideshow .slideshow-slide:nth-child(2) img { object-position: 52% 50%; }
  .process-slideshow .slideshow-slide:nth-child(3) img { object-position: 56% 50%; }
  .process-slideshow .slideshow-slide:nth-child(4) img { object-position: 50% 50%; }
  .craft-slideshow .slideshow-slide:nth-child(1) img { object-position: 50% 50%; }
  .craft-slideshow .slideshow-slide:nth-child(2) img { object-position: 50% 50%; }
  .craft-slideshow .slideshow-slide:nth-child(3) img { object-position: 54% 50%; }
  .craft-slideshow .slideshow-slide:nth-child(4) img { object-position: 50% 50%; }

  .signature-media img,
  .ingredient-card img,
  .shop-card-media img,
  .event-image-slot img,
  .visit-photo-slot img {
    object-fit: cover;
  }

  .map-overlay-card,
  .live-map-card,
  .visit-map,
  .map-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-inner {
    width: min(calc(100% - 18px), var(--wide));
    min-height: 62px;
  }

  .brand {
    max-width: calc(100% - 52px);
  }

  .brand-text strong {
    max-width: 210px;
  }

  .primary-nav {
    top: 72px;
  }

  .scene-opening {
    padding-bottom: 46px;
  }

  .button-row .btn + .btn {
    margin-top: 0;
  }

  .opening-slideshow,
  .opening-slideshow .slideshow-frame,
  .patta-image-slot {
    height: clamp(232px, 66vw, 286px);
  }

  .story-image-slot,
  .process-slideshow .slideshow-frame {
    height: clamp(214px, 62vw, 270px);
  }

  .craft-image-slot,
  .craft-slideshow .slideshow-frame {
    height: clamp(222px, 64vw, 286px);
  }

  .slideshow-ui,
  .opening-slideshow .slideshow-ui,
  .slideshow-ui.compact {
    padding: 8px 10px;
  }

  .footer-inner,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 390px) {
  .brand-text strong {
    max-width: 178px;
  }

  .opening-copy h1 {
    font-size: clamp(2.18rem, 12.6vw, 2.9rem);
    letter-spacing: -.045em;
  }

  .scene-lead,
  .scene-heading p,
  .section-title p {
    font-size: .89rem;
  }

  .story-step-refined,
  .craft-choice-card,
  .craft-steps-refined .premium-card {
    min-height: 88px;
  }
}

@media (max-width: 340px) {
  .container,
  .opening-grid {
    width: min(calc(100% - 18px), var(--max));
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-text strong {
    max-width: 155px;
    font-size: .86rem;
  }

  .opening-copy h1 {
    font-size: 2.02rem;
    max-width: 10ch;
  }

  .opening-slideshow,
  .opening-slideshow .slideshow-frame,
  .patta-image-slot,
  .story-image-slot,
  .process-slideshow .slideshow-frame,
  .craft-image-slot,
  .craft-slideshow .slideshow-frame {
    min-height: 206px;
    height: 206px;
  }

  .btn {
    min-height: 44px;
    font-size: .84rem;
  }
}

/* =========================================================
   M2 MOBILE SHOP CARD CORRECTION
   Fix: product section images must not become tiny edge thumbnails.
   On mobile each shop item becomes a premium vertical image card.
   ========================================================= */
@media (max-width: 760px) {
  .more-section {
    overflow: hidden;
  }

  .more-showcase {
    gap: 22px !important;
  }

  .shop-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    gap: 0 !important;
    align-items: stretch !important;
    overflow: hidden !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(246,232,202,.92)) !important;
    border: 1px solid rgba(201,162,77,.42) !important;
    box-shadow: 0 22px 48px rgba(3,26,21,.14) !important;
  }

  .shop-card-media {
    grid-column: 1 !important;
    width: 100% !important;
    height: clamp(190px, 56vw, 260px) !important;
    min-height: clamp(190px, 56vw, 260px) !important;
    max-height: 280px !important;
    display: block !important;
    align-self: stretch !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .shop-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3,26,21,0), rgba(3,26,21,.24));
    pointer-events: none;
  }

  .shop-card-media img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .shop-card > div:not(.shop-card-media) {
    grid-column: 1 !important;
    padding: 18px 18px 7px !important;
    background: linear-gradient(180deg, rgba(255,250,238,.99), rgba(255,246,228,.94)) !important;
  }

  .shop-card h3 {
    font-size: clamp(1.18rem, 5.2vw, 1.45rem) !important;
    line-height: 1.1 !important;
    margin: 0 0 7px !important;
  }

  .shop-card p {
    font-size: .92rem !important;
    line-height: 1.45 !important;
    max-width: none !important;
  }

  .shop-card .mini-action {
    grid-column: 1 !important;
    justify-self: start !important;
    width: auto !important;
    min-width: 92px !important;
    min-height: 44px !important;
    margin: 13px 18px 20px !important;
    padding-inline: 18px !important;
  }
}

@media (max-width: 420px) {
  .more-showcase {
    gap: 18px !important;
  }

  .shop-card {
    border-radius: 26px !important;
  }

  .shop-card-media {
    height: clamp(168px, 54vw, 214px) !important;
    min-height: clamp(168px, 54vw, 214px) !important;
  }

  .shop-card > div:not(.shop-card-media) {
    padding: 16px 16px 6px !important;
  }

  .shop-card .mini-action {
    margin: 12px 16px 18px !important;
  }
}


/* Phase W1 — Navigation architecture and inner page foundations */
.primary-nav a[aria-current="page"] {
  color: var(--gold);
  border-color: rgba(212, 176, 88, .52);
  background: rgba(212, 176, 88, .12);
}

.site-page {
  background: radial-gradient(circle at top left, rgba(212, 176, 88, .12), transparent 28%), var(--cream);
}

.inner-hero {
  min-height: 72vh;
  padding: clamp(110px, 14vw, 160px) 0 clamp(56px, 8vw, 92px);
  background: linear-gradient(135deg, #04251e 0%, #062f27 48%, #061c17 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 72% 30%, rgba(212,176,88,.22), transparent 30%), radial-gradient(circle at 0% 100%, rgba(115,35,42,.2), transparent 32%);
  pointer-events: none;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.inner-hero h1 {
  margin: 0 0 16px;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.inner-hero .scene-lead {
  max-width: 620px;
}

.inner-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(212,176,88,.48);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  aspect-ratio: 4 / 3;
  background: #021b16;
}

.inner-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inner-section {
  padding: clamp(56px, 8vw, 110px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.section-heading h2,
.inner-note h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: .96;
  color: var(--forest);
}

.page-card-grid,
.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.shop-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card,
.simple-grid article,
.inner-note {
  border: 1px solid rgba(155,118,36,.22);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,244,220,.92));
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(3, 32, 26, .08);
  overflow: hidden;
}

.page-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.page-card div,
.simple-grid article,
.inner-note {
  padding: clamp(20px, 3vw, 30px);
}

.page-card h3,
.simple-grid h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  color: var(--forest);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.page-card p,
.simple-grid p,
.inner-note p {
  margin: 0 0 16px;
  color: rgba(16, 48, 39, .76);
  line-height: 1.55;
}

.inner-note-section {
  padding-top: 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(360px, 1.25fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.contact-page-grid .map-card {
  min-height: 420px;
}

@media (max-width: 920px) {
  .inner-hero-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .page-card-grid,
  .shop-page-grid,
  .simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .inner-hero {
    min-height: auto;
    padding: 96px 0 46px;
  }

  .inner-hero h1 {
    font-size: clamp(2.52rem, 13vw, 4rem);
    line-height: .95;
  }

  .inner-hero-grid {
    gap: 24px;
  }

  .inner-hero-photo {
    border-radius: 28px;
    aspect-ratio: 4 / 3;
  }

  .page-card-grid,
  .shop-page-grid,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .page-card,
  .simple-grid article,
  .inner-note {
    border-radius: 26px;
  }

  .page-card div,
  .simple-grid article,
  .inner-note {
    padding: 18px;
  }

  .contact-page-grid .map-card {
    min-height: 320px;
  }
}

/* Phase W2 — Pan Menu full page design */
.pan-menu-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 162, 77, .12), transparent 24%),
    linear-gradient(180deg, #fff5df 0%, #f3e4c4 100%);
}

.menu-hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 162, 77, .24), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(143, 31, 45, .22), transparent 26%),
    linear-gradient(135deg, var(--forest) 0%, var(--deep-green) 55%, #02120f 100%);
  padding: clamp(104px, 13vw, 150px) 0 clamp(58px, 8vw, 92px);
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,77,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,77,.06) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .22;
  pointer-events: none;
}

.menu-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
}

.menu-hero h1 {
  font-size: clamp(3.25rem, 7vw, 7rem);
  line-height: .9;
  max-width: 760px;
}

.menu-hero-copy .button-row {
  margin-top: 26px;
}

.menu-hero-visual {
  margin: 0;
  position: relative;
  border-radius: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, .52);
  background: #031a15;
  box-shadow: 0 34px 92px rgba(0,0,0,.34);
  aspect-ratio: 5 / 4;
}

.menu-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,26,21,0) 52%, rgba(3,26,21,.72)),
    radial-gradient(circle at 50% 30%, transparent 45%, rgba(3,26,21,.22));
  pointer-events: none;
}

.menu-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.menu-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,.44);
  background: rgba(3,26,21,.72);
  color: rgba(255,246,228,.84);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.menu-section {
  position: relative;
  padding: clamp(58px, 8vw, 112px) 0;
}

.menu-section-head {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.menu-section-head h2,
.menu-order-card h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(2.25rem, 5vw, 5rem);
}

.menu-section-head p:not(.scene-kicker),
.menu-order-card p {
  color: rgba(19,37,29,.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 660px;
}

.menu-pan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.menu-pan-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(155,118,36,.26);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,241,210,.94));
  box-shadow: 0 20px 55px rgba(3, 32, 26, .11);
}

.menu-pan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.44);
  pointer-events: none;
  z-index: 2;
}

.menu-pan-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.menu-pan-body {
  padding: clamp(18px, 2.4vw, 26px);
}

.menu-pan-body span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,.36);
  background: rgba(6,45,34,.08);
  color: var(--maroon);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-pan-body h3 {
  color: var(--forest);
  margin-bottom: 9px;
}

.menu-pan-body p {
  color: rgba(19,37,29,.72);
  margin-bottom: 16px;
}

.menu-craft-flow {
  background:
    radial-gradient(circle at 84% 10%, rgba(201,162,77,.15), transparent 28%),
    linear-gradient(135deg, #05231d, #021612);
  color: var(--ivory);
}

.menu-craft-flow .menu-section-head h2,
.menu-craft-flow .menu-section-head p:not(.scene-kicker) {
  color: var(--ivory);
}

.menu-craft-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.menu-choice-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-choice-board article {
  min-height: 210px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 30px;
  border: 1px solid rgba(201,162,77,.26);
  background: linear-gradient(180deg, rgba(255,246,228,.11), rgba(255,246,228,.04));
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.menu-choice-board span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-weight: 950;
  letter-spacing: .16em;
}

.menu-choice-board h3 {
  margin-bottom: 10px;
  color: var(--ivory);
}

.menu-choice-board p {
  margin: 0;
  color: rgba(255,246,228,.72);
}

.menu-ingredients {
  background: linear-gradient(180deg, var(--ivory), #f3e3c0);
}

.menu-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.menu-ingredient-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(6,45,34,.96);
  color: var(--ivory);
  border: 1px solid rgba(201,162,77,.28);
  box-shadow: 0 20px 50px rgba(3,32,26,.12);
}

.menu-ingredient-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.menu-ingredient-card h3 {
  padding: 14px 16px 17px;
  color: var(--ivory);
  font-size: 1.18rem;
}

.menu-order-strip {
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,77,.14), transparent 30%),
    var(--ivory);
}

.menu-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 36px;
  border: 1px solid rgba(155,118,36,.26);
  background: linear-gradient(135deg, rgba(255,250,238,.98), rgba(255,241,210,.94));
  box-shadow: 0 22px 70px rgba(3,32,26,.10);
}

.menu-order-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (min-width: 981px) {
  .menu-pan-card.is-featured {
    grid-column: span 1;
  }
}

@media (max-width: 980px) {
  .menu-hero-grid,
  .menu-craft-grid,
  .menu-order-card {
    grid-template-columns: 1fr;
  }

  .menu-pan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-ingredient-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-order-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .menu-hero {
    padding: 94px 0 46px;
  }

  .menu-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.35rem);
    line-height: .92;
  }

  .menu-hero-visual {
    border-radius: 30px;
    aspect-ratio: 4 / 3;
  }

  .menu-hero-visual figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: .64rem;
  }

  .menu-section {
    padding: 52px 0;
  }

  .menu-pan-grid,
  .menu-choice-board,
  .menu-ingredient-grid {
    grid-template-columns: 1fr;
  }

  .menu-pan-card,
  .menu-choice-board article,
  .menu-ingredient-card,
  .menu-order-card {
    border-radius: 26px;
  }

  .menu-pan-card img {
    aspect-ratio: 16 / 11;
  }

  .menu-choice-board article {
    min-height: auto;
  }

  .menu-ingredient-grid {
    gap: 14px;
  }

  .menu-ingredient-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: center;
  }

  .menu-ingredient-card img {
    height: 104px;
    aspect-ratio: auto;
  }

  .menu-ingredient-card h3 {
    padding: 12px 14px;
  }

  .menu-order-actions .btn,
  .menu-hero-copy .button-row .btn {
    width: 100%;
  }
}

/* Phase W3 — Events page full design */
.events-page-detail {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 162, 77, .12), transparent 24%),
    linear-gradient(180deg, #fff5df 0%, #f3e4c4 100%);
}

.event-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 16%, rgba(201, 162, 77, .26), transparent 25%),
    radial-gradient(circle at 8% 86%, rgba(143, 31, 45, .22), transparent 26%),
    linear-gradient(135deg, var(--forest), var(--deep-green) 58%, #02120f);
  padding: clamp(104px, 13vw, 152px) 0 clamp(58px, 8vw, 94px);
}

.event-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,77,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,77,.06) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .21;
  pointer-events: none;
}

.event-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
}

.event-page-hero h1 {
  font-size: clamp(3.15rem, 6.8vw, 7rem);
  line-height: .9;
  max-width: 760px;
}

.event-page-hero .button-row { margin-top: 26px; }

.event-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.event-hero-points span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,.34);
  background: rgba(255,246,228,.08);
  color: rgba(255,246,228,.78);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-page-hero-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(201,162,77,.52);
  background: #031a15;
  box-shadow: 0 34px 92px rgba(0,0,0,.34);
  aspect-ratio: 5 / 4;
}

.event-page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,26,21,0) 52%, rgba(3,26,21,.74)),
    radial-gradient(circle at 50% 30%, transparent 45%, rgba(3,26,21,.22));
  pointer-events: none;
}

.event-page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.event-page-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  max-width: calc(100% - 40px);
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,.44);
  background: rgba(3,26,21,.72);
  color: rgba(255,246,228,.84);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.event-section {
  position: relative;
  padding: clamp(58px, 8vw, 112px) 0;
}

.event-section-head {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.event-section-head h2,
.event-service-copy h2,
.event-inquiry-card-page h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(2.25rem, 5vw, 5rem);
}

.event-section-head p:not(.scene-kicker),
.event-service-copy p,
.event-inquiry-card-page p {
  max-width: 660px;
  color: rgba(19,37,29,.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.event-occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.event-occasion-card,
.event-flow-list article,
.event-inquiry-steps article {
  border-radius: 30px;
  border: 1px solid rgba(155,118,36,.25);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,241,210,.92));
  box-shadow: 0 20px 55px rgba(3,32,26,.10);
}

.event-occasion-card {
  min-height: 214px;
  padding: clamp(20px, 2.8vw, 30px);
}

.event-occasion-card span,
.event-flow-list strong,
.event-inquiry-steps span {
  color: var(--maroon);
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.event-occasion-card h3 {
  margin: 18px 0 10px;
  color: var(--forest);
}

.event-occasion-card p,
.event-flow-list small,
.event-inquiry-steps small,
.event-option-card p {
  margin: 0;
  color: rgba(19,37,29,.70);
}

.event-service-story {
  color: var(--ivory);
  background:
    radial-gradient(circle at 84% 10%, rgba(201,162,77,.15), transparent 28%),
    linear-gradient(135deg, #05231d, #021612);
}

.event-service-grid-page {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
}

.event-service-story .event-service-copy h2,
.event-service-story .event-service-copy p {
  color: var(--ivory);
}

.event-flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.event-flow-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,246,228,.11), rgba(255,246,228,.04));
  border-color: rgba(201,162,77,.25);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.event-flow-list strong { color: var(--gold-bright); }
.event-flow-list small { color: rgba(255,246,228,.72); }

.event-service-visuals {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(2, 190px);
  gap: 16px;
}

.event-service-visuals figure {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(201,162,77,.34);
  background: #031a15;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.event-service-visuals figure:first-child {
  grid-row: span 2;
}

.event-service-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-menu-options {
  background: linear-gradient(180deg, var(--ivory), #f3e3c0);
}

.event-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.event-option-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(155,118,36,.26);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,241,210,.94));
  box-shadow: 0 20px 55px rgba(3,32,26,.10);
}

.event-option-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.event-option-card div { padding: 18px; }
.event-option-card h3 { color: var(--forest); margin-bottom: 8px; }

.event-option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-inquiry {
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,77,.16), transparent 28%),
    linear-gradient(135deg, var(--deep-green), var(--forest));
}

.event-inquiry-card-page {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4.2vw, 48px);
  border-radius: 40px;
  border: 1px solid rgba(201,162,77,.35);
  background: linear-gradient(135deg, rgba(255,246,228,.10), rgba(255,246,228,.04));
  box-shadow: 0 28px 90px rgba(0,0,0,.24);
}

.event-inquiry-card-page h2,
.event-inquiry-card-page p { color: var(--ivory); }

.event-inquiry-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.event-inquiry-steps article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255,246,228,.94);
}

.event-inquiry-steps strong { color: var(--forest); }
.event-inquiry-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 980px) {
  .event-page-hero-grid,
  .event-service-grid-page,
  .event-inquiry-card-page {
    grid-template-columns: 1fr;
  }

  .event-occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .event-page-hero {
    padding: 94px 0 46px;
  }

  .event-page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
    line-height: .92;
  }

  .event-page-hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: 30px;
  }

  .event-page-hero-visual figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: .64rem;
  }

  .event-section {
    padding: 52px 0;
  }

  .event-occasion-grid,
  .event-flow-list,
  .event-option-grid,
  .event-inquiry-steps {
    grid-template-columns: 1fr;
  }

  .event-service-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .event-service-visuals figure,
  .event-service-visuals figure:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .event-occasion-card,
  .event-flow-list article,
  .event-option-card,
  .event-inquiry-card-page,
  .event-inquiry-steps article {
    border-radius: 26px;
  }

  .event-option-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
  }

  .event-option-card img {
    height: 112px;
    aspect-ratio: auto;
  }

  .event-page-hero .button-row .btn,
  .event-option-actions .btn,
  .event-inquiry-actions .btn {
    width: 100%;
  }
}

/* Phase W4 — Products + Contact full page design */
.more-than-page,
.contact-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(207, 170, 86, .14), transparent 26%),
    linear-gradient(180deg, #fff7e8 0%, #f4e3bf 100%);
}

.w4-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 13vw, 158px) 0 clamp(56px, 8vw, 94px);
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 176, 88, .24), transparent 26%),
    radial-gradient(circle at 6% 96%, rgba(124, 35, 42, .24), transparent 26%),
    linear-gradient(135deg, #03251f 0%, #06362c 58%, #03130f 100%);
}

.w4-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 16, 13, .26), transparent 52%);
  pointer-events: none;
}

.w4-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.w4-hero h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.062em;
}

.w4-hero .scene-lead {
  max-width: 650px;
}

.w4-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr .86fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: clamp(380px, 45vw, 560px);
}

.w4-hero-mosaic figure,
.w4-contact-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 88, .46);
  background: #021912;
  box-shadow: 0 26px 70px rgba(0,0,0,.30);
}

.w4-hero-mosaic figure:first-child {
  grid-row: 1 / 3;
  border-radius: 42px;
}

.w4-hero-mosaic figure:nth-child(2),
.w4-hero-mosaic figure:nth-child(3) {
  border-radius: 32px;
}

.w4-hero-mosaic img,
.w4-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.w4-hero-mosaic figure:first-child img { object-position: center; }
.w4-hero-mosaic figure:nth-child(2) img { object-position: center; }
.w4-hero-mosaic figure:nth-child(3) img { object-position: center; }

.w4-section {
  padding: clamp(58px, 8vw, 112px) 0;
}

.w4-centered-heading {
  margin-inline: auto;
  text-align: center;
}

.w4-centered-heading p:not(.scene-kicker) {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(16, 48, 39, .72);
  line-height: 1.55;
}

.w4-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.w4-category-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(155, 118, 36, .22);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,244,222,.94));
  box-shadow: 0 24px 65px rgba(3, 32, 26, .09);
}

.w4-category-card figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #06241e;
}

.w4-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.012);
}

.w4-card-body {
  padding: clamp(20px, 3vw, 30px);
}

.w4-card-body span,
.w4-action-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(134, 93, 24, .92);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

.w4-card-body h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--forest);
  line-height: 1;
}

.w4-card-body p {
  margin: 0 0 18px;
  color: rgba(16, 48, 39, .74);
  line-height: 1.55;
}

.w4-utility-band {
  padding-top: 0;
}

.w4-split-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border-radius: 38px;
  border: 1px solid rgba(212, 176, 88, .28);
  background: linear-gradient(135deg, #053428, #08241e);
  color: var(--ivory);
  padding: clamp(26px, 5vw, 54px);
  box-shadow: 0 28px 75px rgba(3, 32, 26, .18);
}

.w4-split-panel h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .96;
}

.w4-split-panel p {
  margin: 0;
  max-width: 610px;
  color: rgba(255, 250, 238, .75);
  line-height: 1.6;
}

.w4-mini-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.w4-mini-steps article {
  min-height: 104px;
  border: 1px solid rgba(212, 176, 88, .25);
  border-radius: 24px;
  background: rgba(255, 250, 238, .07);
  padding: 18px;
}

.w4-mini-steps strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.w4-mini-steps span {
  color: rgba(255,250,238,.82);
  line-height: 1.35;
}

.w4-contact-photo {
  border-radius: 42px;
  aspect-ratio: 4 / 3;
}

.w4-contact-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.w4-action-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  border: 1px solid rgba(155, 118, 36, .22);
  background: linear-gradient(180deg, rgba(255,250,238,.99), rgba(255,244,222,.94));
  box-shadow: 0 20px 55px rgba(3,32,26,.08);
  padding: clamp(18px, 2.5vw, 28px);
  color: var(--forest);
  text-decoration: none;
}

.w4-action-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.w4-action-card small {
  color: rgba(16,48,39,.66);
  line-height: 1.35;
}

.w4-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(380px, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.w4-address-panel {
  border-radius: 34px;
  border: 1px solid rgba(155,118,36,.22);
  background: linear-gradient(180deg, rgba(255,250,238,.99), rgba(255,244,222,.94));
  box-shadow: 0 20px 60px rgba(3,32,26,.08);
  padding: clamp(22px, 4vw, 38px);
}

.w4-address-panel h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: .96;
}

.w4-detail-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.w4-detail-list p {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(155,118,36,.18);
}

.w4-detail-list strong,
.w4-detail-list span {
  display: block;
}

.w4-detail-list strong {
  margin-bottom: 5px;
  color: rgba(134, 93, 24, .92);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
}

.w4-detail-list span {
  color: rgba(16,48,39,.76);
  line-height: 1.5;
}

.w4-map-card {
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
}

@media (hover: hover) {
  .w4-category-card:hover img { transform: scale(1.045); transition: transform .8s ease; }
  .w4-action-card:hover { transform: translateY(-3px); transition: transform .25s ease; }
}

@media (max-width: 980px) {
  .w4-hero-grid,
  .w4-split-panel,
  .w4-contact-layout {
    grid-template-columns: 1fr;
  }

  .w4-contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .w4-hero {
    padding: 94px 0 46px;
  }

  .w4-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 4.05rem);
    line-height: .94;
  }

  .w4-hero-grid {
    gap: 24px;
  }

  .w4-hero-mosaic {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .w4-hero-mosaic figure:first-child,
  .w4-hero-mosaic figure:nth-child(2),
  .w4-hero-mosaic figure:nth-child(3) {
    grid-row: auto;
    border-radius: 26px;
    aspect-ratio: 16 / 10;
  }

  .w4-hero-mosaic figure:nth-child(2),
  .w4-hero-mosaic figure:nth-child(3) {
    display: none;
  }

  .w4-shop-grid,
  .w4-contact-actions,
  .w4-mini-steps {
    grid-template-columns: 1fr;
  }

  .w4-category-card {
    border-radius: 28px;
  }

  .w4-category-card figure {
    aspect-ratio: 16 / 10;
    min-height: 198px;
  }

  .w4-card-body {
    padding: 18px;
  }

  .w4-split-panel {
    border-radius: 28px;
    padding: 22px;
  }

  .w4-mini-steps article {
    min-height: 84px;
  }

  .w4-contact-photo,
  .w4-address-panel,
  .w4-map-card,
  .w4-action-card {
    border-radius: 26px;
  }

  .w4-map-card {
    min-height: 330px;
  }
}


/* Phase C2 — compact premium contact page implementation */
.contact-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(207, 170, 86, .13), transparent 24%),
    linear-gradient(180deg, #fff7e8 0%, #f3e1bb 100%);
}

.c2-contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 10vw, 128px) 0 clamp(28px, 4.8vw, 58px);
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 22%, rgba(212,176,88,.24), transparent 26%),
    radial-gradient(circle at 8% 92%, rgba(124,35,42,.24), transparent 24%),
    linear-gradient(135deg, #03251f 0%, #07392e 58%, #03130f 100%);
}

.c2-contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,88,.55), transparent);
}

.c2-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.c2-contact-copy h1 {
  margin: 0 0 14px;
  max-width: 660px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.058em;
}

.c2-contact-copy h1 span { display: block; }
.c2-contact-copy .scene-lead { max-width: 560px; margin-bottom: 22px; color: rgba(255,250,238,.78); }

.c2-hero-actions,
.c2-card-actions,
.c2-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.c2-contact-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  max-height: 390px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(212,176,88,.42);
  background: #021912;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.c2-contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2,16,13,.74));
  pointer-events: none;
}

.c2-contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c2-contact-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 3px;
  color: var(--ivory);
}

.c2-contact-visual figcaption strong { font-family: var(--serif); font-size: 1.35rem; }
.c2-contact-visual figcaption span { color: rgba(255,250,238,.78); font-size: .92rem; }

.c2-action-strip,
.c2-location-section,
.c2-inquiry-section,
.c2-final-cta { padding: clamp(22px, 4vw, 48px) 0; }
.c2-action-strip { padding-top: clamp(20px, 3vw, 34px); }

.c2-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.c2-action-pill,
.c2-inquiry-card {
  display: grid;
  gap: 5px;
  text-decoration: none;
  border-radius: 24px;
  border: 1px solid rgba(155,118,36,.24);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,244,222,.94));
  box-shadow: 0 16px 42px rgba(3,32,26,.07);
  color: var(--forest);
}

.c2-action-pill { padding: 18px 20px; }
.c2-action-pill span,
.c2-inquiry-card span,
.c2-map-head span {
  color: rgba(134, 93, 24, .92);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 850;
}
.c2-action-pill strong { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem); }

.c2-location-grid {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(420px, 1.24fr);
  gap: clamp(18px, 3.2vw, 38px);
  align-items: stretch;
}

.c2-address-card,
.c2-map-panel,
.c2-final-panel {
  border-radius: 30px;
  border: 1px solid rgba(155,118,36,.24);
  background: linear-gradient(180deg, rgba(255,250,238,.99), rgba(255,244,222,.95));
  box-shadow: 0 22px 60px rgba(3,32,26,.08);
}

.c2-address-card { padding: clamp(20px, 3.3vw, 34px); }
.c2-address-card h2 {
  margin: 0 0 18px;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: .98;
  color: var(--forest);
  letter-spacing: -.035em;
}

.c2-detail-stack { display: grid; gap: 10px; margin-bottom: 20px; }
.c2-detail-stack p {
  margin: 0;
  padding: 13px 0 0;
  border-top: 1px solid rgba(155,118,36,.18);
}
.c2-detail-stack strong,
.c2-detail-stack span { display: block; }
.c2-detail-stack strong {
  margin-bottom: 4px;
  color: rgba(134, 93, 24, .92);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
}
.c2-detail-stack span { color: rgba(16,48,39,.76); line-height: 1.45; }

.c2-map-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr);
  min-height: 520px;
}

.c2-map-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(4,43,34,.98), rgba(9,70,55,.94));
  color: var(--ivory);
}
.c2-map-head div { display: grid; gap: 3px; }
.c2-map-head strong { font-family: var(--serif); font-size: 1.18rem; line-height: 1.1; }
.c2-map-head span { color: var(--gold); }
.c2-map-top-btn { white-space: nowrap; padding-inline: 18px; }

.c2-map-frame {
  position: relative;
  min-height: 420px;
  background: #06241e;
}
.c2-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.9) contrast(1.02);
}

.c2-section-heading { text-align: center; margin: 0 auto 20px; max-width: 640px; }
.c2-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  color: var(--forest);
  line-height: .98;
}

.c2-inquiry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.c2-inquiry-card { padding: 20px; min-height: 118px; align-content: space-between; }
.c2-inquiry-card strong { font-family: var(--serif); font-size: 1.28rem; color: var(--forest); }

.c2-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, #053428, #08241e);
  color: var(--ivory);
}
.c2-final-panel h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: .98;
}
.c2-final-panel p:not(.scene-kicker) { margin: 0; color: rgba(255,250,238,.76); max-width: 650px; }

@media (hover: hover) {
  .c2-action-pill:hover,
  .c2-inquiry-card:hover { transform: translateY(-2px); transition: transform .25s ease; }
}

@media (max-width: 980px) {
  .c2-contact-hero-grid,
  .c2-location-grid,
  .c2-final-panel { grid-template-columns: 1fr; }
  .c2-action-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .c2-inquiry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c2-map-panel { min-height: auto; grid-template-rows: auto 390px; }
  .c2-map-frame { min-height: 390px; }
}

@media (max-width: 680px) {
  .c2-contact-hero { padding: 90px 0 24px; }
  .c2-contact-hero-grid { gap: 18px; }
  .c2-contact-copy h1 { font-size: clamp(2.5rem, 12vw, 3.85rem); line-height: .94; }
  .c2-contact-copy .scene-lead { margin-bottom: 16px; }
  .c2-hero-actions .btn,
  .c2-card-actions .btn,
  .c2-final-actions .btn,
  .c2-map-top-btn { width: 100%; justify-content: center; }
  .c2-contact-visual { border-radius: 24px; max-height: 250px; aspect-ratio: 16 / 10; }
  .c2-action-strip,
  .c2-location-section,
  .c2-inquiry-section,
  .c2-final-cta { padding: 18px 0; }
  .c2-action-grid,
  .c2-inquiry-grid { grid-template-columns: 1fr; gap: 10px; }
  .c2-action-pill { padding: 15px 16px; }
  .c2-address-card,
  .c2-map-panel,
  .c2-final-panel { border-radius: 24px; }
  .c2-address-card { padding: 18px; }
  .c2-address-card h2 { font-size: clamp(1.85rem, 9vw, 2.75rem); margin-bottom: 14px; }
  .c2-map-head { display: grid; padding: 16px; }
  .c2-map-panel { grid-template-rows: auto 320px; }
  .c2-map-frame { min-height: 320px; }
  .c2-inquiry-card { min-height: auto; padding: 16px; }
  .c2-final-panel { padding: 20px; }
}

@media (max-width: 380px) {
  .c2-contact-copy h1 { font-size: clamp(2.25rem, 11.5vw, 3.25rem); }
  .c2-contact-visual { max-height: 220px; }
  .c2-map-panel { grid-template-rows: auto 290px; }
  .c2-map-frame { min-height: 290px; }
}


/* Phase C3 — contact review + correction pass
   Goal: compact premium flow, no wasted space, visible directions, stable mobile map. */
.contact-page {
  overflow-x: hidden;
}

.c2-contact-hero {
  padding-top: clamp(84px, 8vw, 112px);
  padding-bottom: clamp(18px, 3.2vw, 36px);
}

.c2-contact-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, .58fr);
  gap: clamp(20px, 3vw, 44px);
}

.c2-contact-copy h1 {
  max-width: 620px;
  font-size: clamp(2.8rem, 5.1vw, 5rem);
  line-height: .94;
  margin-bottom: 12px;
}

.c2-contact-copy .scene-lead {
  max-width: 520px;
  margin-bottom: 18px;
}

.c2-hero-actions .btn,
.c2-card-actions .btn,
.c2-final-actions .btn {
  min-height: 46px;
}

.c2-contact-visual {
  max-height: 320px;
  border-radius: 30px;
  align-self: center;
}

.c2-contact-visual figcaption {
  bottom: 14px;
  left: 16px;
  right: 16px;
}

.c2-action-strip {
  padding-top: 18px;
  padding-bottom: 18px;
}

.c2-action-pill {
  min-height: 76px;
  align-content: center;
}

.c2-location-section {
  padding-top: 20px;
  padding-bottom: clamp(22px, 3.5vw, 40px);
}

.c2-location-grid {
  grid-template-columns: minmax(280px, .72fr) minmax(460px, 1.28fr);
  gap: clamp(16px, 2.6vw, 30px);
}

.c2-address-card,
.c2-map-panel,
.c2-final-panel {
  border-radius: 28px;
}

.c2-address-card {
  padding: clamp(18px, 2.6vw, 30px);
}

.c2-address-card h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
  margin-bottom: 14px;
}

.c2-detail-stack {
  gap: 8px;
  margin-bottom: 18px;
}

.c2-detail-stack p {
  padding-top: 11px;
}

.c2-map-panel {
  min-height: 0;
  grid-template-rows: auto minmax(430px, 1fr) auto;
}

.c2-map-head {
  padding: 15px 16px;
}

.c2-map-top-btn,
.c3-map-bottom-btn {
  background: linear-gradient(135deg, #7c232a, #a23c32);
  border-color: rgba(244, 208, 126, .5);
  color: var(--ivory);
  box-shadow: 0 16px 32px rgba(124, 35, 42, .22);
}

.c2-map-frame {
  min-height: 430px;
}

.c3-map-bottom-btn {
  margin: 14px 16px 16px;
  justify-content: center;
  min-height: 48px;
}

.c2-inquiry-section {
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(22px, 3.4vw, 42px);
}

.c2-section-heading {
  margin-bottom: 16px;
}

.c2-section-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.c2-inquiry-card {
  min-height: 104px;
  padding: 17px;
}

.c2-final-cta {
  padding-top: 18px;
}

.c2-final-panel {
  padding: clamp(20px, 3.2vw, 34px);
}

.c2-final-panel h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
}

@media (max-width: 980px) {
  .c2-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .c2-contact-visual {
    max-height: 300px;
    aspect-ratio: 16 / 8.5;
  }
  .c2-location-grid,
  .c2-final-panel {
    grid-template-columns: 1fr;
  }
  .c2-map-panel {
    grid-template-rows: auto 400px auto;
  }
  .c2-map-frame {
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .c2-contact-hero {
    padding-top: 78px;
    padding-bottom: 16px;
  }
  .c2-contact-hero-grid {
    gap: 14px;
  }
  .c2-contact-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: .96;
    letter-spacing: -.045em;
  }
  .c2-contact-copy .scene-lead {
    max-width: 100%;
    margin-bottom: 14px;
  }
  .c2-hero-actions {
    gap: 9px;
  }
  .c2-hero-actions .btn,
  .c2-card-actions .btn,
  .c2-final-actions .btn,
  .c2-map-top-btn,
  .c3-map-bottom-btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }
  .c2-contact-visual {
    border-radius: 22px;
    max-height: 190px;
    aspect-ratio: 16 / 8.6;
  }
  .c2-contact-visual figcaption strong {
    font-size: 1.05rem;
  }
  .c2-contact-visual figcaption span {
    font-size: .78rem;
  }
  .c2-action-strip,
  .c2-location-section,
  .c2-inquiry-section,
  .c2-final-cta {
    padding: 14px 0;
  }
  .c2-action-grid,
  .c2-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .c2-action-pill {
    min-height: 62px;
    padding: 13px 15px;
  }
  .c2-address-card,
  .c2-map-panel,
  .c2-final-panel {
    border-radius: 22px;
  }
  .c2-address-card {
    padding: 16px;
  }
  .c2-address-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
    margin-bottom: 12px;
  }
  .c2-map-head {
    display: grid;
    gap: 12px;
    padding: 14px;
  }
  .c2-map-panel {
    grid-template-rows: auto 330px auto;
  }
  .c2-map-frame {
    min-height: 330px;
  }
  .c3-map-bottom-btn {
    margin: 12px 14px 14px;
  }
  .c2-inquiry-card {
    min-height: 76px;
    padding: 15px;
  }
  .c2-final-panel {
    padding: 18px;
    gap: 16px;
  }
}

@media (max-width: 380px) {
  .c2-contact-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }
  .c2-contact-visual {
    max-height: 170px;
  }
  .c2-map-panel {
    grid-template-rows: auto 300px auto;
  }
  .c2-map-frame {
    min-height: 300px;
  }
}

/* Phase C4 — Contact button visibility fix
   Fix: Call the Shop was using a light/ghost secondary button on ivory cards.
   These overrides make contact actions high-contrast on light panels. */
.contact-page .c2-address-card .btn-secondary,
.contact-page .c2-card-actions .btn-secondary,
.contact-page a[href^="tel:"] {
  background: linear-gradient(135deg, #073127, #0d4a3a) !important;
  color: #fff6e4 !important;
  border: 1px solid rgba(201, 162, 77, 0.72) !important;
  box-shadow: 0 14px 30px rgba(3, 26, 21, 0.18) !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.contact-page .c2-address-card .btn-secondary:hover,
.contact-page .c2-card-actions .btn-secondary:hover,
.contact-page a[href^="tel:"]:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0b4739, #135f4b) !important;
  color: #fffaf0 !important;
  border-color: rgba(244, 208, 126, 0.92) !important;
}

.contact-page .c2-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-page .c2-card-actions .btn {
  min-width: 180px;
  text-align: center;
}

@media (max-width: 680px) {
  .contact-page .c2-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-page .c2-card-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/* Phase C5 — Contact premium actions correction
   Fixes duplicate map actions, Google Review placement, and Quick Inquiry premium styling. */
.contact-page .c5-map-panel {
  grid-template-rows: auto minmax(430px, 1fr) auto !important;
}

.contact-page .c5-map-head {
  padding: 18px 20px !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(244, 208, 126, .14), transparent 34%),
    linear-gradient(135deg, #04372c 0%, #07261f 100%) !important;
}

.contact-page .c5-map-head small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 246, 228, .7);
  font-weight: 700;
  letter-spacing: .01em;
}

.contact-page .c5-map-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 246, 228, .96), rgba(247, 230, 195, .98));
  border-top: 1px solid rgba(201, 162, 77, .28);
}

.contact-page .c5-map-actions .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  margin: 0 !important;
}

.contact-page .btn-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  color: #fff6e4 !important;
  background: linear-gradient(135deg, #073127, #0d4a3a) !important;
  border: 1px solid rgba(201, 162, 77, .72) !important;
  box-shadow: 0 14px 30px rgba(3, 26, 21, .16);
}

.contact-page .btn-review:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0b4739, #135f4b) !important;
  border-color: rgba(244, 208, 126, .92) !important;
}

.contact-page .c5-map-actions p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(7, 49, 39, .68);
  font-size: .92rem;
  text-align: center;
}

.contact-page .c2-inquiry-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 77, .12), transparent 42%),
    linear-gradient(180deg, rgba(255, 246, 228, .28), rgba(255, 246, 228, 0));
}

.contact-page .c5-inquiry-grid {
  gap: 16px;
}

.contact-page .c5-inquiry-card {
  position: relative;
  overflow: hidden;
  min-height: 132px !important;
  padding: 20px !important;
  display: grid;
  align-content: space-between;
  border-radius: 26px;
  border: 1px solid rgba(201, 162, 77, .42) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 208, 126, .13), transparent 34%),
    linear-gradient(145deg, #03251f 0%, #07392e 72%, #041812 100%) !important;
  box-shadow: 0 22px 48px rgba(3, 26, 21, .16), inset 0 1px 0 rgba(255, 246, 228, .08) !important;
}

.contact-page .c5-inquiry-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 208, 126, .72), transparent);
}

.contact-page .c5-inquiry-card span {
  color: #f4d07e !important;
  font-size: .7rem !important;
  letter-spacing: .18em;
}

.contact-page .c5-inquiry-card strong {
  color: #fff6e4 !important;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem) !important;
  line-height: 1.12;
}

.contact-page .c5-inquiry-card small {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff6e4;
  background: rgba(124, 35, 42, .9);
  border: 1px solid rgba(244, 208, 126, .34);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

@media (max-width: 980px) {
  .contact-page .c5-map-panel {
    grid-template-rows: auto 400px auto !important;
  }
}

@media (max-width: 680px) {
  .contact-page .c5-map-panel {
    grid-template-rows: auto 330px auto !important;
  }
  .contact-page .c5-map-actions {
    grid-template-columns: 1fr;
    padding: 12px 14px 14px;
  }
  .contact-page .c5-map-actions p {
    text-align: left;
    font-size: .88rem;
  }
  .contact-page .c5-inquiry-grid {
    gap: 11px;
  }
  .contact-page .c5-inquiry-card {
    min-height: 118px !important;
    padding: 17px !important;
    border-radius: 22px;
  }
  .contact-page .c5-inquiry-card small {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .contact-page .c5-map-panel {
    grid-template-rows: auto 300px auto !important;
  }
}

/* Phase SEO-2 — Events page SEO upgrade */
.seo2-events-page .event-page-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 6.65rem);
}

.seo2-events-page .scene-lead {
  max-width: 720px;
}

.seo2-split-card,
.seo2-partner-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 60px);
  align-items: center;
  border-radius: 34px;
  border: 1px solid rgba(155,118,36,.26);
  background: linear-gradient(135deg, rgba(255,250,238,.98), rgba(255,241,214,.9));
  box-shadow: 0 22px 64px rgba(3,32,26,.09);
  padding: clamp(22px, 4vw, 52px);
}

.seo2-split-card h2,
.seo2-partner-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  line-height: .96;
  color: var(--forest);
  letter-spacing: -.04em;
}

.seo2-value-copy {
  display: grid;
  gap: 12px;
}

.seo2-value-copy p,
.seo2-partner-panel p {
  margin: 0;
  color: rgba(16,48,39,.74);
  line-height: 1.62;
}

.seo2-service-options {
  background:
    radial-gradient(circle at 86% 18%, rgba(201,162,77,.13), transparent 22%),
    linear-gradient(135deg, #052f27, #031713);
}

.seo2-service-list article strong {
  letter-spacing: .08em;
}

.seo2-partner-panel {
  background: linear-gradient(135deg, #042d25, #071b17);
  color: var(--ivory);
}

.seo2-partner-panel h2 { color: var(--ivory); }
.seo2-partner-panel p { color: rgba(255,250,238,.74); }
.seo2-partner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.seo2-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo2-faq-card {
  border-radius: 28px;
  border: 1px solid rgba(155,118,36,.24);
  background: linear-gradient(180deg, rgba(255,250,238,.98), rgba(255,242,214,.94));
  box-shadow: 0 18px 54px rgba(3,32,26,.08);
  padding: clamp(20px, 3vw, 30px);
}

.seo2-faq-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  color: var(--forest);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.seo2-faq-card p {
  margin: 0;
  color: rgba(16,48,39,.72);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .seo2-split-card,
  .seo2-partner-panel {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 24px;
  }

  .seo2-partner-actions {
    justify-content: flex-start;
  }

  .seo2-faq-grid {
    grid-template-columns: 1fr;
  }

  .seo2-events-page .event-page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
    line-height: .92;
  }
}

@media (max-width: 560px) {
  .seo2-split-card,
  .seo2-partner-panel,
  .seo2-faq-card {
    border-radius: 22px;
  }

  .seo2-events-page .event-hero-points span {
    font-size: .68rem;
    padding: 8px 10px;
  }

  .seo2-events-page .button-row .btn,
  .seo2-partner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Phase G7 — Products page build */
.products-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 162, 77, 0.16), transparent 26%),
    linear-gradient(180deg, var(--ivory), var(--ivory-soft));
}
.g7-products-hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 74% 18%, rgba(201, 162, 77, 0.18), transparent 24%),
    radial-gradient(circle at 10% 92%, rgba(143, 31, 45, 0.14), transparent 23%),
    linear-gradient(135deg, var(--forest), #073427 58%, #031a15);
  padding-block: clamp(34px, 5vw, 68px);
}
.g7-products-hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 77, 0.14);
  border-radius: 32px;
  pointer-events: none;
}
.g7-products-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}
.g7-products-hero h1 {
  max-width: 600px;
  font-size: clamp(2.9rem, 5vw, 5.25rem);
  line-height: .9;
  letter-spacing: -.055em;
  margin-block: 8px 16px;
}
.g7-products-hero .scene-lead {
  max-width: 560px;
  color: rgba(255, 246, 228, 0.76);
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  margin-bottom: 16px;
}
.g7-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin-bottom: 18px;
}
.g7-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 162, 77, .28);
  background: rgba(255, 246, 228, .07);
  color: rgba(255, 246, 228, .82);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.g7-products-hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(201, 162, 77, 0.42);
  background: rgba(255, 246, 228, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}
.g7-products-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
}
.g7-availability-note {
  padding-block: 22px;
  background: linear-gradient(180deg, var(--forest), var(--deep-green));
  color: var(--ivory);
}
.g7-note-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(201, 162, 77, 0.24);
  border-radius: 24px;
  background: rgba(255, 246, 228, 0.05);
}
.g7-note-panel strong {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  white-space: nowrap;
}
.g7-note-panel p {
  margin: 0;
  color: rgba(255, 246, 228, .76);
}
.g7-products-section,
.g7-feature-section,
.g7-bulk-section,
.g7-final-cta {
  padding-block: clamp(70px, 9vw, 118px);
}
.g7-centered-heading {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 38px;
}
.g7-centered-heading p:last-child {
  color: var(--muted);
}
.g7-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.g7-product-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(201, 162, 77, 0.28);
  background: linear-gradient(180deg, rgba(255, 246, 228, 0.98), rgba(255, 246, 228, 0.90));
  box-shadow: 0 24px 70px rgba(3, 26, 21, 0.12);
  display: grid;
  grid-template-rows: auto 1fr;
}
.g7-product-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.g7-product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(3, 26, 21, .22));
  pointer-events: none;
}
.g7-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}
.g7-product-card:hover img {
  transform: scale(1.035);
}
.g7-product-body {
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  gap: 14px;
  align-content: start;
}
.g7-product-body > span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.g7-product-body h3 {
  color: var(--deep-green);
}
.g7-product-body p {
  margin: 0;
  color: var(--muted);
}
.g7-chip-list,
.g7-inquiry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.g7-chip-list span,
.g7-inquiry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 90, 62, .15);
  background: rgba(15, 90, 62, .06);
  color: #28463a;
  font-size: .79rem;
  font-weight: 800;
}
.g7-gift-card {
  background:
    radial-gradient(circle at 90% 12%, rgba(201, 162, 77, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 246, 228, 1), rgba(245, 234, 211, .92));
}
.g7-feature-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 162, 77, 0.18), transparent 25%),
    linear-gradient(180deg, var(--ivory-soft), var(--ivory));
}
.g7-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 38px;
  border: 1px solid rgba(201, 162, 77, .28);
  background: rgba(255, 246, 228, .72);
  box-shadow: var(--shadow);
}
.g7-feature-copy h2 {
  color: var(--deep-green);
  max-width: 620px;
}
.g7-feature-copy p {
  color: var(--muted);
  max-width: 620px;
}
.g7-feature-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(201, 162, 77, .32);
  box-shadow: 0 22px 68px rgba(3, 26, 21, .16);
}
.g7-feature-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.g7-bulk-section {
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 24%, rgba(201, 162, 77, 0.22), transparent 24%),
    linear-gradient(135deg, var(--forest), var(--deep-green));
}
.g7-bulk-panel {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.g7-bulk-panel p {
  color: rgba(255, 246, 228, .74);
}
.g7-bulk-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.g7-bulk-cards article {
  min-height: 128px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(201, 162, 77, .28);
  background: rgba(255, 246, 228, .07);
  display: grid;
  gap: 8px;
}
.g7-bulk-cards strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}
.g7-bulk-cards span {
  color: rgba(255, 246, 228, .72);
  font-size: .92rem;
}
.g7-final-cta {
  background: linear-gradient(180deg, var(--ivory), var(--ivory-soft));
}
.g7-final-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(201, 162, 77, .30);
  background:
    radial-gradient(circle at 88% 20%, rgba(201, 162, 77, .18), transparent 28%),
    linear-gradient(135deg, var(--deep-green), var(--forest));
  color: var(--ivory);
  box-shadow: var(--shadow);
}
.g7-final-panel h2 {
  max-width: 680px;
}
.g7-final-panel p {
  color: rgba(255, 246, 228, .74);
  max-width: 680px;
}
.g7-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .g7-products-hero-grid,
  .g7-feature-panel,
  .g7-bulk-panel {
    grid-template-columns: 1fr;
  }
  .g7-products-hero-copy {
    max-width: 680px;
  }
  .g7-products-hero-visual {
    max-width: 720px;
  }
  .g7-category-grid {
    grid-template-columns: 1fr;
  }
  .g7-note-panel,
  .g7-final-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .g7-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .g7-products-hero {
    padding-block: 28px 34px;
  }
  .g7-products-hero::before {
    inset: 10px;
    border-radius: 26px;
  }
  .g7-products-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
    max-width: 420px;
  }
  .g7-products-hero-visual,
  .g7-feature-visual,
  .g7-product-card {
    border-radius: 24px;
  }
  .g7-products-section,
  .g7-feature-section,
  .g7-bulk-section,
  .g7-final-cta {
    padding-block: 54px;
  }
  .g7-product-body {
    padding: 20px;
  }
  .g7-chip-list span,
  .g7-inquiry-list span {
    font-size: .74rem;
  }
  .g7-bulk-cards {
    grid-template-columns: 1fr;
  }
  .g7-note-panel .mini-action,
  .g7-final-actions .btn,
  .g7-feature-copy .btn,
  .g7-products-hero .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Phase G8 — Events + Products elegance/spacing QA correction
   Purpose: compact hero/sections, remove wasteful vertical space, and keep Products as main nav label. */
.products-page .g7-products-hero {
  padding-block: clamp(30px, 4.2vw, 56px) clamp(32px, 4.6vw, 62px);
}
.products-page .g7-products-hero-grid {
  grid-template-columns: minmax(0, .70fr) minmax(420px, 1.08fr);
  gap: clamp(22px, 3.5vw, 42px);
}
.products-page .g7-products-hero h1 {
  max-width: 560px;
  font-size: clamp(2.75rem, 4.55vw, 4.75rem);
  line-height: .94;
  margin-block: 8px 12px;
}
.products-page .g7-products-hero .scene-lead {
  margin-top: 0;
  margin-bottom: 14px;
}
.products-page .g7-hero-pills {
  margin-bottom: 16px;
}
.products-page .g7-products-hero-visual img {
  aspect-ratio: 2.08 / 1;
}
.products-page .g7-availability-note {
  padding-block: 14px;
}
.products-page .g7-note-panel {
  padding: 13px 16px;
  border-radius: 20px;
}
.products-page .g7-products-section,
.products-page .g7-feature-section,
.products-page .g7-bulk-section,
.products-page .g7-final-cta {
  padding-block: clamp(50px, 6.8vw, 86px);
}
.products-page .g7-centered-heading {
  margin-bottom: 28px;
}
.products-page .g7-category-grid {
  gap: clamp(18px, 2.4vw, 26px);
}
.products-page .g7-product-card {
  border-radius: 28px;
}
.products-page .g7-product-body {
  padding: clamp(19px, 2.4vw, 25px);
  gap: 12px;
}
.products-page .g7-feature-panel,
.products-page .g7-final-panel {
  border-radius: 30px;
}
.products-page .g7-bulk-cards article {
  min-height: 108px;
  padding: 18px;
}

.seo2-events-page .event-page-hero {
  padding: clamp(74px, 8.8vw, 108px) 0 clamp(40px, 5.8vw, 68px);
}
.seo2-events-page .event-page-hero-grid {
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.04fr);
  gap: clamp(26px, 4vw, 54px);
}
.seo2-events-page .event-page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.85rem, 5.15vw, 5.55rem);
  line-height: .93;
}
.seo2-events-page .event-page-hero .button-row {
  margin-top: 20px;
}
.seo2-events-page .event-hero-points {
  margin-top: 18px;
}
.seo2-events-page .event-page-hero-visual {
  aspect-ratio: 16 / 10;
  border-radius: clamp(24px, 3vw, 34px);
}
.seo2-events-page .event-section {
  padding: clamp(46px, 6.2vw, 78px) 0;
}
.seo2-events-page .event-section-head {
  margin-bottom: clamp(22px, 3vw, 34px);
}
.seo2-events-page .event-section-head h2,
.seo2-events-page .event-service-copy h2,
.seo2-events-page .event-inquiry-card-page h2,
.seo2-events-page .seo2-split-card h2,
.seo2-events-page .seo2-partner-panel h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1;
}
.seo2-events-page .seo2-split-card,
.seo2-events-page .seo2-partner-panel {
  padding: clamp(20px, 3.2vw, 40px);
  border-radius: 30px;
}
.seo2-events-page .event-occasion-card {
  min-height: 170px;
  padding: clamp(18px, 2.3vw, 24px);
  border-radius: 26px;
}
.seo2-events-page .event-service-grid-page {
  gap: clamp(24px, 4vw, 54px);
}
.seo2-events-page .event-flow-list {
  margin-top: 22px;
}
.seo2-events-page .event-flow-list article {
  padding: 18px;
}
.seo2-events-page .event-service-visuals {
  grid-template-rows: repeat(2, 160px);
  gap: 12px;
}
.seo2-events-page .event-service-visuals figure,
.seo2-events-page .event-option-card,
.seo2-events-page .seo2-faq-card {
  border-radius: 24px;
}
.seo2-events-page .event-inquiry-card-page {
  padding: clamp(22px, 3.2vw, 38px);
  border-radius: 30px;
}
.seo2-events-page .event-inquiry-steps article {
  padding: 16px;
}
.seo2-events-page .event-option-card div {
  padding: 16px;
}

@media (max-width: 900px) {
  .products-page .g7-products-hero-grid,
  .seo2-events-page .event-page-hero-grid {
    grid-template-columns: 1fr;
  }
  .products-page .g7-products-hero-visual,
  .seo2-events-page .event-page-hero-visual {
    max-width: 760px;
  }
  .seo2-events-page .event-service-visuals {
    grid-template-rows: repeat(2, 150px);
  }
}

@media (max-width: 640px) {
  .products-page .g7-products-hero {
    padding-block: 24px 32px;
  }
  .products-page .g7-products-hero h1,
  .seo2-events-page .event-page-hero h1 {
    font-size: clamp(2.28rem, 10vw, 3.35rem);
    line-height: .95;
  }
  .products-page .g7-hero-pills span {
    font-size: .66rem;
    min-height: 28px;
  }
  .products-page .g7-note-panel p {
    font-size: .9rem;
  }
  .seo2-events-page .event-page-hero {
    padding: 76px 0 38px;
  }
  .seo2-events-page .event-page-hero-visual {
    aspect-ratio: 4 / 3;
  }
  .seo2-events-page .event-section {
    padding: 44px 0;
  }
  .seo2-events-page .event-occasion-card {
    min-height: auto;
  }
  .seo2-events-page .event-service-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .seo2-events-page .event-service-visuals figure,
  .seo2-events-page .event-service-visuals figure:first-child {
    aspect-ratio: 16 / 10;
  }
}


/* Phase I3 — Signature Pan desktop asset integration (mobile checked in I4) */
@media (min-width: 981px) {
  .pan-menu-page .menu-hero {
    padding: clamp(92px, 10vw, 124px) 0 clamp(44px, 5vw, 66px);
  }

  .pan-menu-page .menu-hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(360px, .95fr);
    gap: clamp(28px, 4vw, 58px);
  }

  .pan-menu-page .menu-hero h1 {
    font-size: clamp(3rem, 5.8vw, 5.9rem);
    max-width: 640px;
  }

  .pan-menu-page .menu-hero-visual {
    aspect-ratio: 16 / 11;
    border-radius: 36px;
  }

  .pan-menu-page .menu-section {
    padding: clamp(46px, 5.5vw, 76px) 0;
  }

  .pan-menu-page .menu-section-head {
    margin-bottom: clamp(22px, 3vw, 34px);
  }

  .pan-menu-page .menu-section-head h2,
  .pan-menu-page .menu-order-card h2 {
    font-size: clamp(2.15rem, 4vw, 3.8rem);
  }

  .pan-menu-page .menu-pan-grid {
    gap: clamp(16px, 1.7vw, 24px);
  }

  .pan-menu-page .menu-pan-card {
    border-radius: 28px;
  }

  .pan-menu-page .menu-pan-card img {
    aspect-ratio: 16 / 11;
  }

  .pan-menu-page .menu-pan-body {
    padding: 18px 19px 20px;
  }

  .pan-menu-page .menu-pan-body p {
    min-height: 48px;
  }

  .pan-menu-page .menu-craft-grid {
    grid-template-columns: minmax(0, .76fr) minmax(420px, 1.24fr);
  }

  .pan-menu-page .menu-choice-board article {
    min-height: 176px;
    padding: 22px;
  }

  .pan-menu-page .menu-choice-board span {
    margin-bottom: 12px;
  }

  .pan-menu-page .menu-ingredient-grid {
    gap: clamp(14px, 1.4vw, 18px);
  }

  .pan-menu-page .menu-ingredient-card {
    border-radius: 24px;
  }

  .pan-menu-page .menu-ingredient-card img {
    aspect-ratio: 4 / 3;
  }

  .pan-menu-page .menu-ingredient-card div {
    padding: 13px 14px 15px;
  }

  .pan-menu-page .menu-ingredient-card h3 {
    padding: 0;
    margin: 0 0 4px;
    font-size: 1.08rem;
  }

  .pan-menu-page .menu-ingredient-card p {
    margin: 0;
    color: rgba(255,246,228,.68);
    font-size: .84rem;
    line-height: 1.35;
  }

  .pan-menu-page .menu-order-card {
    padding: 30px 34px;
    border-radius: 30px;
  }
}

/* Phase I4 — Signature Pan mobile layout correction */
@media (max-width: 760px) {
  .pan-menu-page .menu-hero {
    padding: 82px 0 38px;
  }

  .pan-menu-page .menu-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pan-menu-page .menu-hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.75rem);
    line-height: .95;
    max-width: 100%;
  }

  .pan-menu-page .menu-hero-copy .button-row {
    margin-top: 18px;
    gap: 10px;
  }

  .pan-menu-page .menu-hero-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0,0,0,.24);
  }

  .pan-menu-page .menu-hero-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 10px;
    font-size: .58rem;
    letter-spacing: .06em;
  }

  .pan-menu-page .menu-section {
    padding: 42px 0;
  }

  .pan-menu-page .menu-section-head {
    margin-bottom: 20px;
  }

  .pan-menu-page .menu-section-head h2,
  .pan-menu-page .menu-order-card h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
    line-height: 1.02;
    margin-bottom: 10px;
  }

  .pan-menu-page .menu-section-head p:not(.scene-kicker),
  .pan-menu-page .menu-order-card p {
    font-size: .96rem;
    line-height: 1.5;
  }

  .pan-menu-page .menu-pan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pan-menu-page .menu-pan-card {
    border-radius: 24px;
  }

  .pan-menu-page .menu-pan-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .pan-menu-page .menu-pan-body {
    padding: 15px 16px 17px;
  }

  .pan-menu-page .menu-pan-body span {
    margin-bottom: 7px;
    padding: 6px 9px;
    font-size: .64rem;
  }

  .pan-menu-page .menu-pan-body h3 {
    margin-bottom: 6px;
    font-size: 1.22rem;
  }

  .pan-menu-page .menu-pan-body p {
    margin-bottom: 12px;
    font-size: .94rem;
    line-height: 1.45;
    min-height: 0;
  }

  .pan-menu-page .menu-pan-body .mini-action {
    width: 100%;
    min-height: 42px;
  }

  .pan-menu-page .menu-craft-grid,
  .pan-menu-page .menu-order-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pan-menu-page .menu-choice-board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pan-menu-page .menu-choice-board article {
    min-height: 0;
    padding: 17px;
    border-radius: 22px;
  }

  .pan-menu-page .menu-choice-board span {
    margin-bottom: 8px;
  }

  .pan-menu-page .menu-ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pan-menu-page .menu-ingredient-card {
    display: block;
    border-radius: 20px;
  }

  .pan-menu-page .menu-ingredient-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .pan-menu-page .menu-ingredient-card div {
    padding: 10px 10px 12px;
  }

  .pan-menu-page .menu-ingredient-card h3 {
    padding: 0;
    margin: 0 0 3px;
    font-size: .98rem;
    line-height: 1.08;
  }

  .pan-menu-page .menu-ingredient-card p {
    margin: 0;
    color: rgba(255,246,228,.68);
    font-size: .74rem;
    line-height: 1.25;
  }

  .pan-menu-page .menu-order-card {
    padding: 20px;
    border-radius: 24px;
  }

  .pan-menu-page .menu-order-actions {
    justify-content: stretch;
  }

  .pan-menu-page .menu-order-actions .btn,
  .pan-menu-page .menu-hero-copy .button-row .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .pan-menu-page .menu-ingredient-grid {
    gap: 10px;
  }

  .pan-menu-page .menu-ingredient-card div {
    padding: 9px 9px 10px;
  }

  .pan-menu-page .menu-ingredient-card h3 {
    font-size: .92rem;
  }

  .pan-menu-page .menu-ingredient-card p {
    display: none;
  }
}

/* Phase I5 — Pan Menu visual QA + spacing polish
   Tightens the new Signature Pan / Ingredient sections without changing content. */
.pan-menu-page .container {
  width: min(1180px, calc(100% - 40px));
}

.pan-menu-page .menu-hero-copy .scene-lead {
  max-width: 560px;
}

.pan-menu-page .menu-pan-card,
.pan-menu-page .menu-ingredient-card,
.pan-menu-page .menu-order-card {
  will-change: transform;
}

.pan-menu-page .menu-pan-card:hover,
.pan-menu-page .menu-ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(3, 32, 26, .15);
}

.pan-menu-page .menu-pan-card img,
.pan-menu-page .menu-ingredient-card img {
  background: #062d22;
}

.pan-menu-page .menu-pan-body .mini-action {
  justify-content: center;
}

.pan-menu-page .menu-order-strip {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(46px, 5vw, 70px);
}

@media (min-width: 981px) {
  .pan-menu-page .menu-hero {
    padding-top: clamp(86px, 8.5vw, 112px);
    padding-bottom: clamp(36px, 4.2vw, 54px);
  }

  .pan-menu-page .menu-hero h1 {
    font-size: clamp(2.85rem, 5.1vw, 5.25rem);
    line-height: .93;
  }

  .pan-menu-page .menu-hero-visual {
    aspect-ratio: 16 / 10;
    max-height: 520px;
  }

  .pan-menu-page .menu-section {
    padding-top: clamp(40px, 4.4vw, 62px);
    padding-bottom: clamp(40px, 4.4vw, 62px);
  }

  .pan-menu-page .menu-section-head {
    max-width: 700px;
    margin-bottom: 24px;
  }

  .pan-menu-page .menu-section-head h2,
  .pan-menu-page .menu-order-card h2 {
    font-size: clamp(2rem, 3.45vw, 3.25rem);
    margin-bottom: 9px;
  }

  .pan-menu-page .menu-section-head p:not(.scene-kicker),
  .pan-menu-page .menu-order-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .pan-menu-page .menu-pan-grid {
    gap: 18px;
  }

  .pan-menu-page .menu-pan-card {
    border-radius: 24px;
  }

  .pan-menu-page .menu-pan-card img {
    aspect-ratio: 16 / 9.5;
  }

  .pan-menu-page .menu-pan-body {
    padding: 15px 17px 18px;
  }

  .pan-menu-page .menu-pan-body span {
    margin-bottom: 7px;
    padding: 5px 9px;
    font-size: .64rem;
  }

  .pan-menu-page .menu-pan-body h3 {
    margin-bottom: 5px;
    font-size: 1.32rem;
  }

  .pan-menu-page .menu-pan-body p {
    min-height: 42px;
    margin-bottom: 12px;
    font-size: .95rem;
    line-height: 1.45;
  }

  .pan-menu-page .menu-craft-grid {
    gap: clamp(24px, 3.2vw, 44px);
  }

  .pan-menu-page .menu-choice-board {
    gap: 12px;
  }

  .pan-menu-page .menu-choice-board article {
    min-height: 150px;
    padding: 18px;
    border-radius: 24px;
  }

  .pan-menu-page .menu-choice-board h3 {
    margin-bottom: 6px;
  }

  .pan-menu-page .menu-choice-board p {
    line-height: 1.45;
  }

  .pan-menu-page .menu-ingredient-grid {
    gap: 14px;
  }

  .pan-menu-page .menu-ingredient-card {
    border-radius: 20px;
  }

  .pan-menu-page .menu-ingredient-card img {
    aspect-ratio: 16 / 11;
  }

  .pan-menu-page .menu-ingredient-card div {
    padding: 10px 12px 12px;
  }

  .pan-menu-page .menu-ingredient-card h3 {
    font-size: 1.02rem;
    margin-bottom: 2px;
  }

  .pan-menu-page .menu-ingredient-card p {
    font-size: .78rem;
  }
}

@media (max-width: 760px) {
  .pan-menu-page .container {
    width: min(100% - 28px, 1180px);
  }

  .pan-menu-page .menu-hero {
    padding-top: 76px;
    padding-bottom: 30px;
  }

  .pan-menu-page .menu-hero h1 {
    font-size: clamp(2.18rem, 11.4vw, 3.35rem);
  }

  .pan-menu-page .menu-hero-copy .scene-lead {
    font-size: .96rem;
    line-height: 1.5;
  }

  .pan-menu-page .menu-hero-visual {
    aspect-ratio: 16 / 9.8;
    border-radius: 22px;
  }

  .pan-menu-page .menu-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .pan-menu-page .menu-section-head {
    margin-bottom: 16px;
  }

  .pan-menu-page .menu-section-head h2,
  .pan-menu-page .menu-order-card h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.3rem);
    margin-bottom: 8px;
  }

  .pan-menu-page .menu-section-head p:not(.scene-kicker),
  .pan-menu-page .menu-order-card p {
    font-size: .92rem;
    line-height: 1.45;
  }

  .pan-menu-page .menu-pan-grid {
    gap: 13px;
  }

  .pan-menu-page .menu-pan-card {
    border-radius: 21px;
  }

  .pan-menu-page .menu-pan-card img {
    aspect-ratio: 16 / 9.3;
  }

  .pan-menu-page .menu-pan-body {
    padding: 13px 14px 15px;
  }

  .pan-menu-page .menu-pan-body h3 {
    font-size: 1.15rem;
  }

  .pan-menu-page .menu-pan-body p {
    font-size: .9rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .pan-menu-page .menu-pan-body .mini-action {
    min-height: 40px;
  }

  .pan-menu-page .menu-craft-grid,
  .pan-menu-page .menu-order-card {
    gap: 14px;
  }

  .pan-menu-page .menu-choice-board {
    gap: 10px;
  }

  .pan-menu-page .menu-choice-board article {
    padding: 14px 15px;
    border-radius: 20px;
  }

  .pan-menu-page .menu-choice-board span {
    margin-bottom: 5px;
    font-size: .86rem;
  }

  .pan-menu-page .menu-choice-board h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
  }

  .pan-menu-page .menu-choice-board p {
    font-size: .88rem;
    line-height: 1.38;
  }

  .pan-menu-page .menu-ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pan-menu-page .menu-ingredient-card {
    border-radius: 18px;
  }

  .pan-menu-page .menu-ingredient-card img {
    aspect-ratio: 1.18 / 1;
  }

  .pan-menu-page .menu-ingredient-card div {
    padding: 8px 9px 10px;
  }

  .pan-menu-page .menu-ingredient-card h3 {
    font-size: .92rem;
    margin: 0;
  }

  .pan-menu-page .menu-ingredient-card p {
    display: none;
  }

  .pan-menu-page .menu-order-card {
    padding: 18px;
    border-radius: 21px;
  }

  .pan-menu-page .menu-order-strip {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 430px) {
  .pan-menu-page .menu-hero-copy .button-row {
    gap: 8px;
  }

  .pan-menu-page .menu-pan-card img {
    aspect-ratio: 16 / 9.8;
  }
}
