/* ============================================================
   KSHN — FX layer: 3D, glass, mesh, grain, kinetic, micro-interactions
   Creative system applied over the established sunset brand.
   ============================================================ */

/* ---------------- Film grain (premium tactile overlay) ---------------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 400; pointer-events: none;
  opacity: .045; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* a full-screen blended overlay is real GPU cost on phones — desktop only */
@media (max-width: 880px) {
  body::after { display: none; }
}

/* ---------------- Animated gradient mesh background ---------------- */
.mesh-host { position: relative; isolation: isolate; }
.mesh-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.mesh-bg::before, .mesh-bg::after {
  content: ""; position: absolute; inset: -30%;
  background:
    radial-gradient(38% 38% at 24% 30%, color-mix(in srgb, var(--f1) 60%, transparent), transparent 70%),
    radial-gradient(36% 36% at 78% 22%, color-mix(in srgb, var(--f3) 55%, transparent), transparent 70%),
    radial-gradient(44% 44% at 62% 80%, color-mix(in srgb, var(--f4) 55%, transparent), transparent 72%),
    radial-gradient(40% 40% at 14% 78%, color-mix(in srgb, var(--f2) 50%, transparent), transparent 72%);
  filter: blur(18px);
}
@media (prefers-reduced-motion: no-preference) {
  .mesh-bg::before { animation: meshDrift 24s ease-in-out infinite alternate; }
  .mesh-bg::after  { animation: meshDrift 30s ease-in-out -8s infinite alternate-reverse; opacity: .7; }
}
@keyframes meshDrift {
  from { transform: translate3d(-3%, 2%, 0) scale(1.05) rotate(0deg); }
  to   { transform: translate3d(4%, -3%, 0) scale(1.15) rotate(8deg); }
}

