*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cycle: 7s;
  --enter-end: 28%;
  --dip-start: 30%;
  --dip-end: 48%;
  --bite-at: 50%;
  --shatter-start: 52%;
  --shatter-end: 78%;
  --disco-on: 0; /* set to 1 and remove display:none on .disco-lights to enable */
}

body {
  min-height: 100vh;
  background: #ede4d3;
  font-family: "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #2d6a1e;
  color: #fffaf2;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #c83828;
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.kitchen-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.kitchen-wall {
  position: absolute;
  inset: 0;
  bottom: 34%;
  background:
    repeating-linear-gradient(
      180deg,
      #f5efe3 0 28px,
      #e8dfd0 28px 30px
    );
}

.kitchen-tiles {
  position: absolute;
  top: 32%;
  left: 0;
  width: 100%;
  height: 18%;
  background:
    repeating-linear-gradient(
      90deg,
      #fffaf2 0 24px,
      #f0e8dc 24px 26px
    ),
    repeating-linear-gradient(
      0deg,
      #fffaf2 0 24px,
      #ebe3d6 24px 26px
    );
  border-top: 4px solid #c83828;
  border-bottom: 4px solid #2d6a1e;
  opacity: 0.85;
}

.window-light {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 50%;
  background: radial-gradient(ellipse at 82% 18%, rgba(160, 185, 210, 0.22), transparent 62%);
  pointer-events: none;
}

.matka-shelf {
  top: 7%;
  left: 9%;
  width: min(28vw, 120px);
  height: 50px;
}

.wall-matkas {
  position: absolute;
  bottom: 5px;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.wall-matkas .matka {
  display: block;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #c88850, #a06830 55%, #7a4818);
  box-shadow:
    inset 0 -4px 0 rgba(60, 30, 10, 0.2),
    0 3px 6px rgba(92, 48, 24, 0.15);
}

.wall-matkas .matka::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 38%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
  background: #8b5a30;
}

.wall-matkas .matka::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 55%;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #6b4423;
}

.wall-frame {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 52px;
  height: 38px;
  transform: translateX(-120px);
  border: 3px solid #8b5a30;
  background:
    linear-gradient(135deg, #c87828, #8f4f0a 50%, #4a9a32);
  box-shadow: inset 0 0 0 2px #f5efe3;
  opacity: 0.75;
}

.wall-matkas .matka:nth-child(1) { width: 34px; height: 34px; }
.wall-matkas .matka:nth-child(2) { width: 28px; height: 28px; }
.wall-matkas .matka:nth-child(3) { width: 22px; height: 22px; }

.kitchen-window {
  position: absolute;
  top: 8%;
  right: 11%;
  width: min(22vw, 110px);
  height: min(22vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  padding: 7px;
  background: #8b5a30;
  box-shadow: 0 4px 12px rgba(92, 48, 24, 0.18);
  overflow: hidden;
}

.window-sky {
  position: absolute;
  inset: 7px;
  border-radius: 1px;
  overflow: hidden;
  background: linear-gradient(180deg, #4a6678 0%, #6a8494 38%, #8a9eaa 72%, #a8b8c0 100%);
  z-index: 0;
}

.window-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(40, 55, 70, 0.35) 0%,
    rgba(60, 80, 95, 0.15) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.window-rain {
  position: absolute;
  inset: 7px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  border-radius: 1px;
}

.rain-streak {
  position: absolute;
  width: 1px;
  height: 14px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200, 220, 240, 0.15) 20%,
    rgba(180, 210, 235, 0.55) 70%,
    rgba(160, 195, 225, 0.25) 100%
  );
  border-radius: 0 0 1px 1px;
  opacity: 0;
  animation: rain-fall linear infinite;
}

.rain-streak.r1  { left: 8%;  animation-duration: 0.85s; animation-delay: 0s;    }
.rain-streak.r2  { left: 18%; animation-duration: 1.05s; animation-delay: -0.3s; height: 11px; }
.rain-streak.r3  { left: 28%; animation-duration: 0.75s; animation-delay: -0.6s; }
.rain-streak.r4  { left: 38%; animation-duration: 0.95s; animation-delay: -0.15s; height: 16px; }
.rain-streak.r5  { left: 48%; animation-duration: 0.8s;  animation-delay: -0.45s; }
.rain-streak.r6  { left: 58%; animation-duration: 1.1s;  animation-delay: -0.75s; height: 12px; }
.rain-streak.r7  { left: 68%; animation-duration: 0.7s;  animation-delay: -0.2s; }
.rain-streak.r8  { left: 78%; animation-duration: 0.9s;  animation-delay: -0.55s; height: 15px; }
.rain-streak.r9  { left: 88%; animation-duration: 1s;   animation-delay: -0.35s; }
.rain-streak.r10 { left: 14%; animation-duration: 0.88s; animation-delay: -0.9s; height: 10px; }
.rain-streak.r11 { left: 52%; animation-duration: 0.78s; animation-delay: -1.1s; height: 13px; }
.rain-streak.r12 { left: 72%; animation-duration: 1.02s; animation-delay: -0.65s; height: 11px; }

@keyframes rain-fall {
  0% {
    transform: translateY(-18px);
    opacity: 0;
  }
  8% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.45;
  }
  100% {
    transform: translateY(120px);
    opacity: 0;
  }
}

.sky-sun {
  position: absolute;
  top: 14%;
  left: 12%;
  width: 26px;
  height: 26px;
  opacity: 0.35;
  animation: sun-drift 36s ease-in-out infinite;
}

.sun-core {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fffce0 0%, #ffe860 45%, #f0b820 100%);
  box-shadow: 0 0 10px rgba(255, 210, 60, 0.85);
  z-index: 2;
}

.sun-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 120, 0.55), transparent 68%);
  animation: sun-pulse 4s ease-in-out infinite;
}

.cloud {
  position: absolute;
  height: 10px;
  background: rgba(210, 218, 225, 0.92);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(80, 100, 120, 0.25);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
  box-shadow: inherit;
}

.cloud-1 {
  top: 34%;
  left: -40%;
  width: 34px;
  animation: cloud-drift 22s linear infinite;
}

.cloud-1::before {
  top: -7px;
  left: 6px;
  width: 16px;
  height: 16px;
}

.cloud-1::after {
  top: -5px;
  right: 4px;
  width: 12px;
  height: 12px;
}

.cloud-2 {
  top: 58%;
  left: -55%;
  width: 42px;
  height: 11px;
  opacity: 0.88;
  animation: cloud-drift 30s linear infinite;
  animation-delay: -8s;
}

.cloud-2::before {
  top: -8px;
  left: 8px;
  width: 18px;
  height: 18px;
}

.cloud-2::after {
  top: -6px;
  right: 6px;
  width: 14px;
  height: 14px;
}

.cloud-3 {
  top: 22%;
  left: -50%;
  width: 28px;
  height: 9px;
  opacity: 0.82;
  animation: cloud-drift 18s linear infinite;
  animation-delay: -4s;
}

.cloud-3::before {
  top: -6px;
  left: 4px;
  width: 13px;
  height: 13px;
}

.cloud-3::after {
  top: -4px;
  right: 3px;
  width: 10px;
  height: 10px;
}

.bird {
  position: absolute;
  width: 14px;
  height: 8px;
  animation: bird-fly linear infinite;
}

.bird-1 {
  top: 26%;
  left: -20%;
  animation-duration: 9s;
  animation-delay: -2s;
}

.bird-2 {
  top: 44%;
  left: -20%;
  animation: bird-fly-sm 12s linear infinite;
  animation-delay: -6s;
}

.bird-3 {
  top: 18%;
  left: -20%;
  animation: bird-fly-xs 10s linear infinite;
  animation-delay: -1s;
  opacity: 0.85;
}

