:root {
  --main-pink: #f56aa3;
  --dark-pink: #e83f87;
  --soft-pink: #f9c7d9;
  --orange: #f5a33a;
  --dark-orange: #e88918;
  --cream: #fff8f1;
  --paper: #fffdf9;
  --text: #2c2c2c;
  --secondary: #70656b;
  --line: rgba(232, 63, 135, 0.15);
  --glass: rgba(255, 253, 249, 0.76);
  --shadow-soft: 0 24px 70px rgba(232, 63, 135, 0.14);
  --shadow-glow: 0 24px 80px rgba(245, 106, 163, 0.28);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --max: 1180px;

  --stage-bg: #ffd1e8;
  --stage-bg-2: #ff8fcd;
  --stage-accent: #ff4dad;
  --stage-accent-2: #8be7ff;
  --stage-title-fill: #fff8fd;
  --stage-title-stroke: #ff4dad;
  --stage-shadow: rgba(239, 55, 151, 0.46);
  --stage-deep-shadow: rgba(122, 24, 83, 0.2);
  --stage-spark: rgba(255, 255, 255, 0.86);
  --stage-p: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Baloo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(249, 199, 217, 0.5), transparent 24rem),
    radial-gradient(circle at 95% 0%, rgba(245, 163, 58, 0.18), transparent 23rem),
    linear-gradient(180deg, var(--paper), #fff6fb 44%, var(--paper));
}

main,
section,
header,
footer {
  min-width: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark-pink);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 14px max(14px, calc((100vw - var(--max)) / 2)) auto;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 13px 16px 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(158, 61, 99, 0.14);
  backdrop-filter: blur(20px) saturate(1.2);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.93);
  box-shadow: 0 18px 58px rgba(158, 61, 99, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: clamp(160px, 19vw, 238px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(232, 63, 135, 0.12));
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--dark-pink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--main-pink), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  box-shadow: 0 14px 28px rgba(232, 63, 135, 0.26);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn,
.header-cta,
.card-link,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.header-cta,
.btn-primary {
  min-height: 48px;
  padding: 0 24px;
  color: white;
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  box-shadow: 0 18px 38px rgba(245, 106, 163, 0.28);
}

.btn-secondary {
  min-height: 48px;
  padding: 0 24px;
  color: var(--dark-pink);
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(245, 106, 163, 0.28);
}

.btn-light {
  min-height: 48px;
  padding: 0 24px;
  color: var(--dark-pink);
  background: white;
  box-shadow: 0 18px 36px rgba(120, 53, 78, 0.15);
}

.btn:hover,
.header-cta:hover,
.card-link:hover,
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.page-main {
  padding-top: 128px;
}

.home-main {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--dark-pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  color: var(--dark-pink);
}

h2 {
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

p {
  color: var(--secondary);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
}

.candy-scroll {
  position: relative;
  height: 360svh;
  background: var(--stage-bg);
}

.candy-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.94) 0 7%, rgba(255, 255, 255, 0.24) 20%, transparent 44%),
    radial-gradient(circle at 16% 20%, color-mix(in srgb, var(--stage-accent-2) 62%, transparent) 0 11%, transparent 33%),
    radial-gradient(circle at 84% 23%, color-mix(in srgb, var(--stage-accent) 54%, transparent) 0 10%, transparent 31%),
    radial-gradient(circle at 18% 85%, rgba(255, 255, 255, 0.62) 0 9%, transparent 28%),
    linear-gradient(145deg, var(--stage-bg), var(--stage-bg-2));
}

.candy-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -4;
  background:
    radial-gradient(circle at 30% 34%, rgba(255, 255, 255, 0.48) 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.38) 0 0.38rem, transparent 0.43rem);
  background-size: 6rem 6rem, 7.2rem 7.2rem;
  opacity: 0.52;
  transform: rotate(calc(var(--stage-p) * 25deg)) scale(1.08);
}

.candy-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0 48%, rgba(255, 255, 255, 0.25) 68%, rgba(255, 255, 255, 0.45) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.32), transparent 24%, transparent 74%, rgba(255, 255, 255, 0.34));
  mix-blend-mode: soft-light;
}

.candy-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.16) 0 1px, transparent 1px),
    linear-gradient(25deg, rgba(255,255,255,.12) 0 1px, transparent 1px);
  background-size: 34px 34px, 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.candy-aurora {
  position: absolute;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  z-index: -3;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.74;
  pointer-events: none;
}

.aurora-one {
  left: -12vw;
  top: 8vh;
  background: color-mix(in srgb, var(--stage-accent) 58%, white 18%);
  transform: translate3d(0, calc(var(--stage-p) * -6vh), 0) rotate(calc(var(--stage-p) * 80deg));
}

.aurora-two {
  right: -16vw;
  bottom: -8vh;
  background: color-mix(in srgb, var(--stage-accent-2) 62%, white 16%);
  transform: translate3d(0, calc(var(--stage-p) * 8vh), 0) rotate(calc(var(--stage-p) * -90deg));
}

.transition-intro {
  position: absolute;
  left: 50%;
  top: clamp(95px, 13vh, 150px);
  z-index: 5;
  transform: translateX(-50%);
  width: min(92vw, 860px);
  text-align: center;
  pointer-events: none;
}

.transition-intro p {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(105, 37, 70, 0.72);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.stage-content {
  position: relative;
  z-index: 2;
  width: min(94vw, 860px);
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding-top: clamp(4.8rem, 10vh, 6rem);
  padding-bottom: clamp(5rem, 12vh, 7rem);
}

.product-stack {
  position: relative;
  width: min(74vw, 620px);
  height: min(53svh, 560px);
  display: grid;
  place-items: center;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.product {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transform-origin: 50% 58%;
  filter:
    drop-shadow(0 34px 26px var(--stage-deep-shadow))
    drop-shadow(0 0 42px color-mix(in srgb, var(--stage-accent) 46%, transparent));
  transition: opacity 0.18s linear, filter 0.18s linear;
  will-change: opacity, transform, filter;
}

.product[data-item="0"] {
  width: min(58vw, 510px);
}

.product[data-item="1"] {
  width: min(60vw, 550px);
}

.product[data-item="2"] {
  width: min(66vw, 610px);
}

.halo-wrap {
  position: absolute;
  width: min(78vw, 680px);
  height: min(78vw, 680px);
  top: 50%;
  left: 50%;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -48%);
}

.halo {
  position: absolute;
  inset: 7%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.3),
    0 0 60px color-mix(in srgb, var(--stage-accent) 36%, transparent);
  animation: candySpin 16s linear infinite;
}

.halo-inner {
  inset: 19%;
  border-style: dashed;
  opacity: 0.72;
  animation-duration: 23s;
  animation-direction: reverse;
}

.glow-plate {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 72%;
  height: 16%;
  transform: translateX(-50%) rotateX(72deg);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--stage-shadow) 0, rgba(255,255,255,.22) 38%, transparent 70%);
  filter: blur(12px);
  opacity: 0.9;
}

.title-stack {
  position: relative;
  z-index: 4;
  width: 100%;
  height: clamp(3.2rem, 7.8vw, 5.8rem);
  margin-top: clamp(-2.35rem, -4.5vh, -1.25rem);
  margin-bottom: clamp(2rem, 5vh, 3.25rem);
  display: grid;
  place-items: center;
}

.product-title {
  position: absolute;
  margin: 0;
  text-align: center;
  font-family: "Luckiest Guy", "Baloo 2", system-ui, sans-serif;
  font-size: clamp(2.1rem, 6.6vw, 5.35rem);
  line-height: 0.88;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--stage-title-fill);
  -webkit-text-stroke: clamp(1.5px, 0.26vw, 3.6px) var(--stage-title-stroke);
  text-shadow:
    0 4px 0 color-mix(in srgb, var(--stage-title-stroke) 42%, #7d2850),
    0 16px 24px rgba(0, 0, 0, 0.11),
    0 0 42px color-mix(in srgb, var(--stage-accent) 44%, transparent);
  opacity: 0;
  will-change: opacity, transform;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vh, 2rem);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(90, 38, 65, 0.72);
  opacity: calc(1 - min(var(--stage-p), 0.75));
}

.scroll-hint i {
  position: relative;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(90, 38, 65, 0.33);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.28);
}

.scroll-hint i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(90, 38, 65, 0.54);
  transform: translateX(-50%);
  animation: wheel 1.35s ease-in-out infinite;
}

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

.sprinkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), var(--stage-spark));
  box-shadow: 0 8px 18px rgba(90, 38, 65, 0.12);
  opacity: var(--o);
  transform:
    translate3d(calc(var(--stage-p) * var(--dx)), calc(var(--stage-p) * var(--dy)), 0)
    rotate(calc(var(--r) + var(--stage-p) * 190deg));
  animation: sprinkleFloat var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

.sprinkle:nth-child(3n) {
  border-radius: 40% 60% 55% 45%;
}

.sprinkle:nth-child(4n) {
  width: var(--h);
  height: var(--h);
  border-radius: 50%;
}

.overview-hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.4rem) 0 clamp(3rem, 7vw, 5.8rem);
  overflow: hidden;
  isolation: isolate;
}

.overview-hero::before {
  content: "";
  position: absolute;
  inset: 5% auto auto -18vw;
  width: 58vw;
  height: 38vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 106, 163, 0.18), transparent 66%);
  z-index: -1;
}
.overview-hero .hero-copy h1 {
  margin: 0;
  line-height: 0.88;
}

.overview-hero .hero-copy h1 span {
  display: block;
}

.overview-hero .hero-copy > p:not(.eyebrow) {
  margin: 0.5em auto 0;
  max-width: 720px;
}

.overview-hero .hero-grid {
  grid-template-columns: 1fr;
}

.overview-hero .hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.sweet-title {
  position: relative;
  max-width: 980px;
  animation: sweetTitleFloat 5.8s ease-in-out infinite;
  text-shadow:
    0 8px 0 rgba(245, 163, 58, 0.2),
    0 22px 48px rgba(232, 63, 135, 0.18);
}

.sweet-title::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -0.18em;
  height: 0.18em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(245, 106, 163, 0.55), rgba(245, 163, 58, 0.58), transparent);
  transform-origin: center;
  animation: sweetTitleGlow 3.8s ease-in-out infinite;
}

.hero-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
  width: 100%;
  margin-top: clamp(1.2rem, 3vw, 2rem);
  text-align: left;
}

.hero-intro-row p {
  margin: 0;
  max-width: none;
}
.hero-grid,
.split-grid,
.story-grid,
.contact-grid,
.station-hero,
.product-hero,
.page-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-copy h1 span,
.page-title span {
  display: block;
  color: var(--dark-orange);
}

.hero-copy p,
.page-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.06rem, 2.1vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-pills,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span,
.pill-row span,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--dark-pink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(232, 63, 135, 0.09);
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-feature-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-left: 1.2rem;
  color: var(--secondary);
  font-weight: 850;
  line-height: 1.45;
}

.hero-feature-list li::marker {
  color: var(--dark-pink);
}

.service-list,
.inquiry-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
  color: var(--secondary);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.35;
}

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

.service-list li::marker,
.inquiry-list li::marker {
  color: var(--dark-pink);
}

.variation-list {
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding-left: 1.15rem;
  color: var(--secondary);
  font-weight: 720;
  line-height: 1.36;
}

.variation-list li::marker {
  color: var(--dark-pink);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 0 3%;
  border-radius: 52px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(135deg, rgba(249, 199, 217, 0.62), rgba(255, 248, 241, 0.82) 48%, rgba(245, 163, 58, 0.18));
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
  z-index: -2;
}

.hero-food {
  width: min(100%, 690px);
  border-radius: 38px;
  filter: drop-shadow(0 38px 48px rgba(133, 53, 83, 0.18));
  animation: lift 5.5s ease-in-out infinite;
}

.float-card {
  position: absolute;
  z-index: 3;
  max-width: 240px;
  padding: 13px 16px;
  border-radius: 24px;
  color: var(--dark-pink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(153, 67, 99, 0.14);
  backdrop-filter: blur(16px);
  font-weight: 900;
}

.float-card.one {
  left: 0;
  bottom: 17%;
}

.float-card.two {
  right: 0;
  top: 18%;
  color: var(--dark-orange);
}

.feature-band {
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.marquee-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.marquee-line span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--secondary);
  background: var(--cream);
  font-weight: 900;
}

.section-block {
  padding: clamp(2.5rem, 5.4vw, 4.8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading p {
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > h2:only-child {
  grid-column: 1 / -1;
}

.customer-heading {
  align-items: start;
}

.customer-heading-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.customer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--dark-pink);
  background: rgba(245, 106, 163, 0.1);
  border: 1px solid rgba(245, 106, 163, 0.17);
  font-size: 0.92rem;
  font-weight: 900;
}

.client-heading {
  align-items: start;
}

.client-carousel {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(245, 106, 163, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: clientMarquee 24s linear infinite;
}

.client-carousel:hover .client-track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 220px;
  height: 108px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(232, 63, 135, 0.12);
  box-shadow: 0 14px 34px rgba(120, 53, 78, 0.08);
}

.client-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.info-card,
.product-card,
.audience-card,
.review-card,
.contact-card,
.story-card,
.timeline-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(120, 53, 78, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.info-card:hover,
.product-card:hover,
.audience-card:hover,
.contact-card:hover,
.story-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 106, 163, 0.34);
  box-shadow: var(--shadow-soft);
}

