/* =========================================================
   ChoBo — Chocolate Boutique
   ========================================================= */
:root {
  --bg: #140b07;
  --bg-2: #1c100a;
  --choc-900: #22130c;
  --choc-800: #2d1a10;
  --choc-700: #3b2216;
  --choc-600: #5a3522;
  --milk: #8a5534;
  --caramel: #c98a4b;
  --gold: #e0b25a;
  --gold-hi: #f6d78f;
  --cream: #f5e9d7;
  --muted: rgba(245, 233, 215, .64);
  --line: rgba(245, 233, 215, .12);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 22px;
}

/* lets the bar's tilt angles animate smoothly on touch devices */
@property --rx { syntax: "<angle>"; inherits: false; initial-value: 18deg; }
@property --ry { syntax: "<angle>"; inherits: false; initial-value: -22deg; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.loading { overflow: hidden; }
/* subtle film grain over everything */
body::after {
  content: "";
  position: fixed; inset: -50%;
  pointer-events: none;
  z-index: 90;
  opacity: .05;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold); font-family: var(--serif); font-weight: 400; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -.02em; }
button { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--choc-900); }

/* ---------------- Loader ---------------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-content: center; gap: 22px; justify-items: center;
  background: var(--bg);
  transition: transform 1s var(--ease), opacity .6s;
}
.loader.done { transform: translateY(-100%); }
.loader-bar {
  display: grid; grid-template-columns: repeat(3, 34px); gap: 5px;
  padding: 8px; border-radius: 10px; background: var(--choc-900);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.loader-bar span {
  width: 34px; height: 34px; border-radius: 6px;
  background: linear-gradient(145deg, var(--choc-600), var(--choc-700));
  box-shadow: inset 2px 2px 0 rgba(255,255,255,.08), inset -3px -3px 0 rgba(0,0,0,.35);
  opacity: 0; transform: scale(.4);
  animation: pieceIn .5s var(--ease) forwards;
}
.loader-bar span:nth-child(1) { animation-delay: .05s; }
.loader-bar span:nth-child(2) { animation-delay: .15s; }
.loader-bar span:nth-child(3) { animation-delay: .25s; }
.loader-bar span:nth-child(4) { animation-delay: .35s; }
.loader-bar span:nth-child(5) { animation-delay: .45s; }
.loader-bar span:nth-child(6) { animation-delay: .55s; background: linear-gradient(145deg, var(--gold-hi), var(--gold)); }
@keyframes pieceIn { to { opacity: 1; transform: scale(1); } }
@keyframes pieceBack { from { opacity: 0; transform: scale(.4); } }
.loader-text { margin: 0; font-family: var(--serif); font-style: italic; color: var(--muted); letter-spacing: .1em; }
.dots::after { content: ""; animation: dots 1.2s steps(4) infinite; }
@keyframes dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }

/* ---------------- Cursor ---------------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 150;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .3s;
}
.cursor-dot { width: 8px; height: 8px; background: var(--gold); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(224, 178, 90, .6);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s, opacity .3s;
}
.cursor-ring.hover { width: 70px; height: 70px; background: rgba(224, 178, 90, .12); border-color: transparent; }
.cursor-ring.snap { width: 90px; height: 90px; background: rgba(224, 178, 90, .2); }
@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
  body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
  body.has-cursor.cursor-hidden .cursor-dot, body.has-cursor.cursor-hidden .cursor-ring { opacity: 0; }
}

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  transition: background .4s, padding .4s, backdrop-filter .4s, transform .5s var(--ease);
}
.nav.scrolled {
  background: rgba(20, 11, 7, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.nav.hide { transform: translateY(-110%); }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  width: 30px; height: 30px; padding: 3px; border-radius: 7px;
  background: var(--choc-900);
  transition: transform .6s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(90deg); }
.logo-mark i { border-radius: 2px; background: var(--choc-600); }
.logo-mark i:last-child { background: var(--gold); }
.logo-word { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; letter-spacing: -.03em; }
.nav-links { display: flex; gap: 34px; font-size: .92rem; }
.nav-links a { position: relative; color: var(--muted); transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------------- Buttons ---------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: 100px; border: 0;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 45%, var(--caramel));
  color: var(--choc-900); font-weight: 500; font-size: .98rem; letter-spacing: .01em;
  box-shadow: 0 10px 30px -10px rgba(224, 178, 90, .6);
  transition: box-shadow .4s, transform .25s var(--ease), opacity .3s;
  cursor: pointer;
}
.btn span { position: relative; z-index: 1; pointer-events: none; }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--cream);
  transform: translateY(101%); border-radius: 50% 50% 0 0;
  transition: transform .5s var(--ease), border-radius .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); border-radius: 0; }
.btn:hover { box-shadow: 0 16px 40px -10px rgba(224, 178, 90, .8); }
.btn:disabled { opacity: .35; pointer-events: none; }
.btn-ghost {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(245, 233, 215, .3);
}
.btn-ghost::before { background: var(--cream); }
.btn-ghost:hover { color: var(--choc-900); box-shadow: inset 0 0 0 1px var(--cream); }
.btn-small { padding: 11px 22px; font-size: .88rem; }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px clamp(18px, 5vw, 80px) 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 75% 55%, rgba(201, 138, 75, .18), transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(90, 53, 34, .45), transparent 70%),
    var(--bg);
}
.dust { position: absolute; inset: 0; width: 100%; height: 100%; }
.drip { position: absolute; top: 0; left: 0; width: 100%; height: 190px; pointer-events: none; filter: drop-shadow(0 8px 12px rgba(0,0,0,.45)); }
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px; padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(245, 233, 215, .04);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(224,178,90,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(224,178,90,0); } 100% { box-shadow: 0 0 0 0 rgba(224,178,90,0); } }

.hero-title {
  font-size: clamp(5rem, 15vw, 13.5rem);
  font-weight: 700; line-height: .85; letter-spacing: -.055em;
  margin-left: -.05em;
}
.split { display: inline-block; white-space: nowrap; }
.split .ch {
  display: inline-block;
  background: linear-gradient(100deg, #f5e9d7 0%, #f6d78f 22%, #c98a4b 42%, #7a4528 55%, #f6d78f 72%, #f5e9d7 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: molten 8s linear infinite, charIn 1.2s var(--ease) backwards;
  transition: transform .5s var(--ease);
  transform-origin: 50% 100%;
}
.split .ch:hover { transform: translateY(-10px) rotate(-4deg) scale(1.05); }
.split .ch.wobble { animation: molten 8s linear infinite, wobble .8s var(--ease); }
@keyframes molten { to { background-position: -300% 0; } }
@keyframes charIn { from { opacity: 0; transform: translateY(80%) rotate(8deg); filter: blur(10px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes wobble {
  0% { transform: scale(1, 1); }
  30% { transform: scale(1.18, .78); }
  50% { transform: scale(.88, 1.14); }
  70% { transform: scale(1.06, .95); }
  100% { transform: scale(1, 1); }
}
.hero-sub { margin: 10px 0 26px; font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.2rem); font-weight: 300; letter-spacing: .02em; }
.hero-sub em { font-weight: 300; }
.hero-lede { max-width: 30rem; margin: 0 0 36px; color: var(--muted); font-size: 1.08rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------- Chocolate bar ---------------- */
.hero-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.bar-stage { position: relative; perspective: 1100px; padding: 30px; }
.bar {
  --rx: 18deg; --ry: -22deg;
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
  width: clamp(230px, 26vw, 330px); aspect-ratio: 3 / 4.1;
  padding: 12px; border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.12) 0 2px, transparent 2px 6px),
    linear-gradient(160deg, #3a2014, #1f110a);
  transform: rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(-6deg);
  transform-style: preserve-3d;
  transition: transform .8s var(--ease);
  box-shadow:
    1px 1px 0 #2a170e, 2px 2px 0 #26150d, 3px 3px 0 #23130c, 4px 4px 0 #20110b,
    5px 5px 0 #1d100a, 6px 6px 0 #1a0e09, 7px 7px 0 #170c08,
    30px 40px 60px rgba(0,0,0,.6);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { translate: 0 -14px; } }