.wing {
  position: absolute;
  top: 3px;
  width: 7px;
  height: 4px;
  border-top: 2px solid #3a3a48;
  border-radius: 50% 50% 0 0;
  animation: wing-flap 0.45s ease-in-out infinite;
}

.wing-l {
  left: 0;
  transform-origin: right center;
}

.wing-r {
  right: 0;
  transform-origin: left center;
  animation-delay: 0.225s;
}

@keyframes sun-drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(42px, 10px);
  }
}

@keyframes sun-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes cloud-drift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(165px);
  }
}

@keyframes bird-fly {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(55px) translateY(-3px);
  }
  50% {
    transform: translateX(110px) translateY(2px);
  }
  75% {
    transform: translateX(165px) translateY(-2px);
  }
  100% {
    transform: translateX(220px) translateY(0);
  }
}

@keyframes bird-fly-sm {
  0% {
    transform: translateX(0) translateY(0) scale(0.85);
  }
  25% {
    transform: translateX(55px) translateY(-3px) scale(0.85);
  }
  50% {
    transform: translateX(110px) translateY(2px) scale(0.85);
  }
  75% {
    transform: translateX(165px) translateY(-2px) scale(0.85);
  }
  100% {
    transform: translateX(220px) translateY(0) scale(0.85);
  }
}

@keyframes bird-fly-xs {
  0% {
    transform: translateX(0) translateY(0) scale(0.72);
  }
  25% {
    transform: translateX(55px) translateY(-3px) scale(0.72);
  }
  50% {
    transform: translateX(110px) translateY(2px) scale(0.72);
  }
  75% {
    transform: translateX(165px) translateY(-2px) scale(0.72);
  }
  100% {
    transform: translateX(220px) translateY(0) scale(0.72);
  }
}

@keyframes wing-flap {
  0%, 100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(18deg);
  }
}

.kitchen-window .pane {
  position: relative;
  z-index: 3;
  background: linear-gradient(
    145deg,
    rgba(180, 200, 220, 0.18) 0%,
    rgba(140, 170, 195, 0.1) 100%
  );
  border-radius: 1px;
  box-shadow:
    inset 0 0 6px rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(0.5px);
}

.kitchen-window .pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    168deg,
    transparent 0 18px,
    rgba(200, 220, 240, 0.08) 18px 19px
  );
  border-radius: inherit;
  pointer-events: none;
}

.window-sill {
  position: absolute;
  top: calc(8% + min(22vw, 110px) + 4px);
  right: 11%;
  width: min(26vw, 130px);
  height: 6px;
  background: #8b5a30;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 3px 6px rgba(92, 48, 24, 0.15);
}

.window-sill::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 8px;
  width: 18px;
  height: 14px;
  border-radius: 50% 50% 0 0;
  background: #4a9a32;
  box-shadow: inset 0 -3px 0 #2d6a1e;
}

.wall-hook {
  position: absolute;
  top: 14%;
  right: 28%;
  width: 40px;
  height: 50px;
}

.hook-ring {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border: 2px solid #6b4423;
  border-radius: 50%;
  border-bottom-color: transparent;
}

.hook-ladle {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 22px;
  transform: translateX(-50%);
  background: #8b5a30;
}

.hook-ladle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 22px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, #b0bcc4, #788890);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.kitchen-shelf {
  position: absolute;
  z-index: 1;
}

.shelf-left {
  top: 36%;
  left: 9%;
  width: min(42vw, 210px);
  height: 56px;
}

.shelf-right {
  top: 40%;
  right: 10%;
  width: min(22vw, 110px);
  height: 52px;
}

.shelf-board {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #8b5a30;
  border-radius: 1px;
}

.spice-jar {
  position: absolute;
  bottom: 5px;
  width: 22px;
  height: 34px;
  border-radius: 3px 3px 4px 4px;
  box-shadow: inset 2px 0 4px rgba(255, 255, 255, 0.15), inset -2px 0 4px rgba(0, 0, 0, 0.08);
}

.spice-jar::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 3px;
  height: 60%;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.spice-jar::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 3px;
  width: 16px;
  height: 7px;
  border-radius: 2px 2px 0 0;
  background: #6b4423;
}