.product-card {
  min-height: 420px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card.featured {
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 163, 58, 0.18), transparent 18rem),
    linear-gradient(145deg, white, #fff3f8);
}

.product-card .product-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.product-card .product-image img {
  width: min(88%, 330px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(232, 63, 135, 0.14));
}

.product-card.featured .product-image img {
  width: 100%;
  height: 230px;
  max-height: none;
  object-fit: cover;
  border-radius: 24px;
}

.product-card h3,
.service-card h3,
.info-card h3,
.audience-card h3,
.story-card h3,
.contact-card h3 {
  color: var(--dark-pink);
  margin-bottom: 8px;
}

.product-card p,
.service-card p,
.info-card p,
.audience-card p,
.story-card p,
.contact-card p,
.timeline-card p {
  margin-bottom: 0;
}

.card-link {
  margin-top: 18px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--dark-pink);
  background: rgba(245, 106, 163, 0.1);
  border: 1px solid rgba(245, 106, 163, 0.17);
}

.ribbon {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--dark-orange));
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-story {
  position: relative;
  padding: clamp(3.2rem, 7vw, 6rem) 0;
  isolation: isolate;
}

.home-story::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  border-radius: 46px;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 106, 163, 0.18), transparent 18rem),
    radial-gradient(circle at 90% 12%, rgba(245, 163, 58, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(255, 238, 247, 0.9));
}

.home-story-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.home-story-copy {
  min-width: 0;
}

.home-story-copy h2 {
  margin-bottom: 18px;
  max-width: 620px;
}

.home-story-copy p {
  max-width: 640px;
}

.home-story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.home-story-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--dark-pink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(232, 63, 135, 0.08);
  font-size: 0.95rem;
  font-weight: 900;
}

.home-story-visual {
  position: relative;
  min-height: 520px;
}

.home-story-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 30px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 70px rgba(120, 53, 78, 0.16);
}

.home-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  color: #533240;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 14px 34px rgba(83, 50, 64, 0.12);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.home-story-photo-main {
  inset: 0 18% 16% 0;
  transform: none;
}

.home-story-photo-overlap {
  inset: 38% 0 0 46%;
  transform: none;
}

.new-products {
  position: relative;
  margin-top: -12px;
  isolation: isolate;
}

.new-products::before {
  content: "";
  position: absolute;
  inset: -2.4rem -24px -2.8rem;
  z-index: -1;
  border-radius: 46px;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(245, 106, 163, 0.18), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(245, 163, 58, 0.1), transparent 16rem),
    linear-gradient(180deg, rgba(255, 229, 243, 0.72), rgba(255, 244, 249, 0.86));
}

.new-products-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: stretch;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 42px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.78), transparent 16rem),
    linear-gradient(135deg, var(--main-pink), var(--dark-pink) 52%, var(--orange));
  box-shadow: var(--shadow-glow);
  color: white;
}

.new-products-panel .eyebrow,
.new-products-panel h2,
.new-products-panel p {
  color: white;
}

.inquiry-panel {
  display: block;
  max-width: 780px;
  margin-inline: auto;
}

.inquiry-panel p {
  margin-top: 12px;
}

.inquiry-list {
  color: white;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.inquiry-list li::marker {
  color: white;
}

.placeholder-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.placeholder-mini {
  min-height: 180px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.placeholder-mini span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--dark-pink);
  background: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-panel {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.split-panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
}

.split-panel:nth-child(1) {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.82);
}

.split-panel:nth-child(2) {
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 106, 163, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.82);
}

.split-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 22px;
}

.split-panel .btn {
  margin-top: 26px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-card {
  min-height: 150px;
  padding: 22px;
}

.audience-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

.party-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  border-radius: 50px;
  color: white;
  background:
    radial-gradient(circle at 8% 100%, rgba(255, 255, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--dark-pink), var(--main-pink) 52%, var(--orange));
  box-shadow: var(--shadow-glow);
}

.party-panel .eyebrow,
.party-panel h2,
.party-panel p {
  color: white;
}

.party-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 38px solid rgba(255, 255, 255, 0.2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.process-step strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--dark-pink);
  background: white;
}

.page-hero,
.product-hero,
.station-hero-wrap,
.contact-hero,
.story-hero {
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.page-title {
  margin-bottom: 22px;
}

.product-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
}

.product-hero .page-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.product-hero .page-title {
  width: min-content;
  max-width: 100%;
  font-size: clamp(4.5rem, 6.4vw, 6.45rem);
}

.page-visual {
  position: relative;
  min-width: 0;
}

.page-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62vh, 620px);
  object-fit: contain;
  object-position: center;
  border-radius: 46px;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at center, white, #fff2f8);
  padding: clamp(12px, 2vw, 24px);
}

.page-visual.contain img {
  object-fit: contain;
  padding: 30px;
  background: radial-gradient(circle at center, white, #fff2f8);
}

.copy-showcase {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(0, 0.92fr));
  gap: 16px;
  align-items: stretch;
}

.copy-showcase-intro,
.copy-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(120, 53, 78, 0.08);
}

.copy-showcase-intro {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.17), transparent 18rem),
    linear-gradient(145deg, white, #fff3f8);
}

.copy-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
}

.copy-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 24px;
}

.copy-card h3 {
  margin-bottom: 0;
  color: var(--dark-pink);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.copy-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-list-expanded {
  grid-template-columns: repeat(4, 1fr);
}

.product-tile {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(120, 53, 78, 0.08);
}

.product-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream);
}

.product-tile.text-only {
  display: grid;
  align-content: end;
  min-height: 260px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.17), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(245, 106, 163, 0.12), transparent 14rem),
    linear-gradient(145deg, #fff, #fff6fb);
}

.product-tile.text-only::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, white 0 18%, transparent 19%),
    linear-gradient(135deg, var(--main-pink), var(--orange));
  opacity: 0.8;
}

.product-tile-content {
  padding: 18px 18px 22px;
}

.product-tile h3 {
  margin-bottom: 8px;
  color: var(--dark-pink);
  font-size: 1.7rem;
}

.product-tile p {
  font-size: 0.96rem;
}

.note-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-list li {
  position: relative;
  padding-left: 28px;
  color: #51464b;
  font-weight: 750;
  line-height: 1.55;
}

.note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-pink), var(--orange));
}

.info-panel {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: clamp(1.5rem, 4vw, 2.4rem);
}

.size-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 18px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(232, 63, 135, 0.13);
  box-shadow: 0 14px 34px rgba(120, 53, 78, 0.07);
}

.size-card::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -18px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 106, 163, 0.18), rgba(245, 163, 58, 0.18));
}

.size-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  font-weight: 900;
}

.size-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--dark-pink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.size-card p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.station-feature {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: 42px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.station-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
}

.station-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.station-cards-expanded {
  grid-template-columns: repeat(3, 1fr);
}

.station-card {
  min-height: 320px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(120, 53, 78, 0.08);
}

.station-card.text-only {
  display: grid;
  align-content: center;
  min-height: 320px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.18), transparent 14rem),
    linear-gradient(145deg, white, #fff4f9);
}

.station-card.text-only::before {
  content: "";
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, white 0 18%, transparent 19%),
    linear-gradient(135deg, var(--main-pink), var(--orange));
}

.station-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 16px;
}

.station-card h3 {
  color: var(--dark-pink);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.02;
  margin-bottom: 8px;
}

.station-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.station-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.station-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(120, 53, 78, 0.08);
}

.station-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.station-gallery figcaption {
  padding: 13px 15px 15px;
  color: var(--dark-pink);
  font-weight: 900;
  line-height: 1.2;
}

.story-card,
.timeline-card,
.contact-card {
  padding: clamp(1.7rem, 4vw, 2.5rem);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--main-pink), var(--orange));
}

.contact-card a {
  color: var(--dark-pink);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--dark-pink);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(232, 63, 135, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--main-pink);
  box-shadow: 0 0 0 4px rgba(245, 106, 163, 0.13);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-link {
  min-height: 88px;
  padding: 16px;
  color: var(--dark-pink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(120, 53, 78, 0.08);
}

.review-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.review-content {
  min-width: 0;
}

.review-content h2 {
  max-width: 620px;
  margin-bottom: 14px;
}

.review-content p {
  max-width: 640px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.review-carousel {
  min-width: 0;
}

.review-carousel-window {
  overflow: hidden;
  border-radius: 30px;
}

.review-carousel-track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.google-review-panel {
  display: grid;
  gap: 12px;
  flex: 0 0 calc((100% - 16px) / 2);
  min-height: 260px;
  padding: clamp(1.4rem, 4vw, 2rem);
  border-radius: 30px;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.18), transparent 14rem),
    linear-gradient(145deg, white, #fff5fa);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(120, 53, 78, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.google-review-panel:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 106, 163, 0.34);
  box-shadow: var(--shadow-soft);
}

.google-review-stars {
  color: var(--orange);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.google-review-panel strong {
  color: var(--dark-pink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.google-review-panel p {
  margin: 0;
  color: var(--secondary);
}

.google-review-author {
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.google-review-author strong {
  color: var(--dark-pink);
  font-size: 1.08rem;
  line-height: 1.1;
}

.google-review-author span {
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 800;
}

.review-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.review-carousel-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  box-shadow: 0 18px 38px rgba(245, 106, 163, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.review-carousel-btn:hover {
  transform: translateY(-2px);
}

.review-carousel-btn.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

.review-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(232, 63, 135, 0.26);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.review-carousel-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--main-pink), var(--orange));
}

.site-footer {
  padding: 0 0 34px;
}

.footer-card {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(120, 53, 78, 0.08);
}

.footer-logo {
  width: min(240px, 72vw);
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--dark-pink);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes candySpin {
  to { transform: rotate(360deg); }
}

@keyframes sweetTitleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@keyframes sweetTitleGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes sprinkleFloat {
  from { margin-top: -8px; }
  to { margin-top: 8px; }
}

@keyframes wheel {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

@keyframes lift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes clientMarquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 20px;
    border-radius: 30px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transform: translateY(-14px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .story-grid,
  .contact-grid,
  .station-hero,
  .product-hero,
  .page-hero-grid,
  .station-feature {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .card-grid.four,
  .product-list,
  .audience-grid,
  .station-cards,
  .station-gallery,
  .size-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-products-panel,
  .copy-showcase,
  .home-story-panel,
  .two-column,
  .timeline,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .home-story-visual {
    min-height: 460px;
  }

  .copy-showcase-intro {
    grid-column: 1 / -1;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 10px 10px auto;
    padding: 10px 11px 10px 14px;
  }

  .brand img {
    width: 164px;
  }

  .page-main {
    padding-top: 106px;
  }

  .section-shell,
  .footer-card {
    width: min(100% - 28px, var(--max));
  }

  .candy-scroll {
    height: 350svh;
  }

  .transition-intro {
    top: 92px;
  }

  .transition-intro p {
    display: none;
  }

  .stage-content {
    min-height: 82svh;
    padding-top: 4.8rem;
    padding-bottom: clamp(5.5rem, 16vh, 7rem);
  }

  .product-stack {
    width: 92vw;
    height: 46svh;
  }

  .product[data-item="0"] {
    width: 76vw;
  }

  .product[data-item="1"] {
    width: 80vw;
  }

  .product[data-item="2"] {
    width: 91vw;
  }

  .title-stack {
    height: clamp(3rem, 15vw, 4.3rem);
    margin-top: -1.45rem;
    margin-bottom: clamp(2.25rem, 6vh, 3.5rem);
  }

  .product-title {
    font-size: clamp(1.75rem, 10vw, 3.4rem);
    letter-spacing: 0.028em;
  }

  .halo-wrap {
    width: 96vw;
    height: 96vw;
  }

  .scroll-hint {
    bottom: 0.76rem;
    transform: translateX(-50%) scale(0.86);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  p {
    font-size: 1rem;
  }

  .overview-hero {
    padding-top: 3rem;
    padding-bottom: 1.3rem;
    overflow: visible;
  }

  .overview-hero::before {
    inset: 0 -14px -7rem;
    width: auto;
    height: auto;
    border-radius: 34px;
    background:
      radial-gradient(circle at 18% 58%, rgba(245, 106, 163, 0.24), transparent 18rem),
      radial-gradient(circle at 82% 74%, rgba(245, 163, 58, 0.14), transparent 14rem),
      linear-gradient(180deg, rgba(255, 246, 251, 0), rgba(255, 228, 242, 0.78) 58%, rgba(255, 244, 249, 0.86));
  }

  .home-story {
    padding: 3rem 0 4.6rem;
  }

  .home-story::before {
    inset: 0 -14px;
    border-radius: 34px;
  }

  .home-story-panel {
    gap: 1.6rem;
  }

  .home-story-copy h2 {
    margin-bottom: 16px;
  }

  .home-story-copy p {
    margin: 18px 0 0;
  }

  .home-story-points {
    margin: 20px 0 24px;
  }

  .home-story-points span {
    width: auto;
  }

  .home-story-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .home-story-photo,
  .home-story-photo-main,
  .home-story-photo-overlap {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .home-story-photo {
    border-radius: 26px;
  }

  .home-story-photo img {
    height: 260px;
  }

  .home-story-photo-overlap img {
    height: 320px;
  }

  .new-products::before {
    inset: -2.4rem -14px -2rem;
    border-radius: 34px;
    background:
      radial-gradient(circle at 16% 8%, rgba(245, 106, 163, 0.28), transparent 18rem),
      radial-gradient(circle at 86% 18%, rgba(245, 163, 58, 0.12), transparent 14rem),
      linear-gradient(180deg, rgba(255, 232, 244, 0.86), rgba(255, 244, 249, 0.92));
  }

  .hero-actions,
  .social-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 18px;
  }

  .hero-food,
  .page-visual img {
    border-radius: 26px;
  }

  .float-card {
    display: none;
  }

  .card-grid,
  .card-grid.four,
  .product-list,
  .audience-grid,
  .process-grid,
  .station-cards,
  .station-gallery,
  .size-grid,
  .placeholder-mini-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-actions {
    flex-direction: column;
  }

  .google-review-panel {
    flex-basis: 100%;
  }

  .product-card {
    min-height: auto;
  }

  .product-card .product-image {
    min-height: 180px;
  }

  .product-card.featured .product-image img {
    height: 210px;
  }

  .new-products-panel,
  .home-story::before,
  .party-panel,
  .info-panel,
  .quote-card,
  .feature-band {
    border-radius: 30px;
  }

  .split-panel img,
  .station-feature img {
    height: 260px;
  }

  .product-tile img {
    height: 220px;
  }

  .client-carousel {
    padding: 14px 0;
    border-radius: 28px;
  }

  .client-logo {
    flex-basis: 178px;
    height: 92px;
    padding: 18px;
  }

  .copy-card img,
  .station-gallery img {
    height: 220px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Polished content and interaction pass */
.overview-hero {
  overflow: visible;
}

.overview-hero::before {
  left: 50%;
  top: 3%;
  width: 100vw;
  height: min(560px, 54vw);
  transform: translateX(-50%);
  border-radius: 0;
  background:
    radial-gradient(circle at 24% 34%, rgba(245, 106, 163, 0.18), transparent 30rem),
    radial-gradient(circle at 76% 42%, rgba(245, 163, 58, 0.14), transparent 26rem),
    linear-gradient(90deg, rgba(255, 239, 247, 0), rgba(255, 239, 247, 0.72) 24%, rgba(255, 248, 241, 0.58) 76%, rgba(255, 239, 247, 0));
}

.client-heading {
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.client-heading .eyebrow {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.18em;
}

.centered-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 860px;
  margin-bottom: 18px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  grid-column: auto;
  margin-bottom: 0;
}

.centered-heading h2,
.centered-heading p {
  max-width: 820px;
}

.customer-heading-copy {
  justify-items: center;
}

.audience-grid {
  margin-top: 0;
}

.customer-heading.centered-heading {
  margin-bottom: 12px;
}

.home-story::before,
.new-products::before,
.copy-showcase::before {
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
}

.new-products-panel,
.party-panel {
  width: auto;
  margin-left: 0;
  border-radius: 42px;
}

.product-card.featured .product-image img,
.split-panel img,
.station-card img,
.station-feature img,
.page-visual img {
  object-position: center;
}

.product-card.featured:nth-child(1) .product-image img {
  object-position: center 42%;
}

.product-card.featured:nth-child(2) .product-image img {
  object-fit: cover;
  object-position: center 62%;
}

body.prepacked-page {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body.prepacked-page.popcorn-game-expanded {
  overflow: hidden;
}

.product-card.featured:nth-child(3) .product-image img {
  object-position: center 35%;
}

.product-tile img,
.station-card img {
  object-fit: contain;
  padding: 10px;
  background: #fffafc;
}

.station-feature img {
  object-fit: contain;
  padding: 12px;
  background: #fffafc;
}

.copy-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.4rem);
  align-items: stretch;
  position: relative;
}

.copy-showcase::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: -1;
  border-radius: 46px;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 106, 163, 0.16), transparent 18rem),
    radial-gradient(circle at 86% 92%, rgba(245, 163, 58, 0.14), transparent 18rem);
}

.copy-showcase-intro {
  position: relative;
  display: grid;
  align-content: center;
  grid-column: 1 / -1;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: visible;
  border-radius: 42px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.75), transparent 13rem),
    linear-gradient(135deg, var(--dark-pink), var(--main-pink) 54%, var(--orange));
  color: white;
}

.copy-showcase-intro::before,
.copy-showcase-intro::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.copy-showcase-intro::before {
  right: -64px;
  top: -64px;
  width: 230px;
  height: 230px;
  border: 28px solid rgba(255, 255, 255, 0.18);
}

.copy-showcase-intro::after {
  left: clamp(1.2rem, 4vw, 2.4rem);
  bottom: clamp(1.2rem, 4vw, 2.4rem);
  width: 86px;
  height: 24px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.92) 0 12px, rgba(255,255,255,0) 12px 20px);
  transform: rotate(-8deg);
  opacity: 0.7;
}