/* ---------------- Light glassmorphism cards ---------------- */
.glass {
  background: rgba(255,255,255,.55) !important;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.7) !important;
  box-shadow: 0 20px 50px -28px rgba(60,30,0,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.dark .glass, .glass.on-dark {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}

/* ---------------- Sky-blue content section ---------------- */
/* formerly the sky-blue wash; now a warm cream band (clean/premium reskin) */
.sky-sec { background: var(--paper-2); color: var(--ink); position: relative; overflow: hidden; isolation: isolate; }
.sky-sec > .wrap { position: relative; z-index: 1; }
.sky-sec > .wrap > .sect-head .h2, .sky-sec > .wrap > div > .sect-head .h2, .sky-sec .display { color: var(--ink); }
.sky-sec > .wrap .lead { color: var(--ink-soft); }
.sky-sec .btn-on-dark { background: var(--ink); color: #fff; }
.sky-sec .btn-on-dark:hover { background: #000; }
/* cards sitting on a sky section keep their own dark text */
.sky-sec .post-card, .sky-sec .flavor-card, .sky-sec .tile, .sky-sec .quote { color: var(--ink); }
.sky-sec .post-card h3, .sky-sec .post-card .muted, .sky-sec .post-card .meta { color: var(--ink); }
.sky-sec .post-card .muted, .sky-sec .post-card .meta { color: var(--ink-soft); }

/* ---------------- Signature graphics: squiggles, pouches, clouds ---------------- */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.squiggle { display: none; } /* clean reskin: no doodle decorations */
.squiggle._keep { position: absolute; z-index: 0; pointer-events: none; }
.squiggle svg { width: 100%; height: 100%; overflow: visible; }
.squiggle path { fill: none; stroke-linecap: round; stroke-width: 5; }
@media (prefers-reduced-motion: no-preference) {
  .squiggle { animation: squigDrift 9s ease-in-out infinite alternate; }
  .squiggle.s2 { animation-duration: 11s; animation-delay: -3s; }
  .squiggle.s3 { animation-duration: 13s; animation-delay: -6s; }
}
@keyframes squigDrift { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(8px,-10px) rotate(4deg); } }

/* loose scattered pouch */
.loose-pouch {
  position: absolute; z-index: 0; pointer-events: none;
  width: 92px; aspect-ratio: 7/4; border-radius: 999px;
  background: linear-gradient(150deg, #ffffff, #eaf4f8);
  box-shadow: 0 14px 30px -14px rgba(8,50,59,.5), inset 0 -6px 12px rgba(8,50,59,.08), inset 0 4px 6px rgba(255,255,255,.9);
}
.loose-pouch::before { /* seam */
  content: ""; position: absolute; inset: 30% 14%; border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px rgba(8,50,59,.12);
}
@media (prefers-reduced-motion: no-preference) {
  .loose-pouch { animation: poFloat 7s ease-in-out infinite; }
  .loose-pouch.p2 { animation-duration: 8.5s; animation-delay: -2s; }
}
@keyframes poFloat { 0%,100% { transform: translateY(0) rotate(var(--por,-12deg)); } 50% { transform: translateY(-12px) rotate(calc(var(--por,-12deg) + 4deg)); } }

/* fluffy cloud blob (decor) — hidden in the clean reskin */
.cloud-blob {
  display: none;
  position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  background: radial-gradient(closest-side, #ffffff, rgba(255,255,255,.7) 60%, rgba(255,255,255,0) 78%);
  filter: blur(2px);
}
.cloud-blob::before, .cloud-blob::after {
  content: ""; position: absolute; border-radius: 50%; background: inherit;
}
.cloud-blob::before { width: 70%; height: 70%; left: -28%; top: 22%; }
.cloud-blob::after { width: 84%; height: 84%; right: -34%; top: 14%; }

/* cloud-bump section divider */
.cloud-divide { position: relative; height: 0; z-index: 3; }
.cloud-divide svg { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(34px, 5vw, 64px); display: block; }

/* ---------------- Quick value strip ---------------- */
/* (the dose strip was retired — its section was removed from the home page) */

/* ---------------- Line-icon benefit/step tiles ---------------- */
.bicon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; }
.bicon svg { width: 30px; height: 30px; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------- Find a Store (multi-state) ---------------- */
.states-band { position: relative; overflow: hidden; }
.state-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.4vw,2rem); }
@media (max-width: 760px) { .state-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } }
.state-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 1.8rem 1.4rem; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  color: var(--ink); text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.state-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.state-sil { width: clamp(110px, 16vw, 150px); height: clamp(110px, 16vw, 150px); display: grid; place-items: center; filter: drop-shadow(0 10px 20px rgba(16,34,43,.18)); }
.state-sil svg { width: 100%; height: 100%; overflow: visible; }
.state-card h3 { font-size: 1.5rem; color: var(--ink); }
.state-card .sc-meta { font-size: .9rem; color: var(--ink-soft); }
.state-card .sc-go { margin-top: .4rem; display: inline-flex; align-items: center; gap: .4em; font-family: var(--display); font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--line); padding-bottom: 2px; }
.state-card.soon { opacity: .82; }
.state-card.soon .sc-go { opacity: .7; }
/* DRAW: silhouettes stroke in when the grid reveals; live fills fade after */
.state-sil path { stroke-dasharray: 1; stroke-dashoffset: 1; fill-opacity: 0; transition: stroke-dashoffset .8s var(--ease), fill-opacity .5s var(--ease) .5s; }
.state-grid.in .state-sil path { stroke-dashoffset: 0; }
.state-grid.in .state-sil .sil-live { fill-opacity: 1; }
.state-grid.in .state-sil .sil-ghost { fill-opacity: .08; }
/* uploaded silhouette artwork (managed in the dashboard): rise + settle on
   reveal; coming-soon states sit as desaturated ghosts until launch.
   Absolutely filled: a percentage height on a centered grid item resolves
   cyclically and lets portrait artwork overflow the box. */