.shelf-left .j1 { left: 0; background: #c83828; }
.shelf-left .j2 { left: 28px; background: #e8c040; }
.shelf-left .j3 { left: 56px; background: #4a9a32; }
.shelf-left .j4 { left: 84px; background: #7a4898; }
.shelf-left .j5 { left: 112px; background: #8f5a28; }

.masala-dabba {
  position: absolute;
  bottom: 5px;
  right: -4px;
  width: 38px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8c878, #a88828 60%, #786018);
  box-shadow: 0 2px 5px rgba(92, 48, 24, 0.2);
}

.masala-dabba span:not(.label) {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.masala-dabba span:nth-child(1) { top: 3px; left: 4px; background: #c83828; }
.masala-dabba span:nth-child(2) { top: 3px; left: 12px; background: #e8c040; }
.masala-dabba span:nth-child(3) { top: 3px; right: 12px; background: #4a9a32; }
.masala-dabba span:nth-child(4) { top: 3px; right: 4px; background: #8f5a28; }
.masala-dabba span:nth-child(5) {
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background: rgba(60, 30, 8, 0.25);
}

.round-jar {
  position: absolute;
  bottom: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.round-jar::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 6px;
  transform: translateX(-50%);
  background: #6b4423;
  border-radius: 1px;
}

.shelf-right .r1 { left: 8px; background: #e8c040; }
.shelf-right .r2 { left: 48px; background: #c83828; }

.chai-pot {
  position: absolute;
  bottom: 5px;
  right: -8px;
  width: 28px;
  height: 20px;
  border-radius: 0 0 40% 40% / 0 0 50% 50%;
  background: linear-gradient(180deg, #d0d8dc, #889098);
  box-shadow: 0 2px 5px rgba(92, 48, 24, 0.15);
}

.chai-pot::before {
  content: "";
  position: absolute;
  top: 4px;
  right: -8px;
  width: 10px;
  height: 7px;
  border: 2px solid #889098;
  border-left: none;
  border-radius: 0 60% 60% 0;
}

.chai-pot::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 20% 20%;
  background: #788890;
}

/* Mise en place — samosa ingredients beside the plate */
.mise-tray {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 92px;
  height: 54px;
  z-index: 4;
}

.mise-board {
  position: absolute;
  inset: 0;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, #c89860 0%, #9a6838 55%, #7a5028 100%);
  box-shadow:
    0 3px 9px rgba(92, 48, 24, 0.2),
    inset 0 1px 0 rgba(255, 220, 160, 0.25);
  transform: rotate(-5deg);
}

.mise-board::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(92, 48, 24, 0.18);
  border-radius: 3px;
}

.mise-board::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(255, 220, 160, 0.15);
}

.ingredient {
  position: absolute;
}

.ing-flour {
  top: 8px;
  left: 6px;
  width: 24px;
  height: 22px;
}

.flour-bowl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 12px;
  border-radius: 0 0 11px 11px;
  background: #faf6ef;
  border: 1px solid #e0d4c4;
  border-top: none;
  overflow: hidden;
}

.flour-mound {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 18px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #fffef8 0%, #f0e8d8 100%);
  box-shadow: inset 0 -2px 4px rgba(180, 160, 120, 0.15);
}

.flour-mound::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 6px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.ing-potato {
  top: 10px;
  left: 34px;
  width: 22px;
  height: 18px;
}

.potato-cube {
  position: absolute;
  width: 9px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(145deg, #f0d890 0%, #d4a840 55%, #b88828 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.potato-cube.p1 {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

.potato-cube.p2 {
  bottom: 0;
  right: 0;
  transform: rotate(12deg);
  width: 8px;
  height: 7px;
}

.potato-cube::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(180, 140, 40, 0.35);
}

.ing-peas {
  top: 8px;
  right: 8px;
  width: 18px;
  height: 16px;
}

.pea {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8edc68, #3a8828);
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.08);
}

.ing-peas .pea:nth-child(1) { top: 0; left: 2px; }
.ing-peas .pea:nth-child(2) { top: 5px; left: 7px; }
.ing-peas .pea:nth-child(3) { bottom: 0; left: 0; }

.ing-jeera {
  bottom: 8px;
  left: 8px;
  width: 16px;
  height: 12px;
}

.spice-dot {
  position: absolute;
  width: 3px;
  height: 2px;
  border-radius: 40%;
  background: #6b4423;
  transform: rotate(-20deg);
}

.ing-jeera .spice-dot:nth-child(1) { top: 0; left: 2px; transform: rotate(15deg); }
.ing-jeera .spice-dot:nth-child(2) { top: 3px; left: 6px; }
.ing-jeera .spice-dot:nth-child(3) { bottom: 1px; left: 0; transform: rotate(-35deg); }
.ing-jeera .spice-dot:nth-child(4) { bottom: 0; right: 1px; transform: rotate(40deg); }

.ing-chili {
  bottom: 6px;
  right: 10px;
  width: 18px;
  height: 10px;
}

.chili-sliver {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 14px;
  height: 4px;
  border-radius: 2px 6px 2px 2px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, #3a8828 0%, #2d6a1e 70%, #c83828 100%);
  box-shadow: 0 1px 2px rgba(92, 48, 24, 0.15);
}

.chili-sliver::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #2d6a1e;
}

.table-chai {
  position: absolute;
  bottom: 8px;
  right: 8%;
  width: 24px;
  height: 32px;
}

.table-chai::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 22px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.15) 40%, rgba(200, 210, 215, 0.3)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(180, 190, 195, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.table-chai::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 3px;
  width: 18px;
  height: 10px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #6b4423, #4a2810);
}

.table-surface {
  position: absolute;
  bottom: 34%;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1;
}

.table-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(180deg, #8b6040, #6b4423);
  box-shadow: 0 4px 10px rgba(92, 48, 24, 0.2);
}

.kitchen-table {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34%;
  background:
    repeating-linear-gradient(
      180deg,
      #6b4423 0 36px,
      #5c3818 36px 38px
    );
  box-shadow: inset 0 6px 0 rgba(255, 220, 160, 0.08);
}

.world {
  position: relative;
  z-index: 2;
  width: min(92vw, 520px);
  height: min(75vh, 520px);
  transform: translateY(16%);
}

.hero-title {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  pointer-events: none;
}

.hero-title::before {
  content: "◆";
  font-size: 0.55rem;
  color: #c87828;
  letter-spacing: 0.85em;
  padding-left: 0.85em;
  opacity: 0.85;
}

.hero-heading {
  position: relative;
  font-family: "Yatra One", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 9vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  padding: 0 0.5rem;
  background: linear-gradient(165deg, #e8a838 0%, #b86818 42%, #7a4010 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 248, 230, 0.9))
    drop-shadow(0 4px 12px rgba(92, 48, 24, 0.22));
}

.hero-heading::before,
.hero-heading::after {
  content: "";
  position: absolute;
  top: 54%;
  width: clamp(1.8rem, 5vw, 3rem);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #c87828 70%, #8f4f0a);
}

.hero-heading::before {
  right: 100%;
  margin-right: 0.65rem;
}

.hero-heading::after {
  left: 100%;
  margin-left: 0.65rem;
  transform: scaleX(-1);
}

.hero-subtitle {
  margin-top: 0.15rem;
  font-family: "Hind", "Segoe UI", sans-serif;
  font-size: clamp(0.88rem, 2.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(122, 64, 16, 0.78);
}

.scene {
  position: relative;
  width: 100%;
  height: 100%;
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
  animation: stage-enter var(--cycle) ease-in-out forwards;
}

.table {
  display: none;
}

.plate {
  position: absolute;
  bottom: 2%;
  left: 50%;
  width: min(88vw, 380px);
  height: 220px;
  transform: translateX(-50%);
  z-index: 2;
  overflow: visible;
  animation: plate-tilt var(--cycle) ease-in-out forwards;
}

.plate-shadow {
  position: absolute;
  bottom: 24%;
  left: 50%;
  width: 72%;
  height: 10%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(92, 48, 24, 0.18), transparent 70%);
  z-index: 0;
}

.plate-base {
  position: absolute;
  bottom: 28%;
  left: 0;
  width: 100%;
  height: 32%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 35%, #fffdf8 0%, #faf6ef 50%, #ebe3d6 100%);
  box-shadow:
    0 6px 16px rgba(92, 48, 24, 0.14),
    inset 0 -4px 10px rgba(92, 48, 24, 0.06);
  z-index: 1;
}

.plate-rim {
  display: block;
  position: absolute;
  bottom: 30%;
  left: -2%;
  width: 104%;
  height: 36%;
  border-radius: 50%;
  border: 3px solid #f0e8dc;
  z-index: 2;
  pointer-events: none;
}

.plate-inner-ring {
  position: absolute;
  bottom: 31%;
  left: 8%;
  width: 84%;
  height: 26%;
  border-radius: 50%;
  border: 1px solid rgba(200, 190, 175, 0.55);
  z-index: 2;
  pointer-events: none;
}

.samosa {
  position: absolute;
  width: 72px;
  height: 88px;
  z-index: 3;
  filter: drop-shadow(0 3px 6px rgba(92, 48, 24, 0.2));
}

.samosa-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.samosa-body {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 92% 88%, 50% 100%, 8% 88%);
  background:
    linear-gradient(160deg, #e8b050 0%, #d89840 25%, #b87830 50%, #8f5820 100%);
}

.samosa-blister {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 150, 0.7), rgba(200, 140, 50, 0.3));
  z-index: 4;
  opacity: 0.75;
}

.samosa-blister.b1 { top: 22%; left: 28%; width: 8px; height: 6px; }
.samosa-blister.b2 { top: 38%; right: 22%; width: 6px; height: 5px; }

.samosa-crimp {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 80%;
  height: 12%;
  border-radius: 0 0 40% 40%;
  background: repeating-linear-gradient(
    90deg,
    #8f5820 0 3px,
    #a86828 3px 6px,
    #7a4818 6px 9px
  );
  opacity: 0.85;
  z-index: 2;
}

.samosa-body::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 92% 88%, 50% 100%, 8% 88%);
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255, 255, 255, 0.45), transparent 45%),
    radial-gradient(ellipse at 70% 60%, rgba(80, 30, 0, 0.18), transparent 50%);
}

.samosa-side {
  position: absolute;
  top: 12%;
  width: 42%;
  height: 76%;
  opacity: 0.88;
}

.samosa-side-left {
  left: 8%;
  clip-path: polygon(100% 0%, 100% 100%, 0% 88%);
  background: #a06828;
  opacity: 0.5;
}

.samosa-side-right {
  right: 8%;
  clip-path: polygon(0% 0%, 100% 88%, 0% 100%);
  background: #8f5820;
  opacity: 0.5;
}

.samosa-fold {
  position: absolute;
  top: 8%;
  left: 38%;
  width: 3px;
  height: 78%;
  background: rgba(80, 40, 10, 0.35);
  border-radius: 2px;
  z-index: 2;
}

.samosa-fold::after {
  content: "";
  position: absolute;
  top: 12%;
  left: -18px;
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, rgba(100, 50, 8, 0.35), rgba(50, 25, 4, 0.5));
  transform: rotate(22deg);
  border-radius: 2px;
}

.garnish-lemon {
  position: absolute;
  bottom: 38%;
  right: 14%;
  width: 22px;
  height: 14px;
  border-radius: 0 50% 50% 0;
  background: linear-gradient(180deg, #f0e040, #c8b020);
  transform: rotate(25deg);
  z-index: 7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.garnish-lemon::before {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border-radius: inherit;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25) 0 2px,
    transparent 2px 4px
  );
}

.garnish-coriander {
  position: absolute;
  bottom: 48%;
  left: 22%;
  width: 28px;
  height: 16px;
  z-index: 7;
}

.garnish-coriander span:not(.label) {
  position: absolute;
  width: 8px;
  height: 5px;
  border-radius: 50% 0 50% 0;
  background: #4a9a32;
}

.garnish-coriander span:nth-child(1) { top: 0; left: 0; transform: rotate(-20deg); }
.garnish-coriander span:nth-child(2) { top: 4px; left: 8px; transform: rotate(15deg); background: #3d8028; }
.garnish-coriander span:nth-child(3) { top: 2px; right: 0; transform: rotate(40deg); }
.garnish-coriander span:nth-child(4) { bottom: 0; left: 12px; transform: rotate(-5deg); background: #5cb038; }

.pickle-slice {
  position: absolute;
  bottom: 36%;
  left: 16%;
  width: 18px;
  height: 10px;
  border-radius: 40%;
  background: linear-gradient(135deg, #6a9838, #4a7828);
  transform: rotate(-15deg);
  z-index: 7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.pickle-slice::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200, 220, 180, 0.5);
}

.s1 {
  bottom: 42%;
  left: 50%;
  z-index: 5;
  animation: samosa-in-center var(--cycle) cubic-bezier(0.22, 1.1, 0.36, 1) forwards;
}

.s2 {
  bottom: 40%;
  left: 30%;
  z-index: 4;
  animation:
    samosa-in-left var(--cycle) cubic-bezier(0.22, 1.1, 0.36, 1) forwards,
    samosa-dip-z var(--cycle) forwards,
    samosa-dip-shadow var(--cycle) ease-in-out forwards;
}

.s2.samosa-dipper .samosa-dip-path {
  width: 100%;
  height: 100%;
  animation: samosa-dip-path var(--cycle) cubic-bezier(0.4, 0.05, 0.2, 1) forwards;
}

.s2.samosa-dipper .samosa-inner {
  transform-origin: 50% 8%;
  animation: samosa-dip-tilt var(--cycle) cubic-bezier(0.45, 0.05, 0.25, 1) forwards;
}

.s2.samosa-dipper .samosa-body,
.s2.samosa-dipper .samosa-body::before,
.s2.samosa-dipper .samosa-body::after {
  animation: samosa-dip-bite-clip var(--cycle) forwards;
}

.s2.samosa-dipper .samosa-body {
  z-index: 3;
}

/* Wet mint glaze clipped to tip — not a floating green solid */
.s2.samosa-dipper .samosa-body::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 92% 88%, 50% 100%, 8% 88%);
  background: radial-gradient(
    ellipse 42% 28% at 50% 92%,
    rgba(74, 154, 50, 0.72) 0%,
    rgba(74, 154, 50, 0.28) 45%,
    transparent 70%
  );
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation:
    samosa-dip-bite-clip var(--cycle) forwards,
    samosa-dip-wet-glaze var(--cycle) forwards;
}

.s2 .samosa-filling-peek {
  position: absolute;
  /* Only the bite cavity — not a full floating filling slab */
  top: 8%;
  right: 10%;
  width: 24px;
  height: 22px;
  clip-path: polygon(12% 8%, 88% 4%, 72% 96%, 18% 86%);
  background:
    linear-gradient(150deg, #f2dc78 0%, #e0b848 55%, #c09028 100%);
  z-index: 2;
  opacity: 0;
  box-shadow: inset 1px 1px 3px rgba(90, 50, 10, 0.35);
  animation: samosa-dip-filling-peek var(--cycle) forwards;
}

.s2 .samosa-bite-reveal {
  opacity: 0;
  z-index: 4;
  animation: samosa-dip-bite-show var(--cycle) forwards;
}

.s2 .samosa-bite-reveal .bite-depth {
  top: 8%;
  right: 11%;
  width: 22px;
  height: 20px;
  clip-path: polygon(10% 6%, 90% 4%, 74% 96%, 16% 84%);
  background: linear-gradient(145deg, rgba(40, 20, 4, 0.38), transparent 80%);
}

.samosa-bitten {
  --bite-shell: path(
    "M 36 0 L 48 8 C 54 12 56 24 51 30 C 47 24 49 16 57 13 L 66 77 L 36 88 L 6 77 Z"
  );
}

.samosa-bitten .samosa-filling {
  position: absolute;
  inset: 2% 4% 14% 4%;
  clip-path: polygon(50% 0%, 90% 70%, 50% 90%, 10% 70%);
  background: linear-gradient(155deg, #f8e888 0%, #e8c858 42%, #cfa030 100%);
  z-index: 2;
  box-shadow: inset 0 2px 8px rgba(120, 80, 20, 0.18);
}

.samosa-bitten .samosa-body {
  z-index: 3;
  clip-path: var(--bite-shell);
}

.samosa-bitten .samosa-body::before {
  clip-path: var(--bite-shell);
  background:
    radial-gradient(ellipse at 30% 32%, rgba(255, 255, 255, 0.35), transparent 42%),
    radial-gradient(ellipse at 72% 62%, rgba(80, 30, 0, 0.16), transparent 50%);
}

.samosa-bitten .samosa-filling::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 16%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8edc68, #3a8828);
  box-shadow: 10px 6px 0 -1px rgba(58, 136, 40, 0.85);
}

.samosa-bitten .fill-pea {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8edc68, #3a8828);
  z-index: 2;
}

.samosa-bitten .fill-pea:nth-child(1) { top: 22%; right: 18%; left: auto; }
.samosa-bitten .fill-pea:nth-child(2) { top: 34%; right: 28%; left: auto; }
.samosa-bitten .fill-pea:nth-child(3) { top: 44%; left: 38%; }

.samosa-bitten .samosa-side-right {
  clip-path: polygon(0% 48%, 100% 88%, 0% 100%);
  opacity: 0.38;
}

.samosa-bitten .samosa-side-left {
  opacity: 0.45;
}

.samosa-bite {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.bite-depth {
  position: absolute;
  top: 12%;
  right: 13%;
  width: 22px;
  height: 18px;
  clip-path: polygon(8% 6%, 88% 10%, 72% 92%, 12% 78%);
  background: linear-gradient(145deg, rgba(55, 28, 4, 0.28), transparent 78%);
}

.bite-flake {
  position: absolute;
  background: linear-gradient(145deg, #e8b050, #9a6018);
  box-shadow: 0 1px 1px rgba(60, 30, 0, 0.25);
}

.bite-flake.f1 {
  top: 10%;
  right: 18%;
  width: 10px;
  height: 4px;
  border-radius: 45% 55% 40% 60%;
  transform: rotate(24deg);
}

.bite-flake.f2 {
  top: 16%;
  right: 23%;
  width: 7px;
  height: 4px;
  border-radius: 60% 40% 55% 45%;
  transform: rotate(-16deg);
  opacity: 0.9;
}

.bite-flake.f3 {
  top: 20%;
  right: 13%;
  width: 6px;
  height: 4px;
  border-radius: 50% 40% 60% 45%;
  transform: rotate(34deg);
  background: linear-gradient(160deg, #d89840, #7a4818);
}

.samosa-bitten .samosa-fold::after {
  display: none;
}

.samosa-bitten .samosa-blister.b2 {
  display: none;
}

.samosa-bitten .samosa-crimp,
.samosa-bitten .samosa-fold,
.samosa-bitten .samosa-blister {
  z-index: 4;
}

.s3 {
  bottom: 40%;
  right: 30%;
  z-index: 3;
  animation: samosa-in-right var(--cycle) cubic-bezier(0.22, 1.1, 0.36, 1) forwards;
}

.chutney-bowl {
  position: absolute;
  width: 52px;
  height: 48px;
  z-index: 8;
  filter: drop-shadow(0 2px 4px rgba(92, 48, 24, 0.15));
}

.chutney-bowl .bowl-plate {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 62px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #faf6ef;
  box-shadow:
    0 2px 5px rgba(92, 48, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 0;
}

.chutney-bowl .katori {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 40px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
  background: #faf6ef;
  border: 2px solid #e8dfd0;
  border-top: none;
  overflow: hidden;
  z-index: 2;
  box-shadow: inset 0 -3px 6px rgba(92, 48, 24, 0.06);
}

.chutney-bowl .sauce {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 34px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 34px 34px 0 0;
  z-index: 1;
}

.chutney-garnish {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 6px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  z-index: 3;
}

.green .chutney-garnish {
  background: rgba(200, 255, 180, 0.5);
  box-shadow: 6px 2px 0 rgba(180, 240, 160, 0.35);
}

.red .chutney-garnish {
  background: rgba(255, 200, 180, 0.45);
  box-shadow: -5px 3px 0 rgba(240, 160, 140, 0.3);
}

.green {
  bottom: 44%;
  left: 10%;
  animation: bowl-in-left var(--cycle) ease-out forwards;
}

.green .sauce {
  background: linear-gradient(180deg, #9fdc78 0%, #4a9a32 55%, #2d6a1e 100%);
  transform-origin: 50% 100%;
  animation: sauce-dip-level var(--cycle) ease-in-out forwards;
}

.green .sauce-splash {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 28px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(159, 220, 120, 0.85), transparent 72%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: sauce-dip-splash var(--cycle) ease-out forwards;
}

.green .katori::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 22px;
  height: 5px;
  transform: translateX(-50%) scaleX(0);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  animation: sauce-dip-ripple var(--cycle) ease-out forwards;
}

.red {
  bottom: 44%;
  right: 10%;
  animation: bowl-in-right var(--cycle) ease-out forwards;
}

.red .sauce {
  background: linear-gradient(180deg, #f08060 0%, #c83828 55%, #8a1a12 100%);
}

.samosa-steam {
  position: absolute;
  bottom: 72%;
  left: 50%;
  width: 140px;
  height: 50px;
  transform: translateX(-50%);
  z-index: 9;
  pointer-events: none;
}

.samosa-steam span {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, 0.65), rgba(255, 235, 200, 0.25) 55%, transparent 78%);
  filter: blur(3px);
  opacity: 0;
  animation: samosa-steam-rise 2.8s ease-in-out forwards;
}

.samosa-steam span:nth-child(1) { left: 18%; height: 28px; animation-delay: 0s; }
.samosa-steam span:nth-child(2) { left: 32%; height: 36px; animation-delay: 0.5s; }
.samosa-steam span:nth-child(3) { left: 46%; height: 40px; animation-delay: 1s; }
.samosa-steam span:nth-child(4) { left: 58%; height: 34px; animation-delay: 1.5s; }
.samosa-steam span:nth-child(5) { left: 72%; height: 26px; animation-delay: 2s; }

@keyframes samosa-steam-rise {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.75);
  }
  15% {
    opacity: 0.85;
  }
  60% {
    opacity: 0.55;
    transform: translateY(-28px) scale(1.05);
  }
  100% {
    opacity: 0.45;
    transform: translateY(-20px) scale(1);
  }
}

.crumb {
  position: absolute;
  width: 6px;
  height: 4px;
  border-radius: 40%;
  background: #c8861a;
  opacity: 0;
  z-index: 2;
  animation: crumb-pop var(--cycle) ease-out forwards;
}

.c1 { bottom: 26%; left: 38%; }
.c2 { bottom: 24%; left: 46%; width: 5px; height: 3px; }
.c3 { bottom: 25%; left: 54%; }
.c4 { bottom: 23%; left: 42%; width: 4px; height: 3px; animation-delay: calc(var(--cycle) * 0.03); }
.c5 { bottom: 27%; left: 58%; width: 5px; height: 3px; animation-delay: calc(var(--cycle) * 0.05); }
.c6 { bottom: 42%; left: 52%; width: 4px; height: 3px; animation-delay: calc(var(--cycle) * 0.04); }
.c7 {
  bottom: 38%;
  left: 28%;
  width: 5px;
  height: 3px;
  animation: crumb-bite-pop var(--cycle) ease-out forwards;
}

.oil-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 64, 0.35), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.o1 { bottom: 22%; left: 35%; width: 14px; height: 8px; }
.o2 { bottom: 21%; right: 32%; width: 10px; height: 6px; }

.caption {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(107, 68, 35, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  z-index: 3;
  white-space: nowrap;
}

.impact-flash,
.crack-lines,
.shatter {
  display: none;
}

.label {
  position: absolute;
  display: inline-block;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: #3d2210;
  white-space: nowrap;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  background: rgba(255, 251, 245, 0.97);
  border: 1px solid rgba(107, 68, 35, 0.45);
  border-radius: 999px;
  box-shadow:
    0 2px 8px rgba(61, 34, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  animation: label-fade-in var(--cycle) ease-out forwards;
}

.label::before {
  content: "";
  position: absolute;
  background: #6b4423;
}

.label-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(255, 230, 190, 0.65);
}

.label-samosa {
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  color: #5c3810;
  background: rgba(255, 236, 200, 0.98);
  border-color: rgba(200, 134, 26, 0.6);
}

.label-samosa::before {
  top: 100%;
  bottom: auto;
  left: 50%;
  width: 1px;
  height: 16px;
  margin-top: 3px;
  transform: translateX(-50%);
  background: #a86828;
}

.green .label-chutney,
.red .label-chutney {
  top: -38px;
}

.green .label-chutney {
  left: 0;
  transform: translateX(-12%);
  color: #1e4a14;
  background: rgba(232, 248, 224, 0.98);
  border-color: rgba(74, 154, 50, 0.6);
  animation-delay: 0.06s;
}

.green .label-chutney::before {
  top: 100%;
  bottom: auto;
  left: 50%;
  width: 1px;
  height: 12px;
  margin-top: 3px;
  transform: translateX(-50%);
  background: #4a9a32;
}

.red .label-chutney {
  left: auto;
  right: 0;
  transform: translateX(12%);
  color: #5a140e;
  background: rgba(255, 232, 226, 0.98);
  border-color: rgba(200, 56, 40, 0.6);
  animation-delay: 0.08s;
}

.red .label-chutney::before {
  top: 100%;
  bottom: auto;
  left: 50%;
  width: 1px;
  height: 12px;
  margin-top: 3px;
  transform: translateX(-50%);
  background: #c83828;
}

@keyframes label-fade-in {
  0%, 30% { opacity: 0; }
  36%, 100% { opacity: 1; }
}

/* Dish diagram labels */
.label-garnish {
  font-size: 0.66rem;
  animation: label-in-garnish var(--cycle) ease-out 0.04s forwards;
}

.label-lemon {
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  color: #6a5010;
  background: rgba(255, 248, 210, 0.98);
  border-color: rgba(200, 176, 32, 0.6);
}

.label-lemon::before {
  top: 50%;
  right: 100%;
  left: auto;
  bottom: auto;
  width: 10px;
  height: 1px;
  margin-right: 3px;
  transform: translateY(-50%);
  background: #c8b020;
}

.label-coriander {
  top: 50%;
  right: calc(100% + 10px);
  left: auto;
  transform: translateY(-50%);
  color: #1e4a14;
  background: rgba(232, 248, 224, 0.98);
  border-color: rgba(74, 154, 50, 0.6);
}

.label-coriander::before {
  top: 50%;
  left: 100%;
  right: auto;
  bottom: auto;
  width: 10px;
  height: 1px;
  margin-left: 3px;
  transform: translateY(-50%);
  background: #4a9a32;
}

.label-pickle {
  top: calc(100% + 10px);
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  color: #3a5018;
  background: rgba(236, 244, 224, 0.98);
  border-color: rgba(106, 152, 56, 0.6);
}

.label-pickle::before {
  bottom: 100%;
  top: auto;
  left: 50%;
  width: 1px;
  height: 10px;
  margin-bottom: 3px;
  transform: translateX(-50%);
  background: #6a9838;
}

@keyframes label-in-garnish {
  0%, 34% { opacity: 0; }
  40%, 100% { opacity: 1; }
}

/* Disco lighting — hits during the shatter beat */
.disco-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 88;
  overflow: hidden;
  display: none; /* off — delete this line (and set --disco-on: 1) to re-enable */
}

.disco-beams {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180vmax;
  height: 180vmax;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(255, 0, 140, 0.22) 0deg,
    rgba(255, 220, 0, 0.16) 60deg,
    rgba(0, 255, 200, 0.2) 120deg,
    rgba(120, 80, 255, 0.18) 180deg,
    rgba(255, 80, 40, 0.2) 240deg,
    rgba(255, 0, 140, 0.22) 360deg
  );
  mix-blend-mode: screen;
  opacity: 0;
  animation:
    disco-beams-spin 2.8s linear infinite,
    disco-lights-cycle var(--cycle) steps(1, end) infinite;
}

.disco-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 0, 180, 0.18), transparent 42%),
    radial-gradient(circle at 72% 36%, rgba(0, 220, 255, 0.16), transparent 38%),
    radial-gradient(circle at 50% 68%, rgba(255, 240, 0, 0.14), transparent 45%);
  mix-blend-mode: color-dodge;
  opacity: 0;
  animation: disco-wash-pulse var(--cycle) ease-in-out infinite;
}