.copy-showcase-intro .eyebrow,
.copy-showcase-intro h2,
.copy-showcase-intro p {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 100%;
}

.copy-showcase-intro h2 {
  overflow-wrap: break-word;
  line-height: 1.02;
}

.copy-card {
  grid-column: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.88);
}

.copy-card img {
  grid-row: auto;
  width: 100%;
  height: 220px;
  border-radius: 22px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #fff8fb;
}

.copy-card:nth-of-type(2) img {
  object-fit: contain;
  padding: 8px;
  background: #fff8fb;
}

.copy-card h3 {
  align-self: start;
  margin-top: 10px;
}

.copy-card p {
  align-self: start;
}

.size-story {
  position: relative;
  min-height: 0;
  scroll-margin-top: 112px;
}

.size-story.reveal,
.size-story.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.size-panel {
  position: relative;
  top: auto;
  overflow: visible;
  background:
    radial-gradient(circle at 14% 12%, rgba(245, 106, 163, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 16%, rgba(245, 163, 58, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.88);
}

.size-picker-intro {
  max-width: 42rem;
}

.size-picker-intro p {
  margin-bottom: 0;
}

.size-picker {
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.size-picker-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-tab {
  appearance: none;
  border: 1px solid rgba(232, 63, 135, 0.16);
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  color: var(--dark-pink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(120, 53, 78, 0.05);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.size-tab:hover {
  border-color: rgba(232, 63, 135, 0.28);
  transform: translateY(-1px);
}

.size-tab:focus-visible {
  outline: 3px solid rgba(245, 106, 163, 0.35);
  outline-offset: 3px;
}

.size-tab.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--main-pink), var(--orange));
  box-shadow: 0 14px 30px rgba(232, 63, 135, 0.22);
}

.size-picker-stage {
  position: relative;
  min-height: clamp(280px, 42vw, 360px);
}

.size-option {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 246, 251, 0.96), rgba(255, 248, 241, 0.94));
  border: 1px solid rgba(232, 63, 135, 0.12);
  box-shadow: 0 18px 48px rgba(120, 53, 78, 0.08);
  animation: sizeOptionIn 0.35s ease;
}

.size-option[hidden] {
  display: none;
}

.size-option-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(232, 63, 135, 0.08);
  aspect-ratio: 1;
}

.size-option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.size-option.is-active .size-option-media img {
  transform: scale(1.02);
}

.size-option-copy {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-width: 0;
}

.size-option-badge {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 4.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  font-weight: 900;
  font-size: 0.95rem;
}

.size-option-copy h3 {
  margin: 0;
  color: var(--dark-pink);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.05;
}

.size-option-dims {
  margin: 0;
  color: var(--secondary);
  font-size: 0.98rem;
}

.size-option-copy .note-list {
  margin: 0.35rem 0 0;
}

@keyframes sizeOptionIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .size-picker-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .size-tab {
    width: 100%;
    padding: 0.78rem 0.5rem;
    font-size: 0.92rem;
    text-align: center;
  }

  .size-option {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.95rem;
    border-radius: 26px;
  }

  .size-option-media {
    border-radius: 20px;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }
}

.station-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34%);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 2px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(232, 63, 135, 0.42) rgba(245, 106, 163, 0.08);
}

.station-gallery a {
  display: block;
  min-width: 0;
  color: inherit;
  scroll-snap-align: start;
}

.station-gallery figure {
  position: relative;
  min-height: 100%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(145deg, #fff, #fff4f9);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.station-gallery a:hover figure {
  transform: translateY(-6px);
  border-color: rgba(245, 106, 163, 0.32);
  box-shadow: var(--shadow-soft);
}

.station-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 14px;
  background: #fffafc;
}

.station-gallery figcaption {
  border-top: 1px solid rgba(232, 63, 135, 0.1);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 14px;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(44, 28, 36, 0.78);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal img {
  max-width: min(100%, 1080px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 28px;
  background: white;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gallery-modal p {
  margin: 0;
  color: white;
  font-weight: 900;
}

.gallery-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--dark-pink);
  background: white;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(1.4rem, 4vw, 2rem);
}

.party-panel .btn-secondary.cta-email {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .product-card,
.reveal.is-visible .service-card,
.reveal.is-visible .audience-card,
.reveal.is-visible .station-card,
.reveal.is-visible .copy-card,
.reveal.is-visible .process-step {
  animation: cardReveal 0.46s ease both;
}

.reveal.is-visible .product-card:nth-child(2),
.reveal.is-visible .service-card:nth-child(2),
.reveal.is-visible .station-card:nth-child(2),
.reveal.is-visible .copy-card:nth-child(3),
.reveal.is-visible .process-step:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible .product-card:nth-child(3),
.reveal.is-visible .station-card:nth-child(3),
.reveal.is-visible .copy-card:nth-child(4),
.reveal.is-visible .process-step:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .copy-showcase {
    grid-template-columns: 1fr;
  }

  .size-story {
    min-height: 0;
  }

  .size-panel {
    position: relative;
    top: auto;
  }

  .copy-card {
    grid-column: auto;
  }

  .station-gallery {
    grid-auto-columns: minmax(260px, 58%);
  }
}

@media (max-width: 720px) {
  .overview-hero::before {
    top: 0;
    height: 100%;
    background:
      radial-gradient(circle at 22% 18%, rgba(245, 106, 163, 0.22), transparent 18rem),
      radial-gradient(circle at 80% 72%, rgba(245, 163, 58, 0.14), transparent 16rem),
      linear-gradient(180deg, rgba(255, 246, 251, 0), rgba(255, 228, 242, 0.78) 58%, rgba(255, 244, 249, 0.86));
  }

  .copy-showcase-intro {
    padding: 1.8rem;
  }

  .copy-card {
    grid-template-columns: 1fr;
  }

  .copy-card img {
    grid-row: auto;
    width: 100%;
    height: 210px;
  }

  .station-gallery {
    grid-auto-columns: minmax(242px, 86%);
  }

  .gallery-modal img {
    max-height: 72vh;
    border-radius: 20px;
  }

  .cta-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track,
  .reveal.is-visible .product-card,
  .reveal.is-visible .service-card,
  .reveal.is-visible .audience-card,
  .reveal.is-visible .station-card,
  .reveal.is-visible .copy-card,
  .reveal.is-visible .process-step {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .size-option,
  .size-tab,
  .gallery-modal,
  .station-gallery figure {
    transition: none !important;
  }

  .size-option {
    animation: none !important;
  }
}

body.story-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 106, 163, 0.2), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(245, 163, 58, 0.16), transparent 26rem),
    linear-gradient(180deg, #fffdf9 0%, #fff7fb 45%, #fff8f1 100%);
}

/* general spacing */
.story-wrap {
  position: relative;
  overflow: hidden;
}