.state-sil { position: relative; }
.sil-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transform: translateY(14px) scale(.92);
  transition: opacity .6s var(--ease), transform .7s var(--ease), filter .6s var(--ease);
}
.state-grid.in .sil-img { opacity: 1; transform: none; }
.sil-img.ghost { filter: grayscale(.85) opacity(.55); }
.state-card:hover .sil-img.ghost { filter: grayscale(.3) opacity(.8); }
.state-card:hover .sil-img { transform: scale(1.05); }
.state-tag.pulse { animation: tagPulse 3s ease-in-out infinite; }
@keyframes tagPulse { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .state-sil path { stroke-dashoffset: 0 !important; transition: none; }
  .state-sil .sil-live { fill-opacity: 1 !important; }
  .state-sil .sil-ghost { fill-opacity: .08 !important; }
  .sil-img { opacity: 1 !important; transform: none !important; transition: none; }
  .state-tag.pulse { animation: none; }
}
/* city ticker: honest retail-proof texture */
.city-ticker { overflow: hidden; margin-top: 1.6rem; border-block: 1px solid var(--line); padding-block: .55rem; }
.city-ticker .mq-track { display: inline-flex; gap: 2.6rem; white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) { .city-ticker .mq-track { animation: mqScroll 40s linear infinite; } }
.city-ticker span { font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 2.6rem; }
.city-ticker span::after { content: "✦"; color: var(--burnt); font-size: .8em; }
.states-foot { margin-top: .9rem; font-size: .85rem; color: var(--ink-soft); }
.states-foot span { opacity: .75; font-style: italic; }
.state-tag { position: absolute; top: 1rem; right: 1rem; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--paper-2); border: 1px solid var(--line); padding: .3em .7em; border-radius: 999px; }

/* ---------------- Kinetic text (word rise) ---------------- */
/* base state is fully VISIBLE (no transform/opacity). The rise is a pure
   translateY that stays legible even at frame 0, so a frozen render or a
   never-fired trigger still shows the words. */