.disco-ball {
  position: absolute;
  top: 7%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  opacity: 0;
  animation: disco-lights-cycle var(--cycle) steps(1, end) infinite;
}

.disco-ball-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff 0%, #d8d8d8 35%, #707070 100%);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 -4px 8px rgba(0, 0, 0, 0.15);
  animation: disco-ball-spin 1.6s linear infinite;
}

.disco-ball-spots {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.95) 0deg 8deg,
      rgba(255, 100, 180, 0.85) 8deg 16deg,
      rgba(120, 255, 220, 0.85) 16deg 24deg,
      rgba(255, 220, 80, 0.85) 24deg 32deg
    );
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: disco-ball-spin 1.1s linear infinite reverse;
}

.disco-ball-core::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 1px;
  height: 10px;
  transform: translateX(-50%);
  background: rgba(60, 60, 60, 0.5);
}

.disco-lightning {
  position: absolute;
  width: 8px;
  opacity: 0;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 14px rgba(180, 220, 255, 0.85));
  animation: disco-lightning-flash var(--cycle) ease-out infinite;
}

.disco-lightning::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, #dff 45%, #fff 100%);
  clip-path: polygon(
    45% 0%, 58% 0%, 38% 28%, 62% 28%, 32% 52%,
    68% 52%, 42% 76%, 58% 76%, 48% 100%, 52% 100%
  );
}