.story-wrap::before {
  content: "";
  position: fixed;
  left: -12rem;
  top: 18vh;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: rgba(245, 106, 163, 0.24);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.story-wrap::after {
  content: "";
  position: fixed;
  right: -12rem;
  bottom: 8vh;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: rgba(245, 163, 58, 0.22);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.story-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}

.story-kicker,
.story-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-kicker {
  width: fit-content;
  margin-inline: auto;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(245, 106, 163, 0.12);
  border: 1px solid rgba(245, 106, 163, 0.18);
}

.story-title {
  max-width: 900px;
  margin: 0 auto;
  color: var(--pink-deep);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.story-title span {
  display: block;
  color: var(--orange-deep);
}

.story-lede {
  max-width: 780px;
  margin: clamp(1.3rem, 3vw, 2rem) auto 0;
  color: #5d4c54;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 700;
}

.story-lede strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
}

/* section headers */
.story-section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.story-section-header {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.story-section-header h2,
.story-proof-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.story-section-header p,
.story-proof-card p,
.story-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  font-weight: 700;
}

.story-copy {
  max-width: 920px;
}

.story-copy p {
  margin: 0 0 1.2rem;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

/* cards */
.story-card,
.story-feature-card,
.story-note,
.essay-panel,
.story-proof-card {
  border-radius: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(203, 91, 135, 0.14);
  overflow: hidden;
}

/* IMPORTANT: portrait image handling */
.story-card,
.story-feature-card {
  display: flex;
  flex-direction: column;
}

.story-card img,
.story-feature-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #fff8f1;
}

/* use this only if you manually add class="landscape" to a figure later */
.story-card.landscape img,
.story-feature-card.landscape img {
  aspect-ratio: 16 / 9;
}

/* captions BELOW image, not overlay */
.story-card figcaption,
.story-feature-card figcaption {
  position: static;
  padding: 1rem 1.1rem 1.15rem;
  color: #533240;
  background: rgba(255, 253, 249, 0.94);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

/* layout grids */
.story-hero-media {
  margin-top: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.story-hero-stack {
  display: grid;
  gap: 1rem;
}

.mini-story-grid,
.split-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.story-image-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.story-image-row.three {
  grid-template-columns: repeat(3, 1fr);
}

.story-image-row.five {
  grid-template-columns: repeat(5, 1fr);
}

.caption-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.roots-layout,
.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.roots-sticky {
  position: sticky;
  top: 7rem;
}

.roots-media {
  display: grid;
  gap: 1rem;
}

.behind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: start;
}

/* text panels */
.story-note {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  color: #6d4b57;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 163, 58, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.45;
  font-weight: 800;
  white-space: pre-line;
}

.essay-panel,
.story-proof-card {
  padding: clamp(1.8rem, 5vw, 3.8rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 106, 163, 0.14), transparent 20rem),
    radial-gradient(circle at 0% 100%, rgba(245, 163, 58, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.86);
}

/* quote section */
.quote-ribbon {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, var(--pink-deep), var(--pink) 52%, var(--orange));
  box-shadow: 0 38px 100px rgba(203, 91, 135, 0.28);
  text-align: center;
}

.quote-ribbon p {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.035em;
}

/* proof list */
.proof-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  color: #533240;
  background: rgba(245, 106, 163, 0.1);
  border: 1px solid rgba(245, 106, 163, 0.18);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.story-final {
  color: var(--pink-deep);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
}

/* reveal animation */
.story-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.story-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* tablet */
@media (max-width: 980px) {
  .story-hero-media,
  .story-section-header,
  .roots-layout,
  .proof-layout,
  .behind-grid {
    grid-template-columns: 1fr;
  }

  .roots-sticky {
    position: static;
  }

  .story-image-row,
  .story-image-row.three,
  .story-image-row.five,
  .caption-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 640px) {
  .story-title {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .mini-story-grid,
  .split-gallery,
  .story-image-row,
  .story-image-row.three,
  .story-image-row.five,
  .caption-grid {
    grid-template-columns: 1fr;
  }

  .story-card img,
  .story-feature-card img {
    aspect-ratio: 3 / 4;
  }

  .story-card figcaption,
  .story-feature-card figcaption {
    font-size: 0.92rem;
  }

  .story-section {
    padding: 3rem 0;
  }
}
/* FIX STORY PAGE NOT APPEARING */
body.story-page .story-reveal {
  opacity: 1;
  transform: none;
}

/* Fix variable names because main CSS uses dark-pink, not pink-deep */
body.story-page {
  --pink: var(--main-pink);
  --pink-deep: var(--dark-pink);
  --orange-deep: var(--dark-orange);
  --ink: var(--text);
  --muted: var(--secondary);
}

/* Fix overview hero spacing so it matches the rest of the page */
.overview-hero {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.overview-hero .hero-grid {
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}

.overview-hero .hero-copy h1 {
  margin: 0;
  line-height: 0.95;
}

.overview-hero .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
}

.overview-hero .hero-actions {
  margin-top: 28px;
}

.overview-hero .hero-pills {
  margin-top: 22px;
}

.overview-hero .hero-visual {
  min-height: 520px;
}

@media (max-width: 720px) {
  .overview-hero {
    padding: clamp(2.8rem, 8vw, 4rem) 0 clamp(3rem, 8vw, 4.5rem);
  }

  .overview-hero .hero-copy > p:not(.eyebrow) {
    margin-top: 18px;
  }

  .overview-hero .hero-actions {
    margin-top: 24px;
  }

  .overview-hero .hero-pills {
    margin-top: 20px;
  }

  .overview-hero .hero-visual {
    min-height: auto;
    margin-top: 14px;
  }
}
/* ================================
   OUR STORY V2 POLISH
   Add this at the bottom of styles.css
================================ */

.story-v2-page {
  --story-ink: var(--text);
  --story-muted: var(--secondary);
  --story-pink: var(--main-pink);
  --story-pink-deep: var(--dark-pink);
  --story-orange: var(--orange);
  --story-orange-deep: var(--dark-orange);
}

.story-v2 {
  overflow: clip;
}

.story-v2 .story-hero {
  position: relative;
  padding-top: clamp(3rem, 7vw, 6rem);
}

.story-v2 .story-hero::before {
  content: "";
  position: absolute;
  inset: 1rem -4vw auto auto;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 106, 163, 0.22), transparent 68%);
  filter: blur(4px);
  z-index: -1;
}

.story-v2-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}

.story-v2-hero-copy {
  min-width: 0;
}

.story-v2 .story-title {
  color: var(--story-pink-deep);
}

.story-v2 .story-title span {
  color: var(--story-orange-deep);
}

.story-v2-feature-image {
  position: relative;
  transform: none;
}

.story-v2-feature-image::before {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 8%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245, 106, 163, 0.22), rgba(245, 163, 58, 0.18));
  z-index: -1;
}

.story-v2-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(1.6rem, 4vw, 3rem);
}

.story-v2 .story-note {
  display: grid;
  gap: 8px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.story-v2 .story-note strong {
  color: var(--story-pink-deep);
  font-size: 1.15rem;
  line-height: 1.1;
}

.story-v2 .story-note span {
  display: block;
  color: #6d4b57;
  font-weight: 750;
  line-height: 1.55;
}

.story-v2-mini-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.story-v2 .story-card,
.story-v2 .story-feature-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 63, 135, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(203, 91, 135, 0.14);
}

.story-v2 .story-card img,
.story-v2 .story-feature-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.story-v2 .story-card.landscape img,
.story-v2 .story-feature-card.landscape img {
  aspect-ratio: 16 / 10;
}

.story-v2 .story-card figcaption,
.story-v2 .story-feature-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: #533240;
  background: rgba(255, 253, 249, 0.96);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.35;
}

.story-v2-feature-panel {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.3rem);
  width: 100%;
  min-width: 0;
}

.story-v2-feature-panel > *,
.story-copy,
.story-section-header > * {
  min-width: 0;
}

.story-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: clamp(1.4rem, 4vw, 2.4rem);
  padding: clamp(0.8rem, 2vw, 1.2rem);
  border-radius: clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 106, 163, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 100%, rgba(245, 163, 58, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(232, 63, 135, 0.14);
  box-shadow: var(--shadow-soft);
}

.story-carousel-window {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: clamp(1.3rem, 3vw, 2.2rem);
}

.story-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.story-carousel .story-card {
  flex: 0 0 calc((100% - 32px) / 3);
  margin: 0;
  transform: none;
}

.story-carousel-compact .story-card {
  flex-basis: calc((100% - 16px) / 2);
}

.story-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--story-pink), var(--story-pink-deep));
  box-shadow: 0 18px 38px rgba(245, 106, 163, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.story-carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.story-carousel-prev {
  left: -12px;
}

.story-carousel-next {
  right: -12px;
}

.story-carousel-btn.is-disabled {
  opacity: 0.36;
  pointer-events: none;
}

.story-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.story-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(232, 63, 135, 0.26);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.story-carousel-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--story-pink), var(--story-orange));
}

.story-sticky-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.story-sticky-copy {
  position: sticky;
  top: 128px;
}

.story-sticky-copy h2 {
  color: var(--story-ink);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.88;
}

.story-stack {
  display: grid;
  gap: clamp(1.3rem, 4vw, 2rem);
}

.story-stack-card {
  position: sticky;
  top: 118px;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  transform-origin: top center;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.story-stack-card:nth-child(2) {
  top: 138px;
}

.story-stack-card:nth-child(3) {
  top: 158px;
}

.story-stack-card.is-current {
  transform: scale(1.015);
  box-shadow: var(--shadow-glow);
}

.story-stack-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--story-pink), var(--story-orange));
  font-weight: 900;
}

.story-v2 .split-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.story-v2-editorial-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.story-v2-editorial-grid .story-card:first-child img {
  height: 100%;
  min-height: 420px;
}

.story-v2-centred-copy {
  margin-top: 1.6rem;
  text-align: center;
}

.story-v2-proof-layout {
  align-items: stretch;
}

.story-v2 .story-proof-card {
  position: sticky;
  top: 128px;
  align-self: start;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 106, 163, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 100%, rgba(245, 163, 58, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.88);
}

.story-v2 .proof-list {
  display: grid;
  gap: 12px;
  margin: clamp(1.2rem, 3vw, 1.8rem) 0;
  padding: 0;
  list-style: none;
}

.story-v2 .proof-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 22px;
  color: #51464b;
  background: rgba(255, 248, 241, 0.88);
  border: 1px solid rgba(232, 63, 135, 0.12);
  font-weight: 850;
  line-height: 1.45;
}

.story-v2 .proof-list li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.18rem;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--story-pink), var(--story-orange));
}

.story-v2 .quote-ribbon {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}

.story-final {
  color: var(--story-pink-deep);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .story-v2-hero-grid,
  .story-sticky-layout,
  .story-v2-editorial-grid,
  .story-v2-proof-layout {
    grid-template-columns: 1fr;
  }

  .story-sticky-copy,
  .story-v2 .story-proof-card {
    position: relative;
    top: auto;
  }

  .story-carousel .story-card,
  .story-carousel-compact .story-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 720px) {
  .story-v2 .story-hero {
    padding-top: 2.4rem;
  }

  .story-v2-note-grid,
  .story-v2-mini-showcase,
  .story-v2 .split-gallery {
    grid-template-columns: 1fr;
  }

  .story-carousel {
    padding: 0.7rem;
  }

  .story-carousel .story-card,
  .story-carousel-compact .story-card {
    flex-basis: 100%;
  }

  .story-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .story-carousel-prev {
    left: 4px;
  }

  .story-carousel-next {
    right: 4px;
  }

  .story-stack-card,
  .story-stack-card:nth-child(2),
  .story-stack-card:nth-child(3) {
    position: relative;
    top: auto;
  }

  .story-v2-editorial-grid .story-card:first-child img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-carousel-track,
  .story-stack-card {
    transition: none !important;
  }
}

/* ================================
   OUR STORY V2 FIXES
   Fix sticky card overlap + landscape image empty space
================================ */

/* Keep the left title sticky, but stop the right cards from sticky-overlapping too early */
.story-stack {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.story-stack-card,
.story-stack-card:nth-child(2),
.story-stack-card:nth-child(3) {
  position: relative;
  top: auto;
  transform: none;
}

.story-stack-card.is-current {
  transform: none;
  box-shadow: var(--shadow-soft);
}

/* Make each roots card feel like a proper chapter */
.story-stack-card {
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.story-stack-card + .story-stack-card {
  margin-top: clamp(0.4rem, 2vw, 1.2rem);
}

/* Keep the sticky section title, but make it less aggressive */
.story-sticky-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

/* Prevent carousel slides from stretching to match taller portrait slides */
.story-carousel-track {
  align-items: flex-start;
}

.story-carousel .story-card,
.story-carousel-compact .story-card {
  align-self: flex-start;
  height: auto;
  min-height: 0;
}

/* Give carousel images a consistent visual height so landscape images don't leave giant blank areas */
.story-carousel .story-card img {
  height: clamp(260px, 32vw, 390px);
  aspect-ratio: auto;
  object-fit: cover;
}

.story-carousel-compact .story-card img {
  height: clamp(240px, 28vw, 340px);
  aspect-ratio: auto;
  object-fit: cover;
}

/* Landscape cards should feel cinematic, not like tiny thumbnails floating in a big white box */
.story-v2 .story-card.landscape {
  position: relative;
  background: white;
}

.story-v2 .story-card.landscape img,
.story-v2 .story-feature-card.landscape img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

/* If landscape has captions, make the caption feel integrated */
.story-v2 .story-card.landscape figcaption,
.story-v2 .story-feature-card.landscape figcaption {
  position: relative;
  z-index: 2;
  padding: 1rem 1.1rem 1.15rem;
  background: rgba(255, 253, 249, 0.96);
}

/* Split gallery landscape images should be shorter and cleaner */
.story-v2 .split-gallery .story-card.landscape img {
  height: clamp(220px, 24vw, 320px);
}

/* Editorial grid should not create massive empty visual imbalance */
.story-v2-editorial-grid {
  align-items: start;
}

.story-v2-editorial-grid .story-card:first-child img {
  min-height: 0;
  height: clamp(280px, 36vw, 460px);
}

/* Better mobile flow */
@media (max-width: 1080px) {
  .story-sticky-copy {
    position: relative;
    top: auto;
  }

  .story-carousel .story-card img,
  .story-carousel-compact .story-card img,
  .story-v2 .story-card.landscape img,
  .story-v2 .story-feature-card.landscape img {
    height: clamp(240px, 48vw, 380px);
  }
}

@media (max-width: 720px) {
  .story-carousel .story-card img,
  .story-carousel-compact .story-card img,
  .story-v2 .story-card.landscape img,
  .story-v2 .story-feature-card.landscape img {
    height: clamp(220px, 68vw, 340px);
  }

  .story-stack-card {
    padding: clamp(1.2rem, 5vw, 1.8rem);
  }
}

/* ================================
   Our Story hero + cotton candy growth visual
   Replace old story-growth CSS with this
================================ */

/* Force hero to become top-text, bottom-animation instead of left/right */
.story-v2 .story-hero {
  text-align: center;
}

.story-v2-hero-grid {
  display: block;
}

.story-v2-hero-copy,
.story-v2-hero-copy-centred {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.story-v2 .story-lede {
  margin-inline: auto;
}

.story-v2-hero-media,
.story-v2-hero-media-centred {
  max-width: 920px;
  margin: clamp(1.4rem, 4vw, 2.4rem) auto 0;
}

/* Main animation card */
.story-growth-visual {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-items: center;
  min-height: clamp(420px, 48vw, 620px);
  max-width: 920px;
  margin: clamp(1.6rem, 4vw, 2.8rem) auto clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1.3rem, 3vw, 1.9rem);
  overflow: hidden;
  border-radius: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), transparent 24%),
    radial-gradient(circle at 24% 24%, rgba(245, 106, 163, 0.2), transparent 20rem),
    radial-gradient(circle at 84% 76%, rgba(245, 163, 58, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(255, 246, 251, 0.95), rgba(255, 248, 241, 0.9));
  border: 1px solid rgba(232, 63, 135, 0.14);
  box-shadow: var(--shadow-soft);
}

/* Soft moving background */
.story-growth-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.7) 0 0.35rem, transparent 0.42rem),
    radial-gradient(circle at 72% 62%, rgba(255, 255, 255, 0.45) 0 0.28rem, transparent 0.34rem);
  background-size: 5rem 5rem, 6.5rem 6.5rem;
  opacity: 0.42;
  animation: storyGrowthBg 28s linear infinite;
}