.kinetic { display: inline; }
.kinetic .kw { display: inline-block; }
.kinetic .kw > span { display: inline-block; transform: translateY(0); }
.kinetic.play .kw > span { animation: kwRise .7s var(--ease) both; }
@keyframes kwRise { from { transform: translateY(20px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .kinetic.play .kw > span { animation: none; } }

/* ---------------- Magnetic button glow ---------------- */
.btn[data-magnetic] { transition: transform .18s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease); will-change: transform; }
.btn[data-magnetic]:hover { box-shadow: var(--sh-lg), 0 0 30px -6px rgba(255,255,255,.6); }

/* ---------------- Standalone tin (selector / flavor page) ---------------- */
.tin-stage { position: relative; display: grid; place-items: center; perspective: 1200px; }
.tin-stage .tin { position: relative; left: auto; top: auto; width: min(72%, 320px); --rot: 0deg; --scl: 1;
  transform: translate(var(--proxX,0px), var(--proxY,0px)) rotate(var(--rot)) scale(var(--scl)); }
.tin-stage .tin__shadow { bottom: -9%; filter: blur(8px); }
@media (prefers-reduced-motion: no-preference) {
  .tin-stage .tin__bob { animation: bobA 6.5s ease-in-out infinite; }
  .tin-stage.spin .tin__can { animation: tinYaw 9s ease-in-out infinite; }
}
@keyframes tinYaw { 0%, 100% { transform: rotateY(-17deg) rotateX(2deg); } 50% { transform: rotateY(17deg) rotateX(-1deg); } }

/* swap transition when flavor changes */
.tin-stage .prod-img { width: min(78%, 320px); }
.tin-stage .prod-img .prod-fallback .tin { width: 100%; }
.tin-stage .tin.swapping, .tin-stage .prod-img.swapping { animation: tinSwap .5s var(--ease); }
@keyframes tinSwap { 0% { opacity: 1; transform: translateY(0) rotate(var(--rot)) scale(var(--scl)); }
  45% { opacity: 0; transform: translateY(18px) rotate(var(--rot)) scale(.9); }
  55% { opacity: 0; transform: translateY(-18px) rotate(var(--rot)) scale(.9); }
  100% { opacity: 1; transform: translateY(0) rotate(var(--rot)) scale(var(--scl)); } }

/* ---------------- Pick Your Vibe selector ---------------- */
.vibe { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.4rem, 4vw, 3.5rem); align-items: center; }
.vibe-stage {
  position: relative; border-radius: var(--r-xl); overflow: hidden; isolation: isolate;
  min-height: clamp(420px, 46vw, 560px); display: grid; place-items: center;
  padding-bottom: 3rem; /* clearance for the pouch burst */
  background: var(--charcoal);
}
.vibe-stage .mesh-bg::before, .vibe-stage .mesh-bg::after { opacity: .8; filter: blur(26px); }
.vibe-stage .tin-stage { width: 100%; height: 100%; }
.vibe-stage #vibe3d-mount { position: relative; z-index: 1; width: 100%; height: 100%; }
.vibe-stage .vibe-glow {
  position: absolute; left: 50%; top: 54%; translate: -50% -50%; width: 70%; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent, #fff) 55%, transparent), transparent 66%);
  filter: blur(40px); z-index: 0; transition: background .5s var(--ease);
}
.vibe-stage .vibe-wm {
  position: absolute; left: 50%; bottom: 6%; translate: -50% 0; z-index: 0;
  font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 7vw, 4.2rem);
  color: rgba(255,255,255,.1); letter-spacing: -.03em; white-space: nowrap;
}
.vibe-info { }
.vibe-fam { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--burnt); }
.vibe-name { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.03em; line-height: 1; margin: .3rem 0 .2rem; }
.vibe-name .flavor-text { background: var(--flavor); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vibe-blurb { color: var(--ink-soft); font-size: 1.08rem; max-width: 42ch; margin-top: .8rem; min-height: 3.2em; }
.vibe-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0; }
.vibe-chip {
  display: inline-flex; align-items: center; gap: .5em; padding: .55em 1em; border-radius: var(--r-pill);
  background: #fff; box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 600; font-family: var(--display);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), color .2s;
}
.vibe-chip .sw { width: 14px; height: 14px; border-radius: 5px; background: var(--cg); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.vibe-chip:hover { transform: translateY(-2px); }
.vibe-chip.on { color: #fff; background: var(--cg); box-shadow: 0 10px 22px -10px var(--csolid); }
.vibe-chip.on .sw { background: rgba(255,255,255,.85); }
.vibe-meta { display: flex; gap: 1.6rem; margin: 1.2rem 0 1.6rem; }
.vibe-meta div b { font-family: var(--display); font-size: 1.5rem; display: block; }
.vibe-meta div span { font-size: .82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 880px) {
  .vibe { grid-template-columns: 1fr; }
  .vibe-stage { order: -1; min-height: clamp(320px, 70vw, 420px); }
}

/* ---------------- 3D tilt cards ---------------- */
[data-tilt] { transform-style: preserve-3d; will-change: transform; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
[data-tilt] .tilt-bloom {
  position: absolute; inset: 0; z-index: -1; border-radius: inherit; opacity: 0;
  background: var(--fc-grad, var(--flavor, var(--sunset-warm))); filter: blur(26px); transform: scale(.85);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
[data-tilt]:hover .tilt-bloom { opacity: .5; transform: scale(1.04); }

/* count-up numbers reserve space to avoid layout shift */
[data-count] { font-variant-numeric: tabular-nums; }

/* ---------------- Real product image (with CSS-tin fallback) ---------------- */
/* product photo overlaid on a CSS tin (hero cluster + standalone tins) */
.tin .tin-photo {
  position: absolute; left: 50%; top: 50%; width: 124%; height: 124%;
  transform: translate(-50%, -50%); object-fit: contain; opacity: 0;
  transition: opacity .55s var(--ease); z-index: 5; pointer-events: none;
  filter: drop-shadow(0 24px 38px rgba(8,50,59,.42));
}
.tin .tin-photo.show { opacity: 1; }
/* once the real photo shows, hide the CSS construction behind it (keep the shadow) */
.tin:has(.tin-photo.show) .tin__can { opacity: 0; }
.tin:has(.tin-photo.show) .tin__shadow { opacity: .5; }
.prod-img.has-photo .prod-fallback { opacity: 0; }

/* product photo on a flavor card */
.fc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s var(--ease); z-index: 1; }
.fc-photo.show { opacity: 1; }
.flavor-card .fc-go { z-index: 2; }

.prod-img { position: relative; width: 100%; display: grid; place-items: center; }
.prod-img .prod-fallback { width: 100%; display: grid; place-items: center; }
.prod-img .prod-fallback .tin { position: relative; left: auto; top: auto; transform: none; width: min(70%, 280px); margin-inline: auto; }
.prod-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity .5s var(--ease); z-index: 2; pointer-events: none;
  filter: drop-shadow(0 26px 40px rgba(8,50,59,.4)); }
.prod-img.has-photo img { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .prod-img.has-photo img { animation: prodFloat 6.5s ease-in-out infinite; }
}
@keyframes prodFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1.5deg); } }