.bolt-a {
  top: 12%;
  left: 22%;
  height: 88px;
  animation-delay: calc(var(--cycle) * 0.53);
}

.bolt-b {
  top: 8%;
  right: 18%;
  height: 104px;
  animation-name: disco-lightning-flash-b;
  animation-duration: var(--cycle);
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--cycle) * 0.58);
}

.bolt-c {
  top: 18%;
  left: 48%;
  height: 72px;
  animation-delay: calc(var(--cycle) * 0.62);
}

@keyframes disco-beams-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes disco-lights-cycle {
  0%, 51% {
    opacity: 0;
  }
  52%, 77% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 0;
  }
}

@keyframes disco-wash-pulse {
  0%, 51% {
    opacity: 0;
  }
  52% {
    opacity: 0.85;
  }
  54% {
    opacity: 0.25;
  }
  56% {
    opacity: 0.9;
  }
  58% {
    opacity: 0.3;
  }
  60% {
    opacity: 0.85;
  }
  63% {
    opacity: 0.35;
  }
  66% {
    opacity: 0.75;
  }
  70% {
    opacity: 0.4;
  }
  74% {
    opacity: 0.55;
  }
  77% {
    opacity: 0.15;
  }
  78%, 100% {
    opacity: 0;
  }
}

@keyframes disco-ball-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes disco-lightning-flash {
  0%, 51% {
    opacity: 0;
    transform: scaleY(0.4);
  }
  52% {
    opacity: 1;
    transform: scaleY(1.05);
  }
  54% {
    opacity: 0;
    transform: scaleY(0.6);
  }
  56% {
    opacity: 0.95;
    transform: scaleY(1);
  }
  58% {
    opacity: 0;
  }
  61% {
    opacity: 0.85;
    transform: scaleY(0.95);
  }
  63%, 100% {
    opacity: 0;
    transform: scaleY(0.5);
  }
}