/* Animation image */
.story-growth-gif {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92%, 520px);
  max-height: clamp(320px, 40vw, 500px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 26px 34px rgba(232, 63, 135, 0.16))
    drop-shadow(0 0 26px rgba(245, 106, 163, 0.12));
}

/* Timeline now sits below the animation instead of overlapping it */
.story-growth-caption {
  position: relative;
  z-index: 3;
  left: auto;
  bottom: auto;
  transform: none;
  display: grid;
  grid-template-columns: auto minmax(110px, 210px) auto;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: clamp(0.9rem, 2vw, 1.3rem) auto 0;
  color: var(--dark-pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-growth-caption i {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 106, 163, 0.16);
}

.story-growth-caption i::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--main-pink), var(--orange));
  transform-origin: left;
  animation: storyGrowthProgress 2.4s ease-in-out infinite;
}

/* Slower background movement */
@keyframes storyGrowthBg {
  to {
    transform: rotate(360deg);
  }
}

/* Slower timeline fill */
@keyframes storyGrowthProgress {
  0% {
    transform: scaleX(0);
  }

  65%, 100% {
    transform: scaleX(1);
  }
}

@media (max-width: 720px) {
  .story-growth-visual {
    min-height: 380px;
    padding: 1rem 1rem 1.2rem;
  }

  .story-growth-gif {
    width: min(100%, 390px);
    max-height: 330px;
  }

  .story-growth-caption {
    grid-template-columns: auto minmax(80px, 130px) auto;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-growth-visual::before,
  .story-growth-caption i::before {
    animation: none !important;
  }

  .story-growth-caption i::before {
    transform: scaleX(1);
  }
}

/* Final wide-screen background and panel fixes */
body:not(.story-page) main {
  overflow: visible;
}

body:not(.story-page) .overview-hero,
body:not(.story-page) .home-story,
body:not(.story-page) .new-products,
body:not(.story-page) .copy-showcase {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

body:not(.story-page) .overview-hero::before {
  content: "";
  position: absolute;
  left: calc(50% - 50vw) !important;
  right: auto !important;
  top: 0 !important;
  bottom: 0 !important;
  z-index: -1;
  width: 100vw !important;
  height: auto !important;
  transform: none !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 106, 163, 0.18), transparent 30rem),
    radial-gradient(circle at 84% 22%, rgba(245, 163, 58, 0.16), transparent 30rem),
    linear-gradient(90deg, rgba(255, 239, 247, 0.92), rgba(255, 250, 244, 0.92));
}

body:not(.story-page) .home-story::before,
body:not(.story-page) .new-products::before,
body:not(.story-page) .copy-showcase::before {
  left: calc(50% - 50vw) !important;
  right: auto !important;
  width: 100vw !important;
  transform: none !important;
}

body:not(.story-page) .new-products-panel,
body:not(.story-page) .party-panel {
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 42px !important;
}

@media (max-width: 720px) {
  .home-main {
    padding-top: 108px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  body:not(.story-page) .new-products-panel,
  body:not(.story-page) .party-panel {
    border-radius: 30px !important;
  }
}

/* Final spacing/sticky safeguards */
body:not(.story-page) .page-main {
  padding-top: 104px;
}

body:not(.story-page) .page-hero,
body:not(.story-page) .product-hero,
body:not(.story-page) .station-hero-wrap,
body:not(.story-page) .contact-hero {
  padding-top: clamp(0.75rem, 2vw, 1.6rem);
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
}

body:not(.story-page) .overview-hero {
  padding-top: clamp(1rem, 2.6vw, 2.1rem) !important;
  padding-bottom: clamp(2rem, 4.2vw, 3.6rem) !important;
}

body:not(.story-page) .section-block {
  padding-top: clamp(2rem, 4.2vw, 3.7rem);
  padding-bottom: clamp(2rem, 4.2vw, 3.7rem);
}

body:not(.story-page) .home-story {
  padding-top: clamp(2rem, 4.2vw, 3.7rem);
  padding-bottom: clamp(2rem, 4.2vw, 3.7rem);
}

body:not(.story-page) .new-products {
  padding-top: clamp(2rem, 4vw, 3.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
}

body:not(.story-page) .size-story {
  padding-bottom: clamp(1rem, 2.4vw, 2.2rem);
  min-height: 0;
}

@media (min-width: 1500px) {
  body:not(.story-page) .page-main {
    padding-top: 98px;
  }

  body:not(.story-page) .page-hero,
  body:not(.story-page) .product-hero,
  body:not(.story-page) .station-hero-wrap,
  body:not(.story-page) .contact-hero {
    padding-top: 1rem;
  }
}

@media (max-width: 720px) {
  body:not(.story-page) .page-main {
    padding-top: 92px;
  }

  body:not(.story-page) .page-hero,
  body:not(.story-page) .product-hero,
  body:not(.story-page) .station-hero-wrap,
  body:not(.story-page) .contact-hero,
  body:not(.story-page) .overview-hero {
    padding-top: 1rem !important;
  }
}

/* Mobile robustness pass: viewport-safe backgrounds, reveal fallback and fixed-width section cleanup. */
body:not(.story-page) .overview-hero::before,
body:not(.story-page) .home-story::before,
body:not(.story-page) .new-products::before,
body:not(.story-page) .copy-showcase::before {
  left: 50% !important;
  right: auto !important;
  width: 100dvw !important;
  max-width: 100dvw !important;
  transform: translateX(-50%) !important;
}

.home-main .overview-hero::before {
  display: none !important;
}

.home-main .overview-hero .hero-grid {
  grid-template-columns: 1fr !important;
}

.home-main .overview-hero .hero-copy {
  justify-items: start;
  text-align: left;
}

.home-main .overview-hero .hero-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: none;
}

.home-main .overview-hero .hero-actions,
.home-main .overview-hero .hero-feature-list {
  align-self: start;
}

.sweet-title,
.home-main .overview-hero h1 {
  animation: none !important;
  text-shadow: none !important;
}

.sweet-title::after,
.home-main .overview-hero h1::after {
  display: none !important;
}

.home-main .overview-hero {
  margin-top: 0;
  padding-top: clamp(10rem, 14vw, 12rem) !important;
}

.station-cards-expanded .station-card img {
  height: clamp(220px, 24vw, 310px);
}

.station-cards-expanded .station-card.text-only {
  min-height: clamp(260px, 26vw, 330px);
}

@media (min-width: 721px) {
  .prepacked-page .product-list-expanded .product-tile:nth-child(1),
  .prepacked-page .product-list-expanded .product-tile:nth-child(2) {
    grid-column: span 2;
  }
}

.prepacked-page .inquiry-panel {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.prepacked-page .new-products::before {
  display: none !important;
}

.prepacked-page .inquiry-panel h2 {
  color: var(--dark-pink);
}

.prepacked-page .inquiry-panel p,
.prepacked-page .inquiry-list {
  color: var(--secondary);
}

.prepacked-page .inquiry-list li::marker {
  color: var(--dark-pink);
}

.live-title span {
  display: inline !important;
  color: var(--dark-orange);
}

@media (max-width: 720px) {
  .home-main .overview-hero {
    padding-top: 8.75rem !important;
  }

  .hero-intro-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-feature-list,
  .service-list,
  .inquiry-list,
  .variation-list,
  .note-list,
  .proof-list {
    padding-left: 1.7rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .station-cards-expanded {
    grid-template-columns: 1fr !important;
  }
}

/* Shared upgraded opening sections using the experimental visual language. */
body .home-main.page-main {
  padding-top: 0 !important;
}

body .home-product-hero.hero-variant {
  min-height: 100svh;
  padding-top: clamp(7.8rem, 10vw, 9.4rem) !important;
  padding-bottom: clamp(4rem, 7vw, 6.5rem) !important;
}

body .home-product-hero .hero-variant__shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
}

body .home-product-hero .page-copy {
  position: relative;
  z-index: 6;
}

body .home-product-hero .page-copy > .btn:first-child {
  width: fit-content;
  min-height: 42px;
  margin-bottom: 1.15rem;
  padding: 0.72rem 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

body .home-product-hero .hero-popcorn-stage {
  min-height: clamp(430px, 52vw, 650px);
}

body .home-product-hero .page-visual {
  width: min(90%, 620px);
  overflow: hidden;
  border-radius: 38px;
  box-shadow: 0 42px 88px rgba(117, 38, 74, 0.2);
}

body .home-product-hero .page-visual img {
  height: clamp(340px, 39vw, 520px);
  object-fit: cover;
}

.showcase-hero {
  position: relative;
  align-items: center;
  gap: clamp(2.25rem, 6vw, 5.5rem);
  overflow: hidden;
  padding-top: clamp(2rem, 4vw, 3.8rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.8rem);
}

.showcase-hero .page-copy {
  min-width: 0;
}

.showcase-hero .page-title {
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.86;
  text-wrap: balance;
}

.showcase-hero .page-title span {
  display: block;
  font-family: "Luckiest Guy", "Baloo 2", sans-serif;
  letter-spacing: 0.025em;
  text-shadow:
    0 6px 0 rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(232, 63, 135, 0.18);
}

.showcase-hero .page-copy > p {
  max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.showcase-bullet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 660px;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.showcase-bullet-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.74rem 0.85rem 0.74rem 2.35rem;
  border: 1px solid rgba(232, 63, 135, 0.13);
  border-radius: 17px;
  color: #6d5260;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 32px rgba(134, 47, 86, 0.08);
  line-height: 1.2;
}

.showcase-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-pink), var(--orange));
  box-shadow: 0 0 0 5px rgba(245, 106, 163, 0.11);
}

.showcase-effect-visual {
  min-width: 0;
  overflow: visible;
}

.showcase-effect-visual .candy-effect {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 42px;
  box-shadow: 0 42px 86px rgba(134, 47, 86, 0.16);
}

.showcase-effect-visual .effect-heading {
  display: none;
}

.showcase-effect-visual .popcorn-reactor {
  width: 100%;
  gap: 1rem;
}

.showcase-effect-visual .popcorn-chamber {
  min-height: clamp(300px, 35vw, 460px);
  border-radius: 42px 42px 88px 88px;
}

.showcase-effect-visual .reactor-button {
  background: white;
  color: var(--dark-pink);
}

.showcase-effect-visual .burst-zone {
  width: min(100%, 520px);
  margin: 0 auto;
}

.snack-showcase-hero {
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 209, 101, 0.2), transparent 22rem),
    linear-gradient(135deg, #fff8f1, #fff3f8);
}

.live-showcase-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.66), transparent 19rem),
    linear-gradient(135deg, #fff8f1, #fff0f7 52%, #fff5de);
}

.live-showcase-hero .live-title span {
  display: inline;
  color: #ffbd3b;
}