/* ---------------- Lifestyle gallery ---------------- */
/* monochrome masonry: color discipline holds — hover lifts the grayscale */
.gallery { columns: 4 200px; column-gap: clamp(.6rem,1.4vw,1rem); }
.gallery .gcell { break-inside: avoid; margin-bottom: clamp(.6rem,1.4vw,1rem); border-radius: var(--r-md); overflow: hidden; position: relative; background: var(--paper-2); display: block; }
.gallery .gcell img { width: 100%; display: block; filter: grayscale(1) contrast(1.05); transition: transform .5s var(--ease), filter .25s var(--ease); }
.gallery .gcell:hover img { transform: scale(1.05); filter: none; }
.gallery .gcell .ph { border-radius: var(--r-md); }
/* never trap color behind hover on touch / reduced motion */
@media (hover: none), (prefers-reduced-motion: reduce) {
  .gallery .gcell img { filter: none; transition: none; }
  .gallery .gcell:hover img { transform: none; }
}
.gal-cap { font-size: .82rem; color: var(--ink-soft); margin-top: .6rem; }

/* ---------------- Drop 006: blacked-out teaser tin (ink band) ---------------- */
.drop006 { background: var(--ink); color: #fff; padding-block: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.drop-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 760px) { .drop-grid { grid-template-columns: 1fr; } }
.drop-sil { position: relative; display: grid; place-items: center; }
.drop-sil::before {
  content: ""; position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
}
.drop-sil img { width: min(70%, 300px); filter: brightness(0); position: relative; }
/* the sheen: an "object under cloth" sweep */
.drop-sil::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,.1) 50%, transparent 62%);
  background-size: 280% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .drop-sil::after { animation: silSheen 6s ease-in-out infinite; }
}
@keyframes silSheen { 0% { background-position: 120% 0; } 60%, 100% { background-position: -120% 0; } }
.drop-label {
  position: absolute; left: 50%; bottom: 4%; translate: -50% 0; white-space: nowrap;
  font-size: .68rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.drop-copy .eyebrow { color: var(--peach); }
.drop-copy .h2 { color: #fff; margin-top: .6rem; }
.drop-copy p { color: rgba(255,255,255,.72); margin: .8rem 0 1.4rem; max-width: 44ch; }
.newsletter.drop-nl { background: none; padding: 0; border-radius: 0; overflow: visible; }

/* ---------------- Statement band ---------------- */
.statement { position: relative; min-height: clamp(360px, 52vw, 560px); display: grid; place-items: center; overflow: hidden; isolation: isolate; color: #fff; text-align: center; }
.statement .st-bg { position: absolute; inset: 0; z-index: -2; }
.statement .st-bg img, .statement .st-bg video { width: 100%; height: 100%; object-fit: cover; }
.statement .st-bg .ph { width: 100%; height: 100%; border-radius: 0; }
.statement::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,50,59,.55), rgba(16,159,215,.45)); }
.statement .st-inner { padding: 2rem var(--pad-x); }
.statement .display { color: #fff; }

/* ---------------- Featured video (Why KSHN) ---------------- */
.video-feature {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9;
  background: var(--charcoal); box-shadow: var(--sh-lg); isolation: isolate;
}
.video-feature video, .video-feature .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-feature .ph { border-radius: 0; transition: opacity .6s var(--ease); }
.video-feature::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8,50,59,.7), rgba(8,50,59,.05) 55%); pointer-events: none; }
.video-feature .vf-overlay { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(1.4rem, 3.5vw, 2.8rem); color: #fff; max-width: 36ch; }
.video-feature .vf-overlay .eyebrow { color: #fff; }
.video-feature .vf-overlay h3 { font-family: var(--display); color: #fff; font-size: clamp(1.9rem, 4.4vw, 3.2rem); letter-spacing: -.03em; line-height: .98; margin: .4rem 0 1rem; }
.video-feature .vf-mute { position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(8,50,59,.4); backdrop-filter: blur(6px); color: #fff; display: grid; place-items: center; }
.video-feature .vf-mute svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .video-feature { aspect-ratio: 4 / 5; } }

/* ---------------- Pouches page: floating product fan hero ---------------- */
.pouch-hero { display: flex; align-items: center; min-height: clamp(540px, 82vh, 800px); }
.pouch-hero .wrap { width: 100%; }
.pouch-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(1.4rem,4vw,3rem); align-items: center; }
@media (max-width: 900px) { .pouch-grid { grid-template-columns: 1fr; } }
.pouch-fan { position: relative; height: clamp(320px, 42vw, 500px); }
.hero-showcase .pouch-fan.hero-fan { width: 100%; height: 100%; min-height: clamp(340px, 44vw, 520px); }
.pfan-item { position: absolute; width: 30%; cursor: pointer; transform: translate(-50%,-50%) rotate(var(--pr,0deg)); transition: transform .45s var(--ease), filter .45s var(--ease); }
.pfan-item .prod-img { width: 100%; }
.pfan-item .prod-img .prod-fallback .tin { width: 100%; }
.pfan-item .label {
  position: absolute; left: 50%; bottom: -4%; translate: -50% 0; z-index: 8;
  font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .02em;
  color: #fff; background: rgba(8,50,59,.42); backdrop-filter: blur(4px);
  padding: .25em .7em; border-radius: 999px; white-space: nowrap; opacity: 0; transition: opacity .3s;
}
.pfan-item:hover { transform: translate(-50%,-50%) rotate(var(--pr,0deg)) translateY(-16px) scale(1.06); z-index: 30 !important; filter: drop-shadow(0 30px 40px rgba(8,50,59,.4)); }
.pfan-item:hover .label { opacity: 1; }
@media (max-width: 560px) { .pouch-fan { height: 340px; } .pfan-item { width: 40%; } }

/* ---------------- Playful brand marquee ---------------- */
.marquee { overflow: hidden; background: var(--ink); color: #fff; padding-block: .95rem; position: relative; }
.marquee.tilt { transform: none; } /* clean reskin: the brand band runs straight */
.marquee:hover .mq-track { animation-play-state: paused; }
/* ghost row: outlined ink type on cream, travelling the other way at .8x speed */
.marquee.mq-ghost { background: var(--paper-2); border-block: 1px solid var(--line); }
.marquee.mq-ghost .mq-track span {
  color: transparent; -webkit-text-stroke: 1.5px var(--ink);
}
.marquee.mq-ghost .mq-track span::after { color: var(--burnt); -webkit-text-stroke: 0; }
@media (prefers-reduced-motion: no-preference) {
  .mq-track.mq-rev { animation: mqScroll 34s linear infinite reverse; }
}
.marquee .mq-track { display: inline-flex; gap: 2.4rem; white-space: nowrap; will-change: transform; }
@media (prefers-reduced-motion: no-preference) { .marquee .mq-track { animation: mqScroll 26s linear infinite; } }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee .mq-track span { font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem,2.2vw,1.6rem); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee .mq-track span::after { content: "✦"; color: var(--c-gold); font-size: .8em; }

/* ---------------- Flavor page 3D hero world ---------------- */
.flavor-world { position: relative; overflow: hidden; isolation: isolate; }
.flavor-world .mesh-bg { z-index: 0; }
.flavor-world .mesh-bg::before, .flavor-world .mesh-bg::after { opacity: .9; }
.flavor-world > .wrap { position: relative; z-index: 1; }
.flavor-world .tin-stage { min-height: clamp(360px, 40vw, 520px); }
.flavor-world .tin-stage .tin { width: min(74%, 360px); }
.flavor-world .fw-glow {
  position: absolute; right: 14%; top: 42%; translate: 0 -50%; width: 42%; aspect-ratio: 1; z-index: 0;
  border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent,#fff) 50%, transparent), transparent 65%);
  filter: blur(50px);
}
/* full-bleed banner photo behind the flavor hero (fades in over the gradient world) */
.flavor-world .fw-banner { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; opacity: 0; transition: opacity .6s var(--ease); }
.flavor-world .fw-banner.show { opacity: .9; }
.flavor-world .fw-banner.show ~ .mesh-bg { opacity: .35; }
.flavor-world::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(110deg, color-mix(in srgb, var(--f1) 55%, transparent), transparent 60%); pointer-events: none; }
.flavor-world .tin-stage .prod-img { width: 100%; }
.flavor-world .tin-stage .prod-img .prod-fallback .tin { width: min(74%, 320px); }