@keyframes disco-lightning-flash-b {
  0%, 51% {
    opacity: 0;
    transform: scaleX(-1) scaleY(0.4);
  }
  52% {
    opacity: 1;
    transform: scaleX(-1) scaleY(1.05);
  }
  54% {
    opacity: 0;
    transform: scaleX(-1) scaleY(0.6);
  }
  56% {
    opacity: 0.95;
    transform: scaleX(-1) scaleY(1);
  }
  58% {
    opacity: 0;
  }
  61% {
    opacity: 0.85;
    transform: scaleX(-1) scaleY(0.95);
  }
  63%, 100% {
    opacity: 0;
    transform: scaleX(-1) scaleY(0.5);
  }
}

.impact-flash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 220, 140, 0.55), transparent 65%);
  opacity: 0;
  z-index: 90;
  animation: impact-flash var(--cycle) ease-out forwards;
}

.crack-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 95;
}

.crack {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  opacity: 0;
  transform-origin: center;
  animation: crack-grow var(--cycle) ease-out forwards;
}

.c-a {
  top: 48%;
  left: 50%;
  width: 2px;
  height: 0;
  transform: translate(-50%, -50%) rotate(12deg);
}

.c-b {
  top: 48%;
  left: 50%;
  width: 2px;
  height: 0;
  transform: translate(-50%, -50%) rotate(-38deg);
}

.c-c {
  top: 48%;
  left: 50%;
  width: 2px;
  height: 0;
  transform: translate(-50%, -50%) rotate(72deg);
}

.c-d {
  top: 48%;
  left: 50%;
  width: 2px;
  height: 0;
  transform: translate(-50%, -50%) rotate(-95deg);
}

.c-e {
  top: 48%;
  left: 50%;
  width: 2px;
  height: 0;
  transform: translate(-50%, -50%) rotate(155deg);
}

.shatter {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}

.shard {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(180, 210, 255, 0.08)),
    rgba(10, 6, 4, 0.12);
  backdrop-filter: blur(3px);
  opacity: 0;
  will-change: transform, opacity;
}