/* touch devices have no mouse to follow, so the bar sways by itself */
.bar.sway { animation: floaty 6s ease-in-out infinite, barSway 7s ease-in-out infinite; }
@keyframes barSway {
  0%, 100% { --ry: -32deg; --rx: 14deg; }
  50% { --ry: -8deg; --rx: 24deg; }
}
.piece:active { filter: brightness(1.25); }
.bar-shadow {
  position: absolute; left: 15%; right: 15%; bottom: -10px; height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,.6), transparent 70%);
  filter: blur(8px); animation: shadowPulse 6s ease-in-out infinite; z-index: -1;
}
@keyframes shadowPulse { 50% { transform: scale(.85); opacity: .7; } }
.piece {
  position: relative; border: 0; padding: 0;
  border-radius: 7px;
  background: linear-gradient(145deg, #7a4a2e 0%, #5a3321 35%, #3d2115 100%);
  box-shadow:
    inset 3px 3px 0 rgba(255, 220, 180, .12),
    inset -4px -4px 0 rgba(0, 0, 0, .35),
    0 2px 3px rgba(0,0,0,.4);
  transition: transform .25s var(--ease), filter .25s;
  cursor: pointer;
}
.piece::before {
  content: ""; position: absolute; inset: 16%;
  border-radius: 5px;
  background: linear-gradient(145deg, #6c3f27, #4a2918);
  box-shadow: inset -2px -2px 0 rgba(255, 220, 180, .1), inset 2px 2px 0 rgba(0, 0, 0, .3);
}
.piece::after {
  content: attr(data-mark);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: clamp(.9rem, 1.6vw, 1.3rem);
  color: #3d2115;
  text-shadow: 1px 1px 0 rgba(255, 220, 180, .15), -1px -1px 0 rgba(0,0,0,.35);
}
.piece:hover { transform: translateZ(14px) translateY(-3px); filter: brightness(1.15); }
.piece:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.piece.gone {
  visibility: hidden;
}
.falling-piece {
  position: fixed; z-index: 120; pointer-events: none;
  border-radius: 7px;
  background: linear-gradient(145deg, #7a4a2e 0%, #5a3321 35%, #3d2115 100%);
  box-shadow: inset 3px 3px 0 rgba(255, 220, 180, .12), inset -4px -4px 0 rgba(0, 0, 0, .35), 0 10px 20px rgba(0,0,0,.5);
  will-change: transform;
}
.bar-hint {
  margin: 0; font-size: .9rem; color: var(--muted);
  font-family: var(--serif); font-style: italic;
  transition: opacity .4s;
}
.hint-arrow { display: inline-block; color: var(--gold); animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-5px); } }
.bar-hint button {
  margin-left: 8px; padding: 4px 14px; border-radius: 100px;
  border: 1px solid var(--gold); background: transparent; color: var(--gold); cursor: pointer;
  font-family: var(--sans); font-style: normal; font-size: .8rem;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; z-index: 3; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.mouse { width: 22px; height: 34px; border: 1.5px solid var(--muted); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.wheel { width: 3px; height: 7px; border-radius: 3px; background: var(--gold); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* ---------------- Marquee ---------------- */
.marquee {
  overflow: hidden; padding: 22px 0;
  background: linear-gradient(90deg, var(--gold), var(--caramel), var(--gold));
  color: var(--choc-900);
  transform: rotate(-2deg) scale(1.05);
  margin: -20px 0 40px; position: relative; z-index: 5;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.marquee-track span { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 600; font-style: italic; white-space: nowrap; }
.marquee-track b { font-size: 1.1rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Sections ---------------- */
.section { position: relative; padding: clamp(80px, 12vw, 160px) clamp(18px, 5vw, 80px); max-width: 1320px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 80px); }
.kicker { margin: 0 0 18px; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.section-head h2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.section-lede { margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; max-width: 36rem; }

/* ---------------- Story ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  --tx: 0deg; --ty: 0deg;
  position: relative; padding: 34px 28px 30px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(90, 53, 34, .35), rgba(34, 19, 12, .6));
  border: 1px solid var(--line);
  transform: perspective(900px) rotateX(var(--tx)) rotateY(var(--ty));
  transition: transform .5s var(--ease), border-color .4s, opacity 1s var(--ease);
  overflow: hidden;
}
.step.reveal:not(.in) { transform: perspective(900px) translateY(40px); }
.step.reveal.in { transform: perspective(900px) rotateX(var(--tx)) rotateY(var(--ty)); }
.step:nth-child(2) { transition-delay: .08s; }
.step:nth-child(3) { transition-delay: .16s; }
.step:nth-child(4) { transition-delay: .24s; }
.step:hover { border-color: rgba(224, 178, 90, .45); }
.step::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(224, 178, 90, .18), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.step:hover::after { opacity: 1; }
.step-num { position: absolute; top: 18px; right: 22px; font-family: var(--serif); font-size: 3.6rem; font-weight: 700; color: rgba(245, 233, 215, .06); line-height: 1; }
.step-icon { width: 54px; height: 54px; fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 26px; }
.step-icon .steam { animation: steam 2.4s ease-in-out infinite; }
@keyframes steam { 50% { opacity: .3; transform: translateY(-3px); } }
.step h3 { font-size: 1.8rem; margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 70px; padding-top: 50px; border-top: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat span { color: var(--muted); font-size: .92rem; }

/* ---------------- Flavour Lab ---------------- */
.lab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.choice-group { border: 0; padding: 0; margin: 0 0 34px; }
.choice-group legend { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: var(--serif); font-size: 1.35rem; }
.choice-group legend span {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--choc-900); font-family: var(--sans); font-size: .82rem; font-weight: 600;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 10px; border-radius: 100px;
  background: rgba(245, 233, 215, .04); border: 1px solid var(--line);
  color: var(--muted); font-size: .9rem; cursor: pointer;
  transition: all .3s var(--ease);
}
.chip::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.5), transparent 45%), var(--sw);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
  transition: transform .4s var(--ease);
}
.chip:hover { color: var(--cream); border-color: rgba(245, 233, 215, .3); transform: translateY(-2px); }
.chip.active { color: var(--choc-900); background: var(--cream); border-color: var(--cream); font-weight: 500; }
.chip.active::before { transform: scale(1.2) rotate(180deg); }
.chip.shake { animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

.lab-preview { position: sticky; top: 100px; }
.preview-card {
  --tx: 0deg; --ty: 0deg;
  position: relative; padding: 36px; border-radius: 28px; text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(224, 178, 90, .15), transparent 60%),
    linear-gradient(170deg, var(--choc-800), var(--choc-900));
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8);
  transform: perspective(1100px) rotateX(var(--tx)) rotateY(var(--ty));
  transition: transform .5s var(--ease);
}
.bonbon-scene { position: relative; height: 250px; display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 18px; }
.bonbon {
  --shell: #3a1f12; --shell-hi: #7a4a2e; --shell-lo: #1c0e07;
  position: relative; width: 190px; height: 190px; border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, var(--shell-hi) 0%, var(--shell) 42%, var(--shell-lo) 100%);
  box-shadow: 0 30px 40px -12px rgba(0,0,0,.7), inset -10px -14px 30px rgba(0,0,0,.35);
  transition: background .6s;
  transform: translateX(20px);
  animation: floaty 5s ease-in-out infinite;
}
.bonbon.pop { animation: pop .6s var(--ease), floaty 5s ease-in-out infinite .6s; }
@keyframes pop { 0% { transform: translateX(20px) scale(1); } 40% { transform: translateX(20px) scale(.88, 1.08); } 70% { transform: translateX(20px) scale(1.06, .95); } 100% { transform: translateX(20px) scale(1); } }
.bonbon-shine {
  position: absolute; top: 14%; left: 20%; width: 36%; height: 22%;
  border-radius: 50%; background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: rotate(-30deg); filter: blur(1px);
}
.bonbon-topping { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; }
.bonbon-topping i { position: absolute; display: block; }
.t-gold i { width: 7px; height: 5px; background: linear-gradient(135deg, var(--gold-hi), #b8862e); border-radius: 1px; box-shadow: 0 0 6px rgba(246,215,143,.7); }
.t-salt i { width: 5px; height: 5px; background: #fff; border-radius: 1px; opacity: .9; box-shadow: 0 0 2px rgba(255,255,255,.8); }
.t-nuts i { width: 10px; height: 8px; background: linear-gradient(135deg, #d9a86c, #8e5c33); border-radius: 40% 60% 50% 40%; }
.t-dust i { width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle, rgba(107,61,36,.9), transparent 70%); }
.t-drizzle i { height: 4px; border-radius: 4px; background: var(--drizzle, #f1e3c8); box-shadow: 0 2px 2px rgba(0,0,0,.25); }

.bonbon-cut {
  --shell: #3a1f12; --shell-lo: #1c0e07;
  position: relative; width: 150px; height: 75px; margin-left: -10px; margin-top: 130px;
  border-radius: 75px 75px 0 0;
  background: linear-gradient(180deg, var(--shell), var(--shell-lo));
  box-shadow: 0 20px 30px -10px rgba(0,0,0,.7);
  transform: rotate(8deg) translateX(-20px);
  overflow: hidden; transition: background .6s;
}
.bonbon-cut::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(0,0,0,.4); }
.cut-fill {
  position: absolute; left: 11px; right: 11px; bottom: 0; top: 11px;
  border-radius: 64px 64px 0 0;
  background: #c47a2c;
  transition: background .6s;
  box-shadow: inset 0 6px 12px rgba(255,255,255,.18);
}
.creation-label { margin: 0; font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.creation-name { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 8px 0 8px; min-height: 1.1em; }
.creation-desc { margin: 0 auto 26px; max-width: 26rem; color: var(--muted); font-size: .94rem; min-height: 3em; }
.meters { display: grid; gap: 12px; text-align: left; margin-bottom: 28px; }
.meter { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 14px; font-size: .84rem; color: var(--muted); }
.meter-track { height: 8px; border-radius: 8px; background: rgba(245, 233, 215, .08); overflow: hidden; }
.meter-track i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--caramel), var(--gold-hi)); transition: width .9s var(--ease); }
.lab-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ---------------- Box builder ---------------- */
.box-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.truffle-palette { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pal-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 10px 16px; border-radius: 18px;
  background: rgba(245, 233, 215, .03); border: 1px solid var(--line);
  cursor: grab; transition: transform .35s var(--ease), border-color .3s, background .3s;
  user-select: none;
}
.pal-item:hover { transform: translateY(-6px); border-color: rgba(224, 178, 90, .45); background: rgba(245, 233, 215, .06); }
.pal-item:active { cursor: grabbing; }
.pal-item .truffle { width: 64px; height: 64px; }
.pal-item:hover .truffle { animation: spinJiggle .7s var(--ease); }
@keyframes spinJiggle { 30% { transform: rotate(-14deg) scale(1.08); } 60% { transform: rotate(8deg); } }
.pal-item b { font-weight: 500; font-size: .88rem; }
.pal-item small { color: var(--muted); font-size: .74rem; margin-top: -8px; text-align: center; }

.truffle {
  position: relative; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, var(--hi), var(--mid) 45%, var(--lo));
  box-shadow: 0 8px 14px -4px rgba(0,0,0,.6), inset -4px -6px 10px rgba(0,0,0,.3);
}
.truffle::before { /* highlight */
  content: ""; position: absolute; top: 12%; left: 20%; width: 34%; height: 20%;
  border-radius: 50%; background: rgba(255,255,255,.35); transform: rotate(-30deg); filter: blur(1px);
}
.truffle::after { content: ""; position: absolute; inset: 0; border-radius: 50%; }
.tr-dark  { --hi: #6b3f27; --mid: #3a1f12; --lo: #170a05; }
.tr-dark::after { background: radial-gradient(circle, transparent 55%, rgba(0,0,0,.15)), repeating-radial-gradient(circle at 60% 60%, rgba(120,70,40,.5) 0 1px, transparent 1px 4px); opacity: .7; }
.tr-milk  { --hi: #c08a60; --mid: #8a5534; --lo: #4a2a18; }
.tr-milk::after { background: repeating-linear-gradient(-30deg, transparent 0 7px, rgba(245,233,215,.75) 7px 9px); mask: radial-gradient(circle, #000 55%, transparent 56%); -webkit-mask: radial-gradient(circle, #000 55%, transparent 56%); }
.tr-white { --hi: #fffaf0; --mid: #efe0c3; --lo: #b99d74; }
.tr-white::after { background: radial-gradient(circle at 50% 40%, transparent 20%, rgba(0,0,0,0) 21%), radial-gradient(circle at 30% 60%, #fff 1.5px, transparent 2px), radial-gradient(circle at 65% 55%, #fff 1.5px, transparent 2px), radial-gradient(circle at 50% 75%, #fff 1.5px, transparent 2px); }
.tr-hazel { --hi: #a8744a; --mid: #6d4127; --lo: #2e180c; }
.tr-hazel::after { background: radial-gradient(circle at 35% 45%, #d9a86c 3px, transparent 4px), radial-gradient(circle at 60% 35%, #c89057 3px, transparent 4px), radial-gradient(circle at 55% 65%, #d9a86c 2.5px, transparent 3.5px), radial-gradient(circle at 30% 70%, #b9854f 2.5px, transparent 3.5px), radial-gradient(circle at 72% 58%, #d9a86c 2px, transparent 3px); }
.tr-rasp  { --hi: #f08aa4; --mid: #c2345a; --lo: #5e1026; }
.tr-rasp::after { background: radial-gradient(circle at 50% 50%, transparent 30%, transparent 31%), repeating-conic-gradient(from 0deg, rgba(255,255,255,.12) 0 10deg, transparent 10deg 30deg); mask: radial-gradient(circle, #000 60%, transparent 61%); -webkit-mask: radial-gradient(circle, #000 60%, transparent 61%); }
.tr-gold  { --hi: #5c3521; --mid: #2d170c; --lo: #0f0603; }
.tr-gold::after { background: radial-gradient(circle at 62% 38%, var(--gold-hi) 0 5px, transparent 6px), radial-gradient(circle at 55% 46%, var(--gold) 0 3px, transparent 4px), radial-gradient(circle at 68% 30%, #b8862e 0 2px, transparent 3px); filter: drop-shadow(0 0 3px rgba(246,215,143,.8)); }

.box-wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.giftbox { position: relative; width: min(100%, 440px); aspect-ratio: 1; perspective: 1200px; }
.box-base {
  position: absolute; inset: 0; border-radius: 22px; padding: 22px;
  background: linear-gradient(160deg, #4a2a19, #2a170e);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,255,255,.05), inset 0 2px 0 rgba(255,255,255,.08);
}
.slots {
  height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 14px; border-radius: 14px;
  background: linear-gradient(160deg, #e9d8bc, #cdb592);
  box-shadow: inset 0 4px 14px rgba(0,0,0,.3);
}
.slot {
  position: relative; display: grid; place-items: center;
  border: 0; padding: 0; border-radius: 50%; cursor: pointer;
  background:
    radial-gradient(circle, transparent 58%, rgba(0,0,0,.08) 60%, transparent 72%),
    repeating-conic-gradient(from 0deg, #3b2216 0 7.5deg, #2d1a10 7.5deg 15deg);
  box-shadow: inset 0 6px 12px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.slot:hover { transform: scale(1.04); }
.slot.drag-over { box-shadow: inset 0 6px 12px rgba(0,0,0,.5), 0 0 0 3px var(--gold); }
.slot .truffle { width: 78%; height: 78%; animation: drop .55s var(--ease); }
.slot.removing .truffle { animation: lift .35s var(--ease) forwards; }
@keyframes drop { 0% { transform: translateY(-60px) scale(1.25); opacity: 0; } 60% { transform: translateY(4px) scale(.95, 1.05); opacity: 1; } 100% { transform: none; } }
@keyframes lift { to { transform: translateY(-40px) scale(1.2); opacity: 0; } }

.box-lid {
  position: absolute; inset: -6px; border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.08), transparent 50%),
    linear-gradient(150deg, #4a2a19, #24130b);
  box-shadow: 0 50px 90px -20px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,255,255,.06);
  transform-origin: 50% 0%;
  transform: translateY(-115%) rotateX(35deg) scale(1.05);
  opacity: 0; pointer-events: none;
  transition: transform 1s var(--ease), opacity .5s;
  overflow: hidden;
}
.giftbox.closed .box-lid { transform: none; opacity: 1; pointer-events: auto; cursor: pointer; }
.ribbon-v, .ribbon-h { position: absolute; background: linear-gradient(90deg, #b8862e, var(--gold-hi), #b8862e); box-shadow: 0 0 12px rgba(0,0,0,.4); }
.ribbon-v { top: 0; bottom: 0; left: 50%; width: 34px; transform: translateX(-50%); }
.ribbon-h { left: 0; right: 0; top: 50%; height: 34px; transform: translateY(-50%); background: linear-gradient(180deg, #b8862e, var(--gold-hi), #b8862e); }
.bow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150px; height: 80px; }
.bow i {
  position: absolute; top: 50%; width: 70px; height: 50px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 12px solid var(--gold); background: transparent;
  box-shadow: 0 6px 10px rgba(0,0,0,.3);
}
.bow i:first-child { left: 0; transform: translateY(-50%) rotate(-18deg); }
.bow i:nth-child(2) { right: 0; transform: translateY(-50%) rotate(18deg); }
.bow b { position: absolute; left: 50%; top: 50%; width: 30px; height: 30px; transform: translate(-50%, -50%); border-radius: 8px; background: radial-gradient(circle at 35% 30%, var(--gold-hi), #b8862e); box-shadow: 0 4px 8px rgba(0,0,0,.4); }
.lid-seal {
  position: absolute; left: 50%; bottom: 12%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--cream); letter-spacing: -.03em;
}
.lid-seal small { font-family: var(--sans); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.giftbox.closed { animation: settle .8s var(--ease) .6s; }
@keyframes settle { 30% { transform: translateY(6px) scale(.99, 1.01); } 60% { transform: translateY(-4px); } }

.box-meta { display: flex; gap: 30px; align-items: baseline; flex-wrap: wrap; justify-content: center; color: var(--muted); }
.box-meta p { margin: 0; }
.box-meta strong { font-family: var(--serif); font-size: 1.7rem; color: var(--cream); }
.price-secret {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  filter: blur(4px); transition: filter .4s; cursor: help;
}
.price-secret:hover, .price-secret.shown { filter: blur(0); }
.box-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ---------------- Waitlist ---------------- */
.waitlist-card {
  --mx: 50%; --my: 0%;
  position: relative; overflow: hidden;
  max-width: 980px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) clamp(22px, 6vw, 80px);
  border-radius: 36px; text-align: center;
  background: linear-gradient(170deg, var(--choc-800), var(--choc-900));
  border: 1px solid var(--line);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.9);
}
.waitlist-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at var(--mx) var(--my), rgba(224, 178, 90, .16), transparent 45%);
}
.waitlist-card > *:not(.waitlist-glow) { position: relative; }
.waitlist-card h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.countdown { display: flex; justify-content: center; gap: clamp(10px, 3vw, 26px); margin: 44px 0 36px; flex-wrap: wrap; }
.cd {
  min-width: clamp(72px, 14vw, 120px); padding: 18px 10px 14px; border-radius: 18px;
  background: rgba(0,0,0,.25); border: 1px solid var(--line);
}
.cd strong { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 600; line-height: 1; color: var(--cream); font-variant-numeric: tabular-nums; }
.cd strong.tick { animation: tick .5s var(--ease); }
@keyframes tick { 0% { transform: translateY(-30%); opacity: 0; } 100% { transform: none; opacity: 1; } }
.cd span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.waitlist-lede { max-width: 34rem; margin: 0 auto 32px; color: var(--muted); }
.waitlist-form { display: flex; gap: 10px; max-width: 640px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.waitlist-form input {
  flex: 1 1 180px; min-width: 0;
  padding: 16px 22px; border-radius: 100px;
  background: rgba(245, 233, 215, .06); border: 1px solid var(--line);
  color: var(--cream); font: inherit; font-size: 1rem;
  transition: border-color .3s, background .3s;
}
.waitlist-form input::placeholder { color: rgba(245, 233, 215, .4); }
.waitlist-form input:focus { outline: none; border-color: var(--gold); background: rgba(245, 233, 215, .1); }
.waitlist-form.error input[type="email"] { border-color: #d05a4a; animation: shake .4s; }
.flavour-attached { margin: 18px 0 0; font-size: .9rem; color: var(--muted); }
.flavour-attached strong { color: var(--gold); font-weight: 500; }
.form-msg { min-height: 1.6em; margin: 16px 0 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.form-msg.ok { color: var(--gold-hi); }
.form-msg.err { color: #f0907f; }
.waitlist-count { margin: 18px 0 0; color: var(--muted); font-size: .92rem; }
.waitlist-count strong { color: var(--cream); font-family: var(--serif); font-size: 1.3rem; }

/* ---------------- Footer ---------------- */
.footer { padding: 70px 20px 60px; text-align: center; color: var(--muted); font-size: .88rem; border-top: 1px solid var(--line); }
.footer p { margin: 6px 0; }
.footer-logo { font-family: var(--serif); font-size: clamp(3rem, 10vw, 7rem); font-weight: 700; color: var(--cream); letter-spacing: -.05em; line-height: 1; margin-bottom: 16px; }
.footer-egg { opacity: .55; font-size: .8rem; }
kbd { padding: 2px 8px; border-radius: 6px; border: 1px solid var(--line); background: rgba(245,233,215,.06); font-family: var(--sans); color: var(--gold); }

.fx { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 130; }

.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 160;
  transform: translate(-50%, 150%);
  padding: 14px 24px; border-radius: 100px;
  background: var(--cream); color: var(--choc-900); font-weight: 500; font-size: .92rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  transition: transform .6s var(--ease);
  max-width: calc(100% - 32px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); }
.toast { bottom: calc(30px + env(safe-area-inset-bottom, 0px)); transition: transform .6s var(--ease), bottom .4s var(--ease); }
body.mini-on .toast { bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }

/* ---------------- Mobile flavour mini-bar ---------------- */
.lab-mini {
  position: fixed; z-index: 60;
  left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: none; align-items: center; gap: 14px;
  padding: 10px 10px 10px 12px; border-radius: 20px;
  background: rgba(34, 19, 12, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(224, 178, 90, .3);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  transform: translateY(160%);
  transition: transform .5s var(--ease);
}
.lab-mini.show { transform: none; }
.mini-bonbon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, var(--shell-hi, #7a4a2e), var(--shell, #3a1f12) 45%, var(--shell-lo, #160904));
  box-shadow: 0 6px 12px rgba(0,0,0,.5);
}
.mini-bonbon.pop { animation: pop2 .5s var(--ease); }
@keyframes pop2 { 40% { transform: scale(.8, 1.15); } 70% { transform: scale(1.1, .92); } }
.mini-text { flex: 1; min-width: 0; line-height: 1.25; }
.mini-text small { display: block; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.mini-text strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-view {
  flex: 0 0 auto; padding: 10px 14px; border-radius: 14px; border: 0;
  background: var(--gold); color: var(--choc-900); font-weight: 500; font-size: .82rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-ctas, .eyebrow { justify-content: center; }
  .hero-bar-wrap { order: -1; margin-bottom: -10px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .lab-grid, .box-grid { grid-template-columns: 1fr; }
  .lab-preview { position: relative; top: 0; order: -1; } /* show the bonbon before the options */
  .lab-mini { display: flex; }
  .truffle-palette { grid-template-columns: repeat(6, 1fr); }
  .nav-links { display: none; }
  .nav { padding-top: max(16px, env(safe-area-inset-top)); }
  .section-head { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .hero { padding: 96px 16px 70px; }
  .drip { height: 110px; }
  .eyebrow { font-size: .66rem; letter-spacing: .12em; padding: 7px 12px; }
  .hero-sub { margin-bottom: 18px; }
  .hero-lede { font-size: 1rem; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-bar-wrap { gap: 12px; }
  .bar-stage { padding: 16px; }
  .bar { width: 170px; padding: 9px; gap: 5px; }
  .piece::after { font-size: .85rem; }
  .scroll-cue { display: none; }

  .section { padding-left: 16px; padding-right: 16px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 26px 22px; }
  .stats { margin-top: 50px; padding-top: 36px; }

  .choice-group { margin-bottom: 26px; }
  .choice-group legend { font-size: 1.15rem; }
  .chip { padding: 9px 14px 9px 9px; font-size: .86rem; }
  .preview-card { padding: 24px 18px; border-radius: 22px; }
  .bonbon-scene { height: 200px; }
  .bonbon { width: 140px; height: 140px; }
  .bonbon-cut { width: 110px; height: 55px; margin-top: 100px; }
  .meter { grid-template-columns: 76px 1fr; }
  .lab-actions .btn { flex: 1 1 100%; }

  /* truffles become a swipeable row above the box */
  .truffle-palette {
    display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 -16px; padding: 4px 16px 12px; scrollbar-width: none;
  }
  .truffle-palette::-webkit-scrollbar { display: none; }
  .pal-item { flex: 0 0 104px; scroll-snap-align: start; padding: 16px 8px 12px; }
  .pal-item .truffle { width: 50px; height: 50px; }
  .giftbox { width: min(100%, 330px); }
  .box-base { padding: 14px; border-radius: 18px; }
  .slots { gap: 8px; padding: 10px; }
  .bow { transform: translate(-50%, -50%) scale(.8); }
  .lid-seal { font-size: 1.6rem; }
  .box-meta { gap: 16px; }
  .box-actions .btn { flex: 1 1 auto; }

  .waitlist-card { border-radius: 26px; padding: 44px 18px; }
  .countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 32px 0 28px; }
  .cd { min-width: 0; padding: 14px 4px 10px; border-radius: 14px; }
  .cd span { font-size: .6rem; letter-spacing: .12em; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { flex: none; width: 100%; }
  .waitlist-form .btn { width: 100%; }

  .nav { padding-left: 16px; padding-right: 16px; }
  .nav .btn-small { padding: 9px 16px; font-size: .8rem; }
  .logo-word { font-size: 1.4rem; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 4.2rem; }
  .nav .btn-small { padding: 8px 12px; font-size: .74rem; }
}

/* Touch screens: no sticky hover effects, lighter background effects */
@media (hover: none) {
  .piece:hover, .chip:hover, .pal-item:hover, .slot:hover, .split .ch:hover { transform: none; filter: none; }
  .pal-item:hover .truffle { animation: none; }
  .btn:hover::before { transform: translateY(101%); border-radius: 50% 50% 0 0; }
  .btn-ghost:hover { color: var(--cream); box-shadow: inset 0 0 0 1px rgba(245, 233, 215, .3); }
  .btn:active { transform: scale(.97); }
  .chip:active, .pal-item:active { transform: scale(.95); }
  body::after { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