.live-showcase-hero .showcase-effect-visual .candy-effect {
  background:
    radial-gradient(circle at 78% 40%, rgba(255,255,255,.38), transparent 19rem),
    linear-gradient(135deg, #ff4fa6, #ff8bc8 52%, #ffb540);
}

@media (max-width: 900px) {
  body .home-product-hero .hero-variant__shell,
  .showcase-hero {
    grid-template-columns: 1fr;
  }

  body .home-product-hero .hero-popcorn-stage {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  body .home-product-hero.hero-variant {
    min-height: auto;
    padding-top: 6.9rem !important;
    padding-bottom: 2.6rem !important;
  }

  body .home-product-hero .hero-variant__shell {
    gap: 1.45rem;
  }

  body .home-product-hero .page-title,
  .showcase-hero .page-title {
    font-size: clamp(2.65rem, 12vw, 4rem) !important;
    line-height: 0.92 !important;
  }

  body .home-product-hero .hero-popcorn-stage {
    min-height: 330px;
  }

  body .home-product-hero .page-visual img {
    height: 300px;
  }

  .showcase-hero {
    padding-top: 1.25rem;
    padding-bottom: 2.6rem;
    gap: 1.35rem;
  }

  .showcase-bullet-list {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-left: 0;
  }

  .showcase-bullet-list li {
    min-height: 40px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .showcase-effect-visual .candy-effect {
    border-radius: 30px;
    padding: 0.8rem;
  }

  .showcase-effect-visual .popcorn-chamber {
    min-height: 300px;
  }

  .showcase-effect-visual .burst-zone {
    width: min(100%, 330px);
  }
}

.home-story-panel,
.new-products-panel,
.party-panel,
.review-card,
.info-panel,
.copy-showcase,
.essay-panel {
  max-width: 100%;
}

.hero-copy,
.page-copy,
.home-story-copy,
.customer-heading-copy,
.story-copy,
.story-section-header,
.section-heading,
.size-panel,
.size-picker,
.size-picker-stage,
.size-option {
  min-width: 0;
}

h1,
h2,
h3,
.page-title,
.section-heading h2,
.overview-hero .hero-copy h1,
.story-title {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

p,
strong,
.btn,
.hero-pills span,
.pill-row span,
.home-story-points span,
.size-option,
.size-tab,
.customer-card,
.review-card {
  overflow-wrap: break-word;
}

@media (max-width: 720px) {
  body.prepacked-page .page-main,
  body.prepacked-page .size-story,
  body.prepacked-page .size-panel,
  body.prepacked-page .size-picker,
  body.prepacked-page .size-picker-stage {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  body.prepacked-page .size-panel {
    overflow-y: visible;
  }

  .reveal,
  .story-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.42s ease, transform 0.42s ease;
  }

  .reveal.is-visible,
  .story-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal.is-visible .product-card,
  .reveal.is-visible .service-card,
  .reveal.is-visible .audience-card,
  .reveal.is-visible .station-card,
  .reveal.is-visible .copy-card,
  .reveal.is-visible .process-step {
    animation: none;
  }

  .site-header {
    max-width: calc(100dvw - 20px);
  }

  .brand img {
    width: clamp(138px, 43vw, 164px);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .section-shell,
  .footer-card {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
    line-height: 1;
  }

  .page-title,
  .product-hero .page-title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 10.2vw, 2.95rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .page-copy .hero-actions {
    margin-top: 1.15rem;
    gap: 0.65rem;
  }

  .page-copy .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .page-copy .hero-pills {
    margin-top: 0.95rem;
    gap: 8px;
  }

  .page-copy .hero-pills span {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 0.84rem;
  }

  p,
  .hero-copy p,
  .page-copy p,
  .story-copy,
  .story-section-header p {
    font-size: clamp(1rem, 4.4vw, 1.12rem);
    line-height: 1.58;
  }

  .home-story-panel {
    padding: clamp(1.4rem, 6vw, 2rem);
    border-radius: 30px;
  }

  .home-story-copy p {
    max-width: 100%;
  }

  .home-story-points span,
  .hero-pills span,
  .pill-row span {
    max-width: 100%;
    min-width: 0;
  }

  .customer-heading,
  .centered-heading {
    gap: 1.1rem;
    text-align: center;
  }

  .customer-heading h2,
  .centered-heading h2 {
    max-width: 11ch;
    margin-inline: auto;
  }

  .customer-heading-copy {
    justify-items: center;
  }

  .customer-heading-copy p {
    max-width: 32ch;
    margin-inline: auto;
  }

  .size-story {
    min-height: 0 !important;
  }

  .size-panel {
    position: relative;
    top: auto;
    padding: clamp(1.1rem, 5vw, 1.6rem);
    overflow: visible;
    border-radius: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .story-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal.is-visible .product-card,
  .reveal.is-visible .service-card,
  .reveal.is-visible .audience-card,
  .reveal.is-visible .station-card,
  .reveal.is-visible .copy-card,
  .reveal.is-visible .process-step {
    animation: none !important;
  }
}

@media (min-width: 1081px) {
  body:not(.story-page) .size-story {
    min-height: 0 !important;
  }

  .size-panel {
    position: relative;
    top: auto;
  }
}

/* ================================
   TABLET & UNCONVENTIONAL VIEWPORTS
   iPad / iPad Pro portrait & landscape,
   narrow desktop, short landscape tablets
================================ */

@media (min-width: 721px) and (max-width: 1080px) {
  .page-title,
  .product-hero .page-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.45rem, 5.2vw, 3.65rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .product-hero,
  .station-hero,
  .contact-grid,
  .page-hero-grid {
    gap: clamp(1.4rem, 3vw, 2.2rem);
  }

  .page-visual img {
    max-height: min(58vh, 640px);
  }

  .station-feature img {
    height: auto;
    max-height: min(46vh, 400px);
  }

  .overview-hero .hero-visual {
    min-height: clamp(300px, 40vh, 440px);
  }

  .float-card {
    display: none;
  }

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

  .copy-showcase-intro {
    grid-column: 1 / -1;
  }

  .copy-showcase-intro h2 {
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  }

  .copy-card img {
    height: clamp(180px, 24vw, 210px);
  }

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

  .process-step {
    min-height: 180px;
  }

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

  .review-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .google-review-panel {
    flex-basis: 100%;
  }

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

  .candy-scroll {
    height: 320svh;
  }

  .stage-content {
    min-height: 72svh;
    padding-top: clamp(3.5rem, 8vh, 5rem);
    padding-bottom: clamp(4.5rem, 11vh, 6rem);
  }

  .product-stack {
    width: min(68vw, 540px);
    height: min(48svh, 500px);
  }

  .home-story-visual {
    min-height: auto;
  }

  .home-story-panel {
    gap: clamp(1.4rem, 3vw, 2rem);
  }

  .card-grid.four,
  .product-list,
  .station-cards,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: 360px;
  }

  .page-copy .hero-pills span {
    font-size: 0.88rem;
    min-height: 36px;
    padding: 7px 12px;
  }

  body:not(.story-page) .size-story {
    min-height: 0;
  }

  .new-products-panel {
    gap: clamp(1.2rem, 2.5vw, 1.8rem);
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  .product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.88fr);
    gap: clamp(1.5rem, 3vw, 2.4rem);
  }

  .product-hero .page-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3rem, 4.5vw, 4.35rem);
    overflow-wrap: break-word;
  }

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

  .copy-showcase-intro {
    grid-column: 1 / -1;
  }

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

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

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

  .overview-hero .hero-visual {
    min-height: clamp(360px, 44vh, 480px);
  }

  .float-card {
    max-width: 200px;
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .candy-scroll {
    height: 340svh;
  }

  .station-cards-expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 721px) and (max-width: 1080px) and (max-height: 820px) {
  .candy-scroll {
    height: 275svh;
  }

  .stage-content {
    min-height: 66svh;
    padding-top: clamp(2.8rem, 7vh, 4rem);
    padding-bottom: clamp(3.5rem, 9vh, 5rem);
  }

  .product-stack {
    height: min(42svh, 420px);
  }

  .page-hero,
  .product-hero,
  .station-hero-wrap,
  .contact-hero,
  .overview-hero {
    padding-top: clamp(0.5rem, 1.5vw, 1rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.4rem);
  }

  .overview-hero .hero-visual {
    min-height: clamp(240px, 36vh, 340px);
  }

  .hero-visual img,
  .page-visual img {
    max-height: min(50vh, 560px);
  }
}

@media (max-width: 720px) {
  .station-cards-expanded {
    grid-template-columns: 1fr !important;
  }
}

/* Emergency homepage hero reset: keep the fixed nav clear and remove inherited gaps. */
body .home-main {
  padding-top: 0 !important;
}

body .home-main .overview-hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: 0 !important;
  margin: 0 auto !important;
  padding-top: 132px !important;
  padding-bottom: clamp(2.4rem, 4vw, 3.8rem) !important;
  overflow: visible !important;
}

body .home-main .overview-hero::before,
body .home-main .overview-hero::after {
  display: none !important;
  content: none !important;
}

body .home-main .overview-hero .hero-grid,
body .home-main .overview-hero .hero-copy {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  justify-items: stretch !important;
  align-items: start !important;
  text-align: left !important;
}

body .home-main .overview-hero h1 {
  max-width: 760px !important;
  margin: 0 0 clamp(1.4rem, 2.4vw, 2rem) !important;
  font-size: clamp(4rem, 7vw, 6.25rem) !important;
  line-height: 0.9 !important;
  animation: none !important;
  text-shadow: none !important;
}

body .home-main .overview-hero h1 span {
  display: block !important;
  color: var(--dark-orange) !important;
}

body .home-main .hero-intro-row {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr) !important;
  gap: clamp(2rem, 4vw, 4.2rem) !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
}

body .home-main .hero-intro-row p {
  max-width: 640px !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

body .home-main .overview-hero .hero-visual {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
}

body .home-main .overview-hero .hero-visual::before,
body .home-main .overview-hero .hero-visual::after {
  display: none !important;
  content: none !important;
}

body .home-main .hero-food {
  width: min(100%, 560px) !important;
  border-radius: 28px !important;
  animation: none !important;
}

body .home-main .hero-feature-list {
  justify-self: start !important;
  margin: clamp(1.4rem, 2.4vw, 2rem) 0 0 !important;
  padding-left: 1.25rem !important;
  text-align: left !important;
}

body .home-main .hero-actions {
  justify-content: flex-start !important;
  margin-top: 1.25rem !important;
}

@media (max-width: 900px) {
  body .home-main .overview-hero {
    padding-top: 118px !important;
  }

  body .home-main .hero-intro-row {
    grid-template-columns: 1fr !important;
  }

  body .home-main .overview-hero h1 {
    font-size: clamp(3.2rem, 13vw, 5rem) !important;
  }
}

body .home-main.page-main {
  padding-top: 104px !important;
}

body .home-product-hero {
  padding-top: clamp(0.75rem, 2vw, 1.6rem) !important;
  padding-bottom: clamp(2rem, 4vw, 3.2rem) !important;
}

body .home-product-hero .hero-feature-list {
  margin-top: 22px;
}

body .home-product-hero .page-copy {
  min-width: 0;
}

@media (max-width: 720px) {
  body .home-main.page-main {
    padding-top: 106px !important;
  }

  body .home-product-hero {
    padding-top: 1rem !important;
    padding-bottom: 2.2rem !important;
    gap: 1.35rem !important;
  }

  body .home-product-hero .page-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.45rem, 10vw, 3.5rem) !important;
    line-height: 0.95 !important;
  }

  body .home-product-hero .page-copy p {
    margin-top: 0.85rem !important;
    max-width: none !important;
  }

  body .home-product-hero .hero-feature-list {
    margin-top: 1rem !important;
    padding-left: 1.4rem !important;
  }

  body .home-product-hero .hero-actions {
    margin-top: 1rem !important;
    gap: 0.85rem !important;
  }

  body .home-product-hero .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  body .home-product-hero .page-visual img {
    max-height: none !important;
    border-radius: 30px !important;
    padding: 14px !important;
  }

  .station-cards-expanded {
    grid-template-columns: 1fr !important;
  }
}

/* Final showcase hero cascade lock. Keep this after legacy emergency overrides. */
body .home-main.page-main {
  padding-top: 0 !important;
}

body .home-product-hero.hero-variant {
  min-height: 100svh !important;
  padding-top: clamp(7.8rem, 10vw, 9.4rem) !important;
  padding-bottom: clamp(4rem, 7vw, 6.5rem) !important;
}

body .home-product-hero .hero-variant__shell {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr) !important;
  align-items: center !important;
  gap: clamp(2rem, 6vw, 6rem) !important;
}

body .home-product-hero .page-title {
  font-size: clamp(4rem, 7vw, 7rem) !important;
  line-height: 0.84 !important;
}

body .home-product-hero .hero-feature-list,
.showcase-bullet-list {
  padding-left: 0 !important;
  list-style: none !important;
}

body .home-product-hero .page-visual img {
  max-height: none !important;
  height: clamp(340px, 39vw, 520px) !important;
  padding: 0 !important;
  border-radius: inherit !important;
}

.showcase-hero .page-title {
  font-size: clamp(4rem, 7vw, 6.7rem) !important;
  line-height: 0.86 !important;
}

.showcase-hero .page-copy > p {
  max-width: 620px !important;
  margin-top: 0 !important;
}

.showcase-hero .hero-actions {
  justify-content: flex-start !important;
  margin-top: 1.45rem !important;
}

.showcase-effect-visual .candy-effect {
  min-height: 0 !important;
  grid-template-columns: 1fr !important;
  padding: clamp(1rem, 2vw, 1.4rem) !important;
}

@media (max-width: 900px) {
  body .home-product-hero .hero-variant__shell,
  .showcase-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  body .home-product-hero.hero-variant {
    min-height: auto !important;
    padding-top: 6.9rem !important;
    padding-bottom: 2.6rem !important;
  }

  body .home-product-hero .hero-variant__shell {
    gap: 1.45rem !important;
  }

  body .home-product-hero .page-title,
  .showcase-hero .page-title {
    font-size: clamp(2.65rem, 12vw, 4rem) !important;
    line-height: 0.92 !important;
  }

  body .home-product-hero .page-copy p,
  .showcase-hero .page-copy > p {
    max-width: none !important;
    margin-top: 0.85rem !important;
  }

  body .home-product-hero .hero-feature-list,
  .showcase-bullet-list {
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    margin-top: 1rem !important;
    padding-left: 0 !important;
  }

  body .home-product-hero .hero-actions,
  .showcase-hero .hero-actions {
    margin-top: 1rem !important;
    gap: 0.85rem !important;
  }

  body .home-product-hero .page-visual img {
    height: 300px !important;
    padding: 0 !important;
  }

  .showcase-effect-visual .popcorn-chamber {
    min-height: 300px !important;
  }
}

/* =========================================================
   REQUESTED HERO CORRECTIONS — 10 JULY 2026
   Kept at the end of the stylesheet to override legacy locks.
   ========================================================= */