.shard.s1  { clip-path: polygon(0 0, 28% 0, 18% 38%, 0 28%);   animation: shard-1 var(--cycle) ease-in forwards; }
.shard.s2  { clip-path: polygon(28% 0, 58% 0, 48% 32%, 18% 38%); animation: shard-2 var(--cycle) ease-in forwards; }
.shard.s3  { clip-path: polygon(58% 0, 100% 0, 100% 22%, 48% 32%); animation: shard-3 var(--cycle) ease-in forwards; }
.shard.s4  { clip-path: polygon(0 28%, 18% 38%, 32% 62%, 0 55%); animation: shard-4 var(--cycle) ease-in forwards; }
.shard.s5  { clip-path: polygon(18% 38%, 48% 32%, 52% 58%, 32% 62%); animation: shard-5 var(--cycle) ease-in forwards; }
.shard.s6  { clip-path: polygon(48% 32%, 100% 22%, 100% 48%, 52% 58%); animation: shard-6 var(--cycle) ease-in forwards; }
.shard.s7  { clip-path: polygon(0 55%, 32% 62%, 28% 100%, 0 100%); animation: shard-7 var(--cycle) ease-in forwards; }
.shard.s8  { clip-path: polygon(32% 62%, 52% 58%, 55% 100%, 28% 100%); animation: shard-8 var(--cycle) ease-in forwards; }
.shard.s9  { clip-path: polygon(52% 58%, 100% 48%, 100% 72%, 55% 100%); animation: shard-9 var(--cycle) ease-in forwards; }
.shard.s10 { clip-path: polygon(28% 100%, 55% 100%, 50% 72%, 38% 68%); animation: shard-10 var(--cycle) ease-in forwards; }
.shard.s11 { clip-path: polygon(55% 100%, 100% 72%, 100% 100%); animation: shard-11 var(--cycle) ease-in forwards; }
.shard.s12 { clip-path: polygon(38% 68%, 50% 72%, 48% 88%, 35% 82%); animation: shard-12 var(--cycle) ease-in forwards; }

@keyframes stage-enter {
  0% {
    transform: translateY(24px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  28%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes plate-tilt {
  0%, 18% {
    transform: translateX(-50%) translateY(12px);
  }
  28%, 100% {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes samosa-in-center {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-40px) scale(0.85);
  }
  22% {
    opacity: 1;
    transform: translateX(-50%) translateY(4px) scale(1.03);
  }
  28%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes samosa-in-left {
  0%, 6% {
    opacity: 0;
    transform: translateY(-36px) scale(0.85);
  }
  24% {
    opacity: 1;
    transform: translateY(4px) scale(0.98);
  }
  28%, 100% {
    opacity: 1;
    transform: translateY(0) scale(0.96);
  }
}

@keyframes samosa-in-right {
  0%, 10% {
    opacity: 0;
    transform: translateY(-36px) scale(0.85);
  }
  26% {
    opacity: 1;
    transform: translateY(4px) scale(0.98);
  }
  28%, 100% {
    opacity: 1;
    transform: translateY(0) scale(0.96);
  }
}

@keyframes bowl-in-left {
  0%, 20% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  30%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bowl-in-right {
  0%, 20% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  30%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes samosa-dip-z {
  0%, 28%, 51%, 100% { z-index: 4; }
  31%, 36% { z-index: 10; }
  37%, 44% { z-index: 6; }
  45%, 50% { z-index: 10; }
}

@keyframes samosa-dip-shadow {
  0%, 28%, 51%, 100% {
    filter: drop-shadow(0 3px 6px rgba(92, 48, 24, 0.2));
  }
  39%, 44% {
    filter: drop-shadow(-5px 1px 7px rgba(92, 48, 24, 0.28));
  }
}

@keyframes samosa-dip-path {
  0%, 28% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(-6px, -14px);
  }
  33% {
    transform: translate(-30px, -10px);
  }
  36% {
    transform: translate(-56px, -8px);
  }
  38% {
    transform: translate(-72px, -18px);
  }
  40% {
    transform: translate(-80px, -36px);
  }
  41%, 43% {
    transform: translate(-82px, -40px);
  }
  45% {
    transform: translate(-74px, -16px);
  }
  48% {
    transform: translate(-28px, -6px);
  }
  51%, 100% {
    transform: translate(0, 0);
  }
}

@keyframes samosa-dip-tilt {
  0%, 28% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(-18deg);
  }
  37% {
    transform: rotate(-42deg);
  }
  39% {
    transform: rotate(-58deg);
  }
  40% {
    transform: rotate(-66deg);
  }
  41% {
    transform: rotate(-70deg);
  }
  42% {
    transform: rotate(-67deg);
  }
  43% {
    transform: rotate(-64deg);
  }
  46% {
    transform: rotate(-36deg);
  }
  49% {
    transform: rotate(-12deg);
  }
  51%, 100% {
    transform: rotate(0deg);
  }
}

@keyframes samosa-dip-wet-glaze {
  0%, 39% { opacity: 0; }
  40%, 43% { opacity: 0.95; }
  46% { opacity: 0.7; }
  52%, 100% { opacity: 0.45; }
}

@keyframes samosa-dip-bite-clip {
  0%, 49% {
    clip-path: polygon(50% 0%, 92% 88%, 50% 100%, 8% 88%);
  }
  52%, 100% {
    clip-path: polygon(50% 0%, 48% 8%, 56% 15%, 52% 26%, 58% 12%, 68% 76%, 50% 100%, 8% 88%);
  }
}

@keyframes samosa-dip-filling-peek {
  0%, 49% { opacity: 0; }
  52%, 100% { opacity: 1; }
}

@keyframes samosa-dip-bite-show {
  0%, 49% { opacity: 0; }
  52%, 100% { opacity: 1; }
}

@keyframes sauce-dip-level {
  0%, 38% {
    transform: translateX(-50%) scaleY(1) translateY(0);
  }
  40% {
    transform: translateX(-50%) scaleY(0.7) translateY(3px);
  }
  41%, 43% {
    transform: translateX(-50%) scaleY(0.64) translateY(4px);
  }
  46%, 100% {
    transform: translateX(-50%) scaleY(1) translateY(0);
  }
}

@keyframes sauce-dip-splash {
  0%, 39% {
    opacity: 0;
    transform: translateX(-50%) scale(0.35);
  }
  40% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.2);
  }
  43%, 100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.55);
  }
}

@keyframes sauce-dip-ripple {
  0%, 39% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
  40% {
    opacity: 0.85;
    transform: translateX(-50%) scaleX(1.25);
  }
  43%, 100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1.65);
  }
}

@keyframes crumb-bite-pop {
  0%, 49% { opacity: 0; transform: scale(0); }
  52%     { opacity: 0.75; transform: scale(1.15) rotate(-12deg); }
  56%, 100% { opacity: 0.7; transform: scale(1) rotate(-8deg); }
}

@keyframes crumb-pop {
  0%, 26% { opacity: 0; transform: scale(0); }
  30%     { opacity: 0.7; transform: scale(1.2); }
  34%, 100% { opacity: 0.7; transform: scale(1) rotate(20deg); }
}

.c2 { animation-name: crumb-pop-2; }
.c3 { animation-name: crumb-pop-3; }

@keyframes crumb-pop-2 {
  0%, 27% { opacity: 0; transform: scale(0); }
  31%     { opacity: 0.7; transform: scale(1.1); }
  34%, 100% { opacity: 0.7; transform: scale(1); }
}

@keyframes crumb-pop-3 {
  0%, 28% { opacity: 0; transform: scale(0) rotate(-15deg); }
  32%     { opacity: 0.7; transform: scale(1.15) rotate(-15deg); }
  34%, 100% { opacity: 0.7; transform: scale(1) rotate(-15deg); }
}