/* HOME: keep the soft orbit blobs, but remove all sprinkle/particle pieces. */
body .home-product-hero .hero-orbit-particles,
body .home-product-hero .hero-orbit-particle {
  display: none !important;
}

/* HOME: use the experimental popcorn-house crop for the actual image too. */
body .home-product-hero.hero-variant--home-mix .hero-popcorn-stage {
  position: relative;
  min-height: clamp(500px, 52vw, 690px) !important;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

body .home-product-hero.hero-variant--home-mix .hero-popcorn-arch {
  z-index: 1;
  width: min(96%, 670px);
  height: 86%;
  bottom: 2%;
  border-color: rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

body .home-product-hero.hero-variant--home-mix .page-visual {
  position: relative;
  z-index: 2;
  width: min(83%, 580px) !important;
  height: clamp(400px, 47vw, 610px);
  aspect-ratio: auto !important;
  overflow: hidden;
  border: 11px solid rgba(255, 255, 255, 0.79) !important;
  border-radius: 48% 48% 25px 25px / 34% 34% 25px 25px !important;
  box-shadow: 0 48px 95px rgba(85, 16, 45, 0.28) !important;
  transform:
    rotateX(calc(var(--hero-my) * -4deg))
    rotateY(calc(var(--hero-mx) * 6deg))
    translateY(calc(var(--hero-my) * 8px));
  transition: transform 0.18s ease-out;
}

body .home-product-hero.hero-variant--home-mix .page-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: inherit !important;
  transform: none !important;
}

/* PRE-PACKED + LIVE STATIONS: make the opening gradient genuinely full bleed. */
body .showcase-hero {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-left: max(24px, calc((100vw - var(--max)) / 2)) !important;
  padding-right: max(24px, calc((100vw - var(--max)) / 2)) !important;
  overflow: hidden;
}

body .snack-showcase-hero {
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 209, 101, 0.2), transparent 22rem),
    linear-gradient(135deg, #fff8f1, #fff3f8) !important;
}

body .live-showcase-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.66), transparent 19rem),
    linear-gradient(135deg, #fff8f1, #fff0f7 52%, #fff5de) !important;
}

/* Match the simple orange treatment used by “to Event Moments.” */
body .showcase-hero .page-title span {
  color: var(--dark-orange) !important;
  font-family: "Baloo 2", system-ui, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  text-shadow: none !important;
  transform: none !important;
}

body .live-showcase-hero .live-title span {
  display: inline !important;
  color: var(--dark-orange) !important;
}

/* LIVE STATIONS: remove the right-side POP visual and give the copy the full row. */
body .live-showcase-hero {
  grid-template-columns: minmax(0, 1fr) !important;
}

body .live-showcase-hero .showcase-effect-visual {
  display: none !important;
}

body .live-showcase-hero .page-copy {
  width: 100%;
  max-width: 1100px;
}

body .live-showcase-hero .page-title {
  max-width: 1100px;
  text-wrap: balance;
}

body .live-showcase-hero .page-copy > p {
  max-width: 820px !important;
}

body .live-showcase-hero .showcase-bullet-list {
  max-width: 920px;
}

@media (max-width: 900px) {
  /* Keep the home bullet cards centred as a group on tablets and phones. */
  body .home-product-hero .hero-feature-list {
    width: min(100%, 560px) !important;
    justify-self: center !important;
    margin-inline: auto !important;
    text-align: left !important;
  }
}

@media (max-width: 720px) {
  body .home-product-hero.hero-variant--home-mix .hero-popcorn-stage {
    min-height: 390px !important;
  }

  body .home-product-hero.hero-variant--home-mix .hero-popcorn-arch {
    width: min(98%, 430px);
    height: 87%;
    border-width: 18px;
  }

  body .home-product-hero.hero-variant--home-mix .page-visual {
    width: min(88%, 390px) !important;
    height: 325px;
    border-width: 8px !important;
    border-radius: 48% 48% 21px 21px / 32% 32% 21px 21px !important;
  }

  body .home-product-hero .hero-feature-list {
    width: min(100%, 430px) !important;
    justify-self: center !important;
    margin: 1rem auto 0 !important;
  }

  /* The pre-packed option cards stay two columns on mobile. */
  body.prepacked-page .snack-showcase-hero .showcase-bullet-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100%;
    max-width: 100%;
    gap: 0.5rem !important;
  }

  body.prepacked-page .snack-showcase-hero .showcase-bullet-list li {
    min-height: 42px;
    padding: 0.62rem 0.55rem 0.62rem 1.75rem;
    border-radius: 14px;
    font-size: clamp(0.76rem, 3.25vw, 0.9rem);
    line-height: 1.15;
  }

  body.prepacked-page .snack-showcase-hero .showcase-bullet-list li::before {
    left: 0.62rem;
    width: 0.56rem;
    height: 0.56rem;
    box-shadow: 0 0 0 4px rgba(245, 106, 163, 0.11);
  }

  body .live-showcase-hero .page-copy,
  body .live-showcase-hero .page-title,
  body .live-showcase-hero .page-copy > p {
    max-width: none !important;
  }
}

/* =========================================================
   FOLLOW-UP HERO POLISH — 10 JULY 2026
   ========================================================= */

/* LIVE STATIONS (laptop/desktop): use the freed-up row and centre the copy.
   Mobile keeps the existing left-aligned treatment. */
@media (min-width: 901px) {
  body .live-showcase-hero .page-copy {
    width: min(100%, 1100px) !important;
    max-width: 1100px !important;
    margin-inline: auto !important;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  body .live-showcase-hero .page-title {
    width: 100%;
    max-width: 1100px !important;
    margin-inline: auto !important;
    text-align: center;
    text-wrap: balance;
  }

  body .live-showcase-hero .page-copy > p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }

  body .live-showcase-hero .showcase-bullet-list {
    width: min(100%, 920px);
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
  }

  body .live-showcase-hero .hero-actions {
    justify-content: center;
  }
}

/* =========================================================
   REQUESTED HOME + SHOWCASE POLISH - 19 JULY 2026
   ========================================================= */

/* HOME: keep the house silhouette while showing the full white-background food image. */
body .home-product-hero.hero-variant--home-mix .page-visual {
  background: #fff !important;
}

body .home-product-hero.hero-variant--home-mix .page-visual img {
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
}

/* PRE-PACKED + LIVE STATIONS: remove the page-level hero gradients and let soft blobs sit behind the fixed nav. */
body.prepacked-page .page-main,
body.live-stations-page .page-main {
  padding-top: 0 !important;
}

body.prepacked-page .showcase-hero,
body.live-stations-page .showcase-hero {
  isolation: isolate;
  padding-top: clamp(7.8rem, 10vw, 9.4rem) !important;
  padding-bottom: clamp(3.2rem, 6vw, 5.5rem) !important;
  background: #fffafc !important;
}

body.prepacked-page .showcase-hero > *,
body.live-stations-page .showcase-hero > * {
  position: relative;
  z-index: 2;
}

body.prepacked-page .showcase-hero::before,
body.prepacked-page .showcase-hero::after,
body.live-stations-page .showcase-hero::before,
body.live-stations-page .showcase-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform, border-radius;
}

body.prepacked-page .showcase-hero::before,
body.live-stations-page .showcase-hero::before {
  width: min(48vw, 650px);
  aspect-ratio: 1;
  right: -8vw;
  top: -12rem;
  background: linear-gradient(135deg, rgba(245, 106, 163, 0.62), rgba(255, 196, 77, 0.5));
  animation: showcaseBlobDriftA 14s ease-in-out infinite alternate;
}

body.prepacked-page .showcase-hero::after,
body.live-stations-page .showcase-hero::after {
  width: min(36vw, 500px);
  aspect-ratio: 1;
  left: -9vw;
  bottom: -9rem;
  background: linear-gradient(135deg, rgba(255, 210, 82, 0.46), rgba(245, 106, 163, 0.44));
  animation: showcaseBlobDriftB 16s ease-in-out infinite alternate;
}

body.prepacked-page .showcase-hero::before,
body.live-stations-page .showcase-hero::before {
  width: min(54vw, 740px);
  opacity: 0.76;
  filter: blur(22px);
  background: linear-gradient(135deg, rgba(245, 106, 163, 0.86), rgba(255, 196, 77, 0.72));
}

body.prepacked-page .showcase-hero::after,
body.live-stations-page .showcase-hero::after {
  width: min(42vw, 590px);
  opacity: 0.7;
  filter: blur(24px);
  background: linear-gradient(135deg, rgba(255, 210, 82, 0.7), rgba(245, 106, 163, 0.66));
}

body .snack-showcase-hero,
body .live-showcase-hero {
  background: #fffafc !important;
}

.popcorn-game-visual .effect-popcorn-game {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.44), transparent 18rem),
    linear-gradient(135deg, rgba(255, 219, 236, 0.96), rgba(255, 147, 203, 0.9) 56%, rgba(255, 194, 117, 0.92)) !important;
}

.popcorn-game-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(360px, 38vw, 500px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.75), transparent 14rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.popcorn-game-teaser {
  display: grid;
  justify-items: center;
  width: min(440px, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 3vw, 2.2rem);
  border-radius: 32px;
  text-align: center;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(122, 24, 83, 0.2);
  backdrop-filter: blur(18px) saturate(1.1);
}

.popcorn-game-teaser .start-popcorn {
  position: relative;
  width: 92px;
  height: 72px;
  margin: 0 auto 12px;
}