@keyframes caption-fade {
  0%, 8%   { opacity: 0; transform: translateX(-50%) translateY(12px); }
  18%, 48% { opacity: 0.75; transform: translateX(-50%) translateY(0); }
  52%, 100% { opacity: 0.75; transform: translateX(-50%) translateY(0); }
}

@keyframes screen-shake {
  0%, 50%   { transform: translate(0, 0); }
  51%       { transform: translate(-6px, 4px); }
  52%       { transform: translate(5px, -3px); }
  53%       { transform: translate(-4px, -5px); }
  54%       { transform: translate(6px, 3px); }
  55%       { transform: translate(-3px, 2px); }
  56%, 100% { transform: translate(0, 0); }
}

@keyframes impact-flash {
  0%, 50%   { opacity: 0; }
  51%       { opacity: 0.85; }
  54%       { opacity: 0.15; }
  58%, 100% { opacity: 0; }
}

@keyframes crack-grow {
  0%, 50%   { opacity: 0; height: 0; }
  51%       { opacity: 0.9; height: 18vh; }
  54%, 100% { opacity: 0; height: 42vh; }
}

@keyframes shard-fly {
  0%, 52% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  53% {
    opacity: 0.92;
  }
  78%, 100% {
    opacity: 0;
    transform: var(--fly);
  }
}

@keyframes shard-1  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(-28vw, -22vh) rotate(-32deg) scale(0.9); } }
@keyframes shard-2  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(-8vw, -30vh) rotate(18deg) scale(0.85); } }
@keyframes shard-3  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(26vw, -24vh) rotate(28deg) scale(0.88); } }
@keyframes shard-4  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(-32vw, -6vh) rotate(-48deg) scale(0.92); } }
@keyframes shard-5  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(-4vw, -14vh) rotate(8deg) scale(0.8); } }
@keyframes shard-6  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(30vw, -8vh) rotate(42deg) scale(0.86); } }
@keyframes shard-7  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(-26vw, 28vh) rotate(-58deg) scale(0.9); } }
@keyframes shard-8  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(-2vw, 32vh) rotate(12deg) scale(0.84); } }
@keyframes shard-9  { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(28vw, 26vh) rotate(52deg) scale(0.87); } }
@keyframes shard-10 { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(2vw, 36vh) rotate(-22deg) scale(0.75); } }
@keyframes shard-11 { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(34vw, 34vh) rotate(38deg) scale(0.82); } }
@keyframes shard-12 { 0%, 52% { opacity: 0; transform: translate(0,0) rotate(0); } 53% { opacity: 0.9; } 78%, 100% { opacity: 0; transform: translate(0, 18vh) rotate(6deg) scale(0.7); } }

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 235, 210, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 235, 210, 0.25);
  transition: color 0.2s ease;
}

.scroll-hint:hover {
  color: rgba(255, 245, 230, 0.95);
}

@media (max-width: 768px) {
  .mise-tray {
    left: -2%;
    transform: scale(0.88);
    transform-origin: bottom left;
  }
}

@media (max-width: 480px) {
  .world {
    transform: translateY(12%) scale(0.92);
  }

  @keyframes samosa-dip-path {
    0%, 28% { transform: translate(0, 0); }
    30% { transform: translate(-4px, -10px); }
    33% { transform: translate(-20px, -7px); }
    36% { transform: translate(-38px, -6px); }
    38% { transform: translate(-50px, -12px); }
    40%, 43% { transform: translate(-56px, -26px); }
    45% { transform: translate(-50px, -10px); }
    48% { transform: translate(-20px, -4px); }
    51%, 100% { transform: translate(0, 0); }
  }

  @keyframes samosa-dip-tilt {
    0%, 28% { transform: rotate(0deg); }
    39% { transform: rotate(-56deg); }
    41% { transform: rotate(-68deg); }
    43% { transform: rotate(-62deg); }
    51%, 100% { transform: rotate(0deg); }
  }

  .hero-title {
    top: 18%;
  }

  .hero-heading {
    font-size: 2.6rem;
  }

  .hero-heading::before,
  .hero-heading::after {
    width: 1.4rem;
    margin-right: 0.45rem;
    margin-left: 0.45rem;
  }

  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .plate {
    width: min(94vw, 340px);
    bottom: 0;
  }

  .green { left: 8%; }
  .red { right: 8%; }

  .shelf-left {
    left: 4%;
    transform: scale(0.82);
    transform-origin: bottom left;
  }

  .shelf-right {
    right: 4%;
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .kitchen-window {
    right: 6%;
    width: 24vw;
    height: 24vw;
  }

  .matka-shelf {
    left: 5%;
    transform: scale(0.85);
    transform-origin: bottom left;
  }

  .table-chai {
    transform: scale(0.8);
    transform-origin: bottom right;
  }

  .mise-tray {
    left: -4%;
    bottom: 2%;
    transform: scale(0.78);
    transform-origin: bottom left;
  }

  .wall-frame {
    display: none;
  }

  .label {
    font-size: 0.62rem;
    padding: 2px 7px;
  }

  .label-samosa {
    top: -44px;
  }

  .label-lemon {
    left: calc(100% + 6px);
    font-size: 0.58rem;
  }

  .label-coriander {
    right: calc(100% + 4px);
    font-size: 0.58rem;
  }

  .label-pickle {
    top: calc(100% + 8px);
    font-size: 0.58rem;
  }

  .green .label-chutney,
  .red .label-chutney {
    top: -34px;
    font-size: 0.58rem;
    max-width: 5.5rem;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .green .label-chutney {
    transform: translateX(-18%);
  }

  .red .label-chutney {
    transform: translateX(18%);
  }

  .caption {
    bottom: 8%;
    font-size: 0.72rem;
  }

  .scroll-hint {
    bottom: 0.75rem;
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .samosa-steam span {
    animation: none;
    opacity: 0.45;
    transform: translateY(-12px);
  }

  .sky-sun,
  .sun-glow,
  .cloud,
  .bird,
  .wing,
  .rain-streak {
    animation: none !important;
  }

  .rain-streak {
    opacity: 0.25;
    transform: translateY(40px);
  }

  .sun-glow {
    opacity: 0.6;
  }

  .disco-beams,
  .disco-ball-core,
  .disco-ball-spots {
    animation: none !important;
  }

  .disco-lights {
    opacity: 0.35;
  }

  .disco-beams {
    opacity: 0.2;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .disco-wash {
    animation: none;
    opacity: 0.15;
  }

  .disco-lightning {
    animation: none;
    opacity: 0;
  }

  .shatter,
  .crack-lines,
  .impact-flash {
    display: none;
  }

  .label {
    opacity: 1;
    animation: none;
  }

  .s2.samosa-dipper .samosa-dip-path {
    animation: none;
    transform: none;
  }

  .s2.samosa-dipper .samosa-inner {
    animation: none;
    transform: none;
  }

  .s2.samosa-dipper .samosa-body,
  .s2.samosa-dipper .samosa-body::before,
  .s2.samosa-dipper .samosa-body::after {
    animation: none;
    clip-path: polygon(50% 0%, 48% 8%, 56% 15%, 52% 26%, 58% 12%, 68% 76%, 50% 100%, 8% 88%);
  }

  .s2.samosa-dipper .samosa-body::after {
    opacity: 0.45;
  }

  .s2 .samosa-filling-peek {
    animation: none;
    opacity: 1;
  }

  .s2 .samosa-bite-reveal {
    animation: none;
    opacity: 1;
  }

  .green .sauce {
    animation: none;
    transform: translateX(-50%);
  }

  .green .sauce-splash,
  .green .katori::after {
    animation: none;
    opacity: 0;
  }

  .c7 {
    animation: none;
    opacity: 0.7;
    transform: rotate(-8deg);
  }
}