.popcorn-game-teaser .start-popcorn::before {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 0;
  height: 48px;
  border-radius: 7px 7px 18px 18px;
  background: repeating-linear-gradient(90deg, var(--main-pink) 0 11px, #fff 11px 22px);
  box-shadow: 0 14px 24px rgba(232, 63, 135, 0.2);
}

.popcorn-game-teaser .start-popcorn i {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 27px;
  border-radius: 52% 48% 46% 54%;
  background: #fff8df;
  border: 3px solid #efd596;
  box-shadow: inset 0 0 0 3px #fff;
}

.popcorn-game-teaser .start-popcorn i:nth-child(1) { left: 9px; top: 10px; transform: rotate(-20deg); }
.popcorn-game-teaser .start-popcorn i:nth-child(2) { left: 27px; top: 1px; transform: rotate(8deg); }
.popcorn-game-teaser .start-popcorn i:nth-child(3) { right: 7px; top: 12px; transform: rotate(22deg); }
.popcorn-game-teaser .start-popcorn i:nth-child(4) { left: 29px; top: 22px; transform: rotate(-12deg); }
.popcorn-game-teaser .start-popcorn i:nth-child(5) { right: 25px; top: 2px; transform: rotate(13deg); }

.popcorn-game-teaser .panel-kicker {
  margin: 0 0 0.5rem;
  color: var(--dark-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.popcorn-game-teaser h2 {
  margin: 0 0 1.25rem;
  color: var(--dark-pink);
  font-size: clamp(2.15rem, 4.8vw, 3.45rem);
  font-weight: 900;
  line-height: 0.95;
}

.popcorn-game-toolbar {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.85rem 0.7rem 1.05rem;
  color: var(--dark-pink);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(232, 63, 135, 0.12);
}

.popcorn-game-toolbar span {
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.popcorn-game-expand,
.popcorn-game-close {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0.45rem 0.85rem !important;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(120, 53, 78, 0.12);
}

.popcorn-game-frame iframe {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #fff8f1;
}

.effect-popcorn-game.is-expanded {
  position: fixed !important;
  inset: clamp(0.25rem, 1vw, 0.75rem) !important;
  z-index: 2000 !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: clamp(0.55rem, 1.2vw, 0.9rem) !important;
  border-radius: clamp(22px, 3vw, 34px) !important;
  box-shadow: 0 30px 90px rgba(63, 23, 39, 0.34) !important;
}

.effect-popcorn-game.is-expanded::before {
  content: "";
  position: fixed;
  inset: -30px;
  z-index: -1;
  background: rgba(44, 44, 44, 0.35);
  backdrop-filter: blur(5px);
}

.effect-popcorn-game.is-expanded .popcorn-game-frame {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  place-items: stretch;
  min-height: 0;
  height: 100%;
  border-radius: clamp(18px, 2.4vw, 28px);
}

.effect-popcorn-game.is-expanded .popcorn-game-teaser {
  display: none;
}

.effect-popcorn-game.is-expanded .popcorn-game-toolbar {
  display: flex;
  padding: 0.65rem clamp(0.75rem, 1.8vw, 1.15rem);
}

.effect-popcorn-game.is-expanded .popcorn-game-frame iframe {
  display: block;
}

body.prepacked-page.popcorn-game-expanded .popcorn-game-visual {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: grid !important;
  place-items: stretch !important;
  padding: 0;
  overflow: hidden !important;
  background: #fff8f1 !important;
  backdrop-filter: none;
}

body.prepacked-page.popcorn-game-expanded .effect-popcorn-game.is-expanded {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100svh !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #fff8f1 !important;
}

body.prepacked-page.popcorn-game-expanded .effect-popcorn-game.is-expanded::before {
  display: none;
}

body.prepacked-page.popcorn-game-expanded .effect-popcorn-game.is-expanded .popcorn-game-frame {
  width: 100% !important;
  height: 100svh !important;
  min-height: 100svh !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #fff8f1 !important;
}

body.prepacked-page.popcorn-game-expanded .effect-popcorn-game.is-expanded .popcorn-game-frame iframe {
  width: 100% !important;
  height: 100% !important;
  background: #fff8f1 !important;
}

body.prepacked-page.popcorn-game-expanded .site-header {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.prepacked-page.popcorn-game-expanded .page-main > :not(.showcase-hero),
body.prepacked-page.popcorn-game-expanded .site-footer,
body.prepacked-page.popcorn-game-expanded .snack-showcase-hero > .page-copy {
  visibility: hidden !important;
}

.client-track {
  animation-duration: 42s;
}

/* LIVE STATIONS: mirror the pre-packed opening layout and use a distinct interactive mixer. */
body .live-showcase-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr) !important;
}

body .live-showcase-hero .showcase-effect-visual {
  display: block !important;
}

body .live-showcase-hero .page-copy {
  width: auto !important;
  max-width: none !important;
  margin-inline: 0 !important;
  display: block !important;
  justify-items: stretch !important;
  text-align: left !important;
}

body .live-showcase-hero .page-title {
  max-width: 620px !important;
  margin-inline: 0 !important;
  text-align: left !important;
}

body .live-showcase-hero .page-copy > p {
  max-width: 620px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

body .live-showcase-hero .showcase-bullet-list {
  width: auto !important;
  max-width: 660px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body .live-showcase-hero .hero-actions {
  justify-content: flex-start !important;
}

body .live-showcase-hero .live-title span {
  display: inline !important;
  color: #ffbd3b !important;
}

body .live-showcase-hero .showcase-effect-visual .candy-effect {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 18rem),
    linear-gradient(135deg, #ff4fa6, #ff8bc8 52%, #ffbd3b) !important;
}

.station-mixer {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.station-mixer::before,
.station-mixer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.station-mixer::before {
  inset: 9%;
  border: 3px dashed rgba(255, 255, 255, 0.52);
  animation: stationMixerSpin 18s linear infinite;
}

.station-mixer::after {
  inset: 22%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 68%);
  filter: blur(12px);
}

.station-mixer-core {
  position: relative;
  z-index: 4;
  width: min(58%, 310px);
  aspect-ratio: 0.9;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-items: end;
  justify-items: center;
  gap: 0.35rem;
  overflow: hidden;
  padding: 1rem 1rem 1.25rem;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 46% 46% 30px 30px / 34% 34% 30px 30px;
  color: white;
  background:
    radial-gradient(circle at 40% 16%, rgba(255, 255, 255, 0.38), transparent 8rem),
    linear-gradient(145deg, rgba(194, 31, 105, 0.96), rgba(255, 126, 178, 0.9));
  box-shadow:
    0 32px 68px rgba(118, 35, 76, 0.28),
    inset 0 -22px 36px rgba(133, 24, 80, 0.16);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.station-mixer-core img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 36% 36% 18px 18px / 28% 28% 18px 18px;
  box-shadow: 0 18px 32px rgba(81, 20, 51, 0.18);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.station-mixer-core strong {
  position: relative;
  z-index: 2;
  color: #ffe66d;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 4px 0 rgba(117, 28, 75, 0.24);
}

.station-mixer-core > span:last-child {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.station-mixer-core:hover,
.station-mixer-core:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow:
    0 38px 78px rgba(118, 35, 76, 0.34),
    inset 0 -22px 36px rgba(133, 24, 80, 0.16);
}

.station-mixer-core:focus-visible {
  outline: 5px solid rgba(255, 255, 255, 0.62);
  outline-offset: 5px;
}

.station-mixer-halo {
  position: absolute;
  inset: 8%;
  z-index: 1;
  border-radius: inherit;
  background:
    conic-gradient(from 0deg, transparent 0 14%, rgba(255,255,255,.4) 15% 22%, transparent 23% 46%, rgba(255, 230, 109, .42) 47% 55%, transparent 56%);
  mix-blend-mode: screen;
  animation: stationMixerSpin 7s linear infinite;
}

.station-mixer-orb {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: #a71954;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(119, 37, 76, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  animation: stationMixerFloat 4.5s ease-in-out infinite;
}

.station-mixer-orb--one {
  top: 7%;
  left: 10%;
}

.station-mixer-orb--two {
  top: 14%;
  right: 6%;
  color: #7a4d00;
  animation-delay: 0.55s;
}

.station-mixer-orb--three {
  right: 7%;
  bottom: 14%;
  animation-delay: 1.1s;
}

.station-mixer-orb--four {
  left: 6%;
  bottom: 15%;
  color: #7a4d00;
  animation-delay: 1.65s;
}

@keyframes showcaseBlobDriftA {
  0% { border-radius: 48% 52% 58% 42% / 42% 54% 46% 58%; transform: translate3d(0, 0, 0) scale(1); }
  50% { border-radius: 62% 38% 45% 55% / 57% 42% 58% 43%; transform: translate3d(-4vw, 4vh, 0) scale(1.05); }
  100% { border-radius: 42% 58% 52% 48% / 46% 62% 38% 54%; transform: translate3d(2vw, 8vh, 0) scale(0.96); }
}

@keyframes showcaseBlobDriftB {
  0% { border-radius: 61% 39% 45% 55% / 49% 62% 38% 51%; transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { border-radius: 44% 56% 63% 37% / 58% 43% 57% 42%; transform: translate3d(4vw, -4vh, 0) rotate(9deg); }
  100% { border-radius: 56% 44% 38% 62% / 41% 58% 42% 59%; transform: translate3d(1vw, -8vh, 0) rotate(-6deg); }
}

@keyframes stationMixerSpin {
  to { transform: rotate(1turn); }
}

@keyframes stationMixerFloat {
  50% { transform: translateY(-16px) rotate(2deg); }
}

@media (max-width: 900px) {
  body .live-showcase-hero {
    grid-template-columns: 1fr !important;
  }

  body .live-showcase-hero .page-title {
    max-width: 760px !important;
  }

  body.prepacked-page .showcase-hero::before,
  body.live-stations-page .showcase-hero::before {
    width: 82vw;
    right: -30vw;
  }

  body.prepacked-page .showcase-hero::after,
  body.live-stations-page .showcase-hero::after {
    width: 62vw;
    left: -32vw;
  }
}

@media (max-width: 720px) {
  body.prepacked-page .showcase-hero,
  body.live-stations-page .showcase-hero {
    padding-top: 6.9rem !important;
    padding-bottom: 2.8rem !important;
  }

  .station-mixer {
    width: min(100%, 420px);
  }

  .popcorn-game-frame {
    min-height: 360px;
    border-radius: 26px;
  }

  .popcorn-game-teaser {
    width: min(100% - 1rem, 360px);
    padding: 1.7rem 1rem 1.9rem;
    border-radius: 26px;
  }

  .popcorn-game-teaser .start-popcorn {
    transform: scale(0.86);
    margin-bottom: 6px;
  }

  .popcorn-game-teaser h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .popcorn-game-toolbar {
    padding: 0.65rem 0.7rem 0.6rem 0.85rem;
  }

  .popcorn-game-toolbar span {
    font-size: 0.72rem;
  }

  .popcorn-game-expand,
  .popcorn-game-close {
    min-height: 36px;
    padding-inline: 0.7rem !important;
    font-size: 0.76rem;
  }

  .effect-popcorn-game.is-expanded {
    inset: 0 !important;
    border-radius: 22px !important;
  }

  .station-mixer-core {
    width: min(60%, 250px);
    border-width: 6px;
  }

  .station-mixer-orb {
    min-width: 84px;
    min-height: 36px;
    padding: 0.45rem 0.62rem;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.prepacked-page .showcase-hero::before,
  body.prepacked-page .showcase-hero::after,
  body.live-stations-page .showcase-hero::before,
  body.live-stations-page .showcase-hero::after,
  .station-mixer::before,
  .station-mixer-halo,
  .station-mixer-orb {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Follow-up colour/crop lock - keep the shared headline yellow consistent. */
body .home-product-hero.hero-variant--home-mix .page-title {
  color: var(--dark-orange) !important;
}

body .home-product-hero.hero-variant--home-mix .page-visual {
  background: none !important;
}

body .home-product-hero.hero-variant--home-mix .page-visual img {
  object-fit: cover !important;
  object-position: center !important;
  background: none !important;
  transform: scale(1.035) !important;
  transform-origin: center !important;
}

body .live-showcase-hero .live-title span {
  color: var(--dark-orange) !important;
}

.station-mixer-core strong {
  color: #fff !important;
}

/* Product list image visibility: show the whole item/photo without cropping. */
body.prepacked-page .product-list-expanded .product-tile,
body.live-stations-page .station-cards-expanded .station-card {
  display: grid;
  align-content: start;
}

body.live-stations-page .station-cards-expanded .station-card img {
  width: 100% !important;
  height: clamp(280px, 29vw, 380px) !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: clamp(0.35rem, 1vw, 0.7rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), transparent 54%),
    linear-gradient(145deg, rgba(255, 246, 251, 0.94), rgba(255, 248, 241, 0.92));
  box-shadow: inset 0 0 0 1px rgba(232, 63, 135, 0.08);
}

body.prepacked-page .product-list-expanded .product-tile img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  display: block;
  object-fit: contain !important;
  object-position: center !important;
  padding: clamp(0.35rem, 1vw, 0.7rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), transparent 54%),
    linear-gradient(145deg, rgba(255, 246, 251, 0.94), rgba(255, 248, 241, 0.92));
  box-shadow: inset 0 0 0 1px rgba(232, 63, 135, 0.08);
}

body.prepacked-page .product-list-expanded .product-tile:nth-child(1) img,
body.prepacked-page .product-list-expanded .product-tile:nth-child(2) img {
  height: auto !important;
}

@media (max-width: 720px) {
  body.live-stations-page .station-cards-expanded .station-card img {
    height: clamp(260px, 82vw, 360px) !important;
  }

  body.prepacked-page .product-list-expanded .product-tile img,
  body.prepacked-page .product-list-expanded .product-tile:nth-child(1) img,
  body.prepacked-page .product-list-expanded .product-tile:nth-child(2) img {
    height: auto !important;
  }
}

/* Client-requested showcase and privacy adjustments. */
.client-heading h2 {
  margin: 0;
  color: var(--dark-pink);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
  text-align: center;
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.home-story-photo-main img {
  object-position: 34% center;
}

.home-story-photo-overlap {
  inset: 12% 0 5% 42%;
  z-index: 2;
}

.home-story-photo-overlap img {
  object-position: center top;
}

@media (max-width: 720px) {
  .home-story-photo-overlap {
    inset: auto;
  }

  .home-story-photo-main img {
    object-position: 16% center;
  }
}

/* Client-requested story layout + live-station hero sizing. */
.story-section-header--stacked {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.35rem;
  margin-bottom: 0;
}

.story-section-header--stacked p {
  max-width: 760px;
  margin: 0;
}

.story-section--quality {
  padding-bottom: clamp(0.75rem, 1.8vw, 1.5rem);
}

.story-section--quality .story-v2-feature-panel {
  gap: clamp(0.65rem, 1.5vw, 1.1rem);
}

.story-section--quality .story-copy p {
  margin-bottom: 0.55rem;
}

.story-section--quality .story-copy p:last-child {
  margin-bottom: 0;
}

.story-section--quality .story-carousel-compact {
  margin-top: 0;
}

.story-section--growth {
  padding-top: clamp(0.35rem, 1vw, 0.85rem);
  padding-bottom: clamp(0.75rem, 1.8vw, 1.4rem);
}

.story-sticky-layout--top {
  grid-template-columns: 1fr;
  gap: clamp(0.55rem, 1.4vw, 1rem);
}

.story-sticky-layout--top .story-sticky-copy {
  position: relative;
  top: auto;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.story-sticky-layout--top .story-sticky-copy h2 {
  margin-bottom: 0;
  text-align: center;
}

.story-sticky-layout--top .story-stack {
  gap: clamp(0.85rem, 2vw, 1.35rem);
}

.story-sticky-layout--top .story-stack-card {
  position: relative;
  top: auto;
  margin-top: 0;
}

.story-sticky-layout--top .story-stack-card .story-copy {
  width: 100%;
  max-width: none;
  font-size: clamp(1.12rem, 1.75vw, 1.32rem);
}

.story-sticky-layout--top .story-stack-card .story-copy p {
  line-height: 1.72;
}

.story-section--behind {
  clear: both;
  padding-top: clamp(1.7rem, 3.2vw, 2.7rem);
  padding-bottom: clamp(1rem, 2.2vw, 1.8rem);
}

.story-section--behind .story-section-header {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.story-section--behind .story-v2-feature-panel {
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.proof-section {
  padding-top: clamp(0.75rem, 1.6vw, 1.3rem);
}

.story-v2-proof-layout.proof-layout--top {
  grid-template-columns: 1fr;
}

.story-proof-panel {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.story-proof-panel .story-proof-intro {
  max-width: 920px;
}

.story-proof-panel h2 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.story-proof-panel .story-proof-intro p:first-of-type {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  font-weight: 700;
}

.story-v2-proof-layout.proof-layout--top .story-proof-card {
  position: relative;
  top: auto;
  width: 100%;
}

.story-v2-proof-layout.proof-layout--top .story-proof-card p {
  max-width: 720px;
}

body.live-stations-page .station-mixer-core {
  width: min(72%, 410px);
}

@media (max-width: 720px) {
  body.live-stations-page .station-mixer-core {
    width: min(70%, 310px);
  }
}
