/* ═══════════════════════════════════════════════════════════════════════
   LAYRD — brand tokens
   Straight from images/logo and details.PNG. The three gradient stops are
   one smooth gradient, never three separate blocks.
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --cream:    #FFE3B0;
  --blush:    #FFC6C6;
  --pink:     #FF8FA8;
  --wordmark: #FFA1B3;

  --gradient: linear-gradient(170deg, var(--cream) 0%, var(--blush) 52%, var(--pink) 100%);

  --ink:       #4E3B40;   /* body copy — warm, never pure black */
  --ink-soft:  #8A7378;
  --choc:      #5A3A2E;
  --paper:     #FFF8F6;
  --card:      #FFFFFF;
  --line:      #F4DFE1;

  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 40px -22px rgba(120, 60, 70, .38);
  --shadow-lg: 0 30px 70px -30px rgba(120, 60, 70, .45);

  --wrap: 1080px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 4.75rem;   /* keeps the sticky header off anchor targets */
}
body {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
p { margin: 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;
}

/* Keyboard users land here first and can jump straight to the form. */
.skip {
  position: absolute;
  left: 50%;
  top: -4rem;
  transform: translateX(-50%);
  z-index: 100;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--choc);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top .18s ease;
}
.skip:focus { top: 0; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn--solid {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(255, 143, 168, .95);
}
.btn--solid:hover { background: #ff7d9a; transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255, 255, 255, .7);
  border-color: #fff;
  color: var(--ink);
}
.btn--ghost:hover { background: #fff; transform: translateY(-2px); }
.btn--sm { padding: .55rem 1.15rem; font-size: .9rem; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--choc); outline-offset: 3px; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1.15rem;
  background: rgba(255, 248, 246, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
/* Text fallback; replaced by the real mark below wherever masks work. */
.wordmark {
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--wordmark);
  text-decoration: none;
}
@supports ((mask-image: url("images/logo-wordmark.webp")) or
           (-webkit-mask-image: url("images/logo-wordmark.webp"))) {
  /* Your logo ships black — masking lets it wear the brand pink instead. */
  .wordmark {
    display: block;
    width: 74px;
    height: 33px;
    text-indent: -999em;
    overflow: hidden;
    background-color: var(--wordmark);
    -webkit-mask: url("images/logo-wordmark.webp") no-repeat center / contain;
            mask: url("images/logo-wordmark.webp") no-repeat center / contain;
  }
}

.nav { display: flex; align-items: center; gap: 1rem; }
.nav a:not(.btn) {
  font-size: .92rem;
  font-weight: 500;
  color: var(--choc);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:not(.btn):hover { color: var(--pink); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 3rem 1.15rem 3.5rem;
  background: var(--gradient);
  overflow: hidden;
}
/* Soft light bloom behind the copy, echoing the logo lockup background. */
.hero::before {
  content: "";
  position: absolute; inset: -30% -10% auto;
  height: 90%;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,.75), transparent 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
.hero__copy { text-align: center; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--choc);
  opacity: .72;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 12vw, 4.75rem);
  font-weight: 500;
  color: var(--choc);
}
.hero__title-lead { display: block; }

/* ── Rotating word ─────────────────────────────────────────────────────
   Vanilla rebuild of the framer-motion hero: words spring up from below,
   the outgoing one carries on upward. No React, no build step.
   ────────────────────────────────────────────────────────────────────── */
.rotator {
  position: relative;
  display: block;
  height: 1.22em;
  overflow: hidden;
}
.rotator__word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
  opacity: 0;
  /* Overshoot on the way in mimics a spring; plain ease on the way out. */
  transition: transform .75s cubic-bezier(.22, 1.28, .36, 1), opacity .45s ease;
  will-change: transform, opacity;
}
.rotator__word.is-active { transform: translateY(0);     opacity: 1; }
.rotator__word.is-above  { transform: translateY(-135%); opacity: 0; }
.rotator__word.is-below  { transform: translateY(135%);  opacity: 0; }

.hero__sub {
  max-width: 34rem;
  margin: 1.35rem auto 0;
  font-size: 1.06rem;
  color: var(--choc);
  opacity: .82;
}
.hero__actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .75rem;
  margin-top: 1.9rem;
}
.hero__meta {
  margin-top: 1.15rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--choc);
  opacity: .68;
}

/* Cut-out cans sit straight on the gradient — no photo box, just a shadow
   cast underneath them. */
.hero__media img {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 22px rgba(120, 55, 60, .28));
}

/* ── Generic section furniture ─────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; }
.section { padding: 3.75rem 1.15rem; }
.section__title {
  font-size: clamp(1.85rem, 7vw, 2.75rem);
  font-weight: 600;
  color: var(--choc);
  margin-bottom: .6rem;
}
.section__lead {
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.eyebrow--dark { color: var(--pink); opacity: 1; }

/* Carries the pink the hero ends on down into the page instead of cutting
   from full colour straight to paper. */
#how { background: linear-gradient(180deg, #FFE3E6 0%, var(--paper) 22%); }

/* ── How it works ──────────────────────────────────────────────────────
   A dashed route rather than three cards. On phones it runs down the left
   as a trail; on desktop it turns and runs across between the numerals.
   ────────────────────────────────────────────────────────────────────── */
.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.steps__item {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.15rem;
  padding-bottom: 2.6rem;
}
.steps__item:last-child { padding-bottom: 0; }

/* The trail linking one step to the next. Drawn as a repeating gradient
   rather than a dashed border, so the dash and gap sizes are ours to set. */
.steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(1.7rem - 2px);
  top: 3.75rem;
  bottom: .3rem;
  width: 4px;
  border-radius: 2px;
  background-image: repeating-linear-gradient(
    to bottom, var(--pink) 0 7px, transparent 7px 15px);
  opacity: .45;
}

.steps__num {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--choc);
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: 0 10px 20px -10px rgba(255, 143, 168, .95);
}
/* A degree or two of tilt each, so they don't line up like a template. */
.steps__item:nth-child(1) .steps__num { transform: rotate(-5deg); }
.steps__item:nth-child(2) .steps__num { transform: rotate(4deg); }
.steps__item:nth-child(3) .steps__num { transform: rotate(-2deg); }

.steps__body { padding-top: .45rem; }
.steps__head {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: .3rem;
}
.steps__body p { color: var(--ink-soft); font-size: .97rem; }

/* ── Events page ───────────────────────────────────────────────────────── */
.hero--events { padding-bottom: 2.5rem; }
.hero__title--events { font-size: clamp(2.1rem, 9vw, 3.5rem); font-weight: 600; }

.usecases { display: grid; gap: 1rem; margin-top: 2.25rem; }
.usecase {
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm);
  background: var(--card);
}
.usecase h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: .3rem;
}
.usecase p { color: var(--ink-soft); font-size: .94rem; }

.infopanel {
  margin-top: 2.5rem;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  background: var(--gradient);
  color: var(--choc);
}
.infopanel__head {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.infopanel__list { list-style: none; margin: 0; padding: 0; }
.infopanel__list li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(90, 58, 46, .14);
  font-size: .95rem;
}
.infopanel__list li:last-child { border-bottom: 0; }
.infopanel__list strong { min-width: 8.5rem; font-weight: 600; }
/* Marks the values still holding placeholder text. */
.todo { color: #9A4A5E; font-weight: 600; }

/* ── Lifestyle band ────────────────────────────────────────────────────── */
.band { position: relative; }
.band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 62%;
}
.band__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(74, 45, 40, .55), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
}

/* ── Flavour cards ─────────────────────────────────────────────────────── */
.flavours { display: grid; gap: 1rem; }
.flavours-coming {
  margin: 1.15rem 0 0;
  padding: .9rem 1rem;
  border: 1px dashed var(--pink);
  border-radius: var(--radius-sm);
  background: #FFF5F7;
  color: var(--choc);
  font-weight: 600;
  text-align: center;
}
.flavour {
  display: grid;
  grid-template-columns: 116px 1fr;   /* phone: photo beside the copy */
  align-items: center;
  gap: 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.flavour:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.flavour__shot {
  position: relative;
  display: grid;
  place-items: center;
  padding: .9rem .5rem;
  background: linear-gradient(180deg, #FFF4EF 0%, #FFE6EA 100%);
}
/* Card stays vivid — it's a teaser, not a disabled control. */
.flavour__soon {
  margin-top: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--pink);
}
.flavour__shot img {
  width: auto;
  max-height: 168px;
  filter: drop-shadow(0 8px 10px rgba(120, 55, 60, .22));
}

.flavour__text { padding: 1.1rem 1.3rem 1.1rem 0; }
.flavour__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: .3rem;
}
.flavour__desc { color: var(--ink-soft); font-size: .94rem; }

/* ═══════════════════════════════════════════════════════════════════════
   ORDER FORM
   ═══════════════════════════════════════════════════════════════════════ */
.section--order {
  background: linear-gradient(180deg, #FFF1EC 0%, var(--paper) 55%);
}
.wrap--narrow { max-width: 620px; }

/* ── Step-by-step order flow ──────────────────────────────────────────── */
.wizard-progress,
.wizard-actions,
.flavour-picker-status,
.flavour-nav { display: none; }

.order-wizard--ready .wizard-progress {
  display: block;
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}
.wizard-progress__copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .7rem;
}
.wizard-progress__copy span {
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 600;
}
.wizard-progress__copy strong {
  color: var(--choc);
  font-size: .95rem;
  text-align: right;
}
.wizard-progress__track {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #F4E5E3;
}
.wizard-progress__track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
  transition: width .25s ease;
}

.order-wizard--ready .form-step { display: none; }
.order-wizard--ready .form-step.is-active {
  display: block;
  animation: wizardStepIn .22s ease-out;
}
.order-wizard--ready .form-step:focus { outline: none; }
.order-wizard--ready .wizard-progress { scroll-margin-top: 1rem; }
@keyframes wizardStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.order-wizard--ready .wizard-actions {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: .65rem;
  margin-top: .9rem;
}
.order-wizard--ready .wizard-actions--end {
  grid-template-columns: minmax(0, 1fr);
  margin-left: auto;
  max-width: 20rem;
}
.wizard-actions .btn {
  width: 100%;
  min-width: 0;
  padding: .95rem .8rem;
}
.wizard-actions .btn--ghost {
  border-color: var(--line);
  background: #fff;
}
.order-wizard--ready .formnote {
  margin: 0 0 1rem;
}

.order-wizard--ready .flavour-picker-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 .8rem;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--choc);
}
.flavour-picker-status strong {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
}
.flavour-picker-status span {
  color: var(--choc);
  font-size: .88rem;
  font-weight: 600;
}
.order-wizard--ready .flavour-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-top: .85rem;
}
.flavour-nav .btn { padding: .72rem .6rem; font-size: .86rem; }
.flavour-nav .btn:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.order-wizard--ready .block--flavours .mixnote { margin-top: 0; }
.order-wizard--ready .block--flavours .set { margin-bottom: 0; }
.order-wizard--ready .block--flavours .canslot { margin-bottom: 0; }

.wizard-review__intro {
  clear: both;
  margin: 0 0 .85rem;
  color: var(--ink-soft);
  font-size: .9rem;
}
.wizard-review {
  display: grid;
  gap: 0;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.wizard-review__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, .65fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: start;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.wizard-review__row:last-child { border-bottom: 0; }
.wizard-review dt {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wizard-review dd {
  margin: 0;
  color: var(--choc);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
}

.block--fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
#delivery-address-block[hidden],
#delivery-address-block.is-hidden {
  display: none !important;
}
.block--fields .block__title,
.block--fields .field--full { grid-column: 1 / -1; }

.block {
  margin: 0 0 1.15rem;
  padding: 1.5rem 1.25rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.block__title {
  float: left;             /* legend + padding behaves oddly; float is stable */
  width: 100%;
  margin-bottom: 1.1rem;
  padding: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--choc);
}
.req { color: var(--pink); }
.opt { font-weight: 400; color: var(--ink-soft); font-size: .85em; }

/* ── Text fields ───────────────────────────────────────────────────────── */
.field { margin-bottom: 1rem; }
.field:last-child { margin-bottom: 0; }
.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--choc);
}
.field input,
.field textarea {
  width: 100%;
  padding: .8rem .9rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FFFCFB;
  font: inherit;
  font-size: 1rem;        /* 16px minimum stops iOS zooming on focus */
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 3.2rem; }
.field input::placeholder,
.field textarea::placeholder { color: #C9B3B7; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 143, 168, .18);
}

/* ── Sub-groups (day / time / number of sets) ──────────────────────────── */
.subfield { border: 0; margin: 0 0 1.4rem; padding: 0; }
.subfield:last-child { margin-bottom: 0; }
.subfield__label {
  padding: 0;
  margin-bottom: .55rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--choc);
}

/* ── Pack pricing cards ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  clear: both;
  width: 100%;
}
.price-card { position: relative; display: block; min-width: 0; }
.price-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.price-card__body {
  min-height: 174px;
  padding: 1rem .7rem .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 24px -22px rgba(90, 58, 46, .5);
  transition: border-color .18s ease, background-color .18s ease,
              box-shadow .18s ease, transform .18s ease;
}
.price-card__body:hover {
  border-color: var(--blush);
  transform: translateY(-2px);
}
.price-card__name {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--choc);
}
.price-card__price {
  margin: .18rem 0 .45rem;
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--choc);
}
.price-card__badge {
  min-height: 1.75rem;
  padding: .28rem .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #F8EFED;
  color: var(--ink-soft);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.15;
}
.price-card__cta {
  width: 100%;
  margin-top: auto;
  padding-top: .65rem;
  border-top: 1px solid var(--line);
  color: var(--choc);
  font-size: .78rem;
  font-weight: 600;
}
.price-card--featured .price-card__body {
  border-color: var(--pink);
  background: #FFF7F9;
  box-shadow: 0 18px 36px -24px rgba(166, 67, 91, .55);
}
.price-card--featured .price-card__badge {
  background: var(--pink);
  color: #fff;
}
.price-card--value .price-card__badge {
  background: var(--choc);
  color: #fff;
}
.price-card input:checked + .price-card__body {
  border-color: var(--pink);
  background: #FFF1F4;
  box-shadow: 0 0 0 3px rgba(255, 143, 168, .16),
              0 18px 36px -24px rgba(166, 67, 91, .5);
}
.price-card input:checked + .price-card__body .price-card__cta {
  color: var(--pink);
}
.price-card input:focus-visible + .price-card__body {
  outline: 3px solid var(--choc);
  outline-offset: 3px;
}

/* ── Chip radios ───────────────────────────────────────────────────────── */
.chips { display: grid; gap: .55rem; }
.chips--2, .chips--4 { grid-template-columns: repeat(2, 1fr); }
.chips--3 { grid-template-columns: repeat(3, 1fr); }

.chip { position: relative; display: block; }
.chip input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.chip > span {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .1rem;
  padding: .75rem .4rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.chip em {
  font-style: normal;
  font-size: .76rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.chip > span:hover { border-color: var(--blush); }
.chip input:checked + span {
  border-color: var(--pink);
  background: #FFF1F4;
  color: var(--choc);
  box-shadow: 0 0 0 3px rgba(255, 143, 168, .16);
}
.chip input:checked + span em { color: var(--pink); }
.chip input:focus-visible + span { outline: 3px solid var(--choc); outline-offset: 2px; }

.chip--disabled > span,
.chip input:disabled + span {
  border-color: var(--line);
  background: #F7F3F2;
  color: var(--ink-soft);
  cursor: not-allowed;
  opacity: .58;
  box-shadow: none;
}
.chip--disabled > span:hover,
.chip input:disabled + span:hover { border-color: var(--line); }

.chip--soldout > span {
  background: #F7F3F2;
  border-color: #E5D6D3;
  color: var(--ink-soft);
  cursor: not-allowed;
  opacity: 0.75;
}

.chip--soldout > span:hover {
  border-color: #E5D6D3;
}

.chip--soldout em {
  color: #C4374C;
  font-weight: 600;
}
.chip__stock-status {
  display: block;
  margin-top: .2rem;
  font-size: .72rem;
  font-weight: 700;
}
.chip:not(.chip--soldout):not(.chip--checking) .chip__stock-status { color: #24734B; }
.chip--checking .chip__stock-status { color: var(--ink-soft); }

/* ── The bold mix-and-match line ───────────────────────────────────────── */
.mixnote {
  margin: 1.5rem 0 1.1rem;
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  color: var(--choc);
  font-weight: 700;
  font-size: .97rem;
  text-align: center;
}
.stock-note {
  margin: -.45rem 0 1.1rem;
  text-align: center;
}

/* ── Set blocks ────────────────────────────────────────────────────────── */
.set {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem .9rem 1.2rem;
  margin: 0 0 .9rem;
  background: #FFFAF9;
}
.set:last-child { margin-bottom: 0; }
.set__title {
  padding: 0;
  margin-bottom: .9rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--choc);
}
.canslot { border: 0; margin: 0 0 1.1rem; padding: 0; }
.canslot:last-child { margin-bottom: 0; }
.canslot__label {
  padding: 0;
  margin-bottom: .5rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.canslot__opts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }

.canopt { position: relative; display: block; }
.canopt input { position: absolute; opacity: 0; width: 0; height: 0; }
.canopt__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  padding: .85rem .3rem .7rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.canopt__name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
}
.canopt input:checked + .canopt__inner {
  border-color: var(--pink);
  background: #FFF1F4;
  box-shadow: 0 0 0 3px rgba(255, 143, 168, .16);
}
.canopt input:checked + .canopt__inner .canopt__name { color: var(--choc); }
.canopt input:focus-visible + .canopt__inner { outline: 3px solid var(--choc); outline-offset: 2px; }

/* ── "Coming soon" sticker ─────────────────────────────────────────────
   Tilted so it reads as something stuck on rather than part of the layout.
   ────────────────────────────────────────────────────────────────────── */
.sticker {
  position: absolute;
  top: -.5rem;
  right: -.4rem;
  z-index: 2;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: var(--choc);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-9deg);
  box-shadow: 0 5px 12px -5px rgba(74, 45, 40, .8);
}
/* Bigger version for the flavour cards, which have room for the full words. */
.sticker--card {
  top: .7rem;
  right: .7rem;
  font-size: .68rem;
  padding: .38rem .75rem;
}

/* A coming-soon can still shows, but reads as unavailable and can't be
   picked — the radio itself is disabled, this is just the look. */
.canopt--soon .canopt__inner { cursor: not-allowed; background: #FCF7F6; }
.canopt--soon .canopt__inner:hover { border-color: var(--line); }
.canopt--soon .canimg { filter: grayscale(.5) opacity(.5); }
.canopt--soon .canopt__name { color: var(--ink-soft); }
/* Cancel the hover bounce/sway — nothing here responds to being hovered. */
.canopt--soon .canopt__inner:hover .canwrap,
.canopt--soon .canopt__inner:hover .canimg { animation: none; }

.canopt--soldout .canopt__inner {
  cursor: not-allowed;
  background: #FCF7F6;
  border-color: var(--line);
}
.canopt--soldout .sticker { background: #C4374C; }
.canopt--soldout .canimg { filter: grayscale(.5) opacity(.5); }
.canopt--soldout .canopt__name { color: var(--ink-soft); }
.canopt--soldout .canopt__inner:hover .canwrap,
.canopt--soldout .canopt__inner:hover .canimg { animation: none; }

/* ═══════════════════════════════════════════════════════════════════════
   THE CAN
   Your real cut-out photos. Bounce sits on the wrapper and the 3D turn on
   the image, because one element can only carry one transform at a time.
   ═══════════════════════════════════════════════════════════════════════ */
.canwrap {
  display: block;
  perspective: 460px;
}
.canimg {
  display: block;
  width: var(--can-w, 56px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 7px rgba(120, 55, 60, .3));
}

@keyframes canBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
/* Kept to a shallow sway — push a flat photo much past this and the
   foreshortening stops reading as a cylinder and starts looking skewed. */
@keyframes canSway {
  0%, 100% { transform: rotateY(-14deg); }
  50%      { transform: rotateY(14deg); }
}
.canopt__inner:hover .canwrap,
.canopt input:checked + .canopt__inner .canwrap {
  animation: canBounce 1.6s ease-in-out infinite;
}
.canopt__inner:hover .canimg,
.canopt input:checked + .canopt__inner .canimg {
  animation: canSway 4.5s ease-in-out infinite;
}

/* ── Confirm dialog ────────────────────────────────────────────────────── */
.candlg {
  width: calc(100% - 2.2rem);
  max-width: 330px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 40px 80px -30px rgba(90, 40, 50, .55);
  color: var(--ink);
  overflow: visible;
}
.candlg::backdrop {
  background: rgba(74, 45, 40, .45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.candlg[open] { animation: dlgIn .3s cubic-bezier(.2, 1.15, .35, 1); }
@keyframes dlgIn {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to   { opacity: 1; transform: none; }
}

.candlg__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.4rem 1.4rem;
  text-align: center;
}
.candlg__slot {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* The can gets its own stage so the drop shadow isn't clipped. */
.candlg__stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 210px;
  margin: .4rem 0 .2rem;
}
.candlg__stage .canimg {
  --can-w: 118px;
  animation: canSway 4.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 16px rgba(120, 55, 60, .32));
}
.candlg__name {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: .3rem;
}
.candlg__desc {
  font-size: .93rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.candlg__actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: .6rem;
  width: 100%;
}
.candlg__actions .btn { padding: .85rem 1rem; }
.candlg__actions .btn--ghost { border-color: var(--line); background: #fff; }

/* ── Summary + submit ──────────────────────────────────────────────────── */
.summary {
  clear: both;
  width: 100%;
  margin: 1.5rem 0 1.15rem;
  padding: 1.1rem 1.25rem;
  border: 2px dashed var(--blush);
  border-radius: var(--radius);
  background: #fff;
}
.summary__line {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  padding-bottom: .45rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.summary__discount {
  color: #287746;
  font-weight: 600;
}
.promo-box {
  margin: .45rem 0 .8rem;
  padding: .8rem 0;
  border-top: 1px solid var(--line);
}
.promo-box > label {
  display: block;
  margin-bottom: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--choc);
}
.promo-box__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .55rem;
}
.promo-box__controls input {
  min-width: 0;
  width: 100%;
  padding: .72rem .8rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FFFCFB;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  text-transform: uppercase;
}
.promo-box__controls input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 143, 168, .18);
}
.promo-box__controls .btn {
  min-width: 5.5rem;
  padding: .65rem 1rem;
  border-color: var(--line);
}
.promo-message {
  min-height: 1.25em;
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--ink-soft);
}
.promo-message.is-success { color: #287746; font-weight: 600; }
.promo-message.is-error { color: #A52A22; font-weight: 600; }
.summary__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  padding-top: .6rem;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--choc);
}
.summary__row strong { font-size: 1.4rem; font-weight: 700; }

/* Small helper line under a field. */
.hint {
  margin-top: .45rem;
  font-size: .84rem;
  color: var(--ink-soft);
}
/* Payment sits after the set blocks, so it needs air above it. */
.subfield--pay { margin-top: 1.4rem; }
.summary__note {
  margin-top: .45rem;
  font-size: .85rem;
  color: var(--ink-soft);
}
.btn--full { width: 100%; padding: 1.05rem 1.5rem; font-size: 1.08rem; }
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.gotcha {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

/* ── Validation ────────────────────────────────────────────────────────── */
.field--error input,
.field--error textarea { border-color: #E0566B; background: #FFF6F7; }
.error {
  margin-top: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: #C4374C;
}
.subfield--error > .chips,
.subfield--error > .pricing-grid,
.canslot--error > .canslot__opts { outline: 2px dashed #E0566B; outline-offset: 5px; border-radius: 6px; }

.formnote {
  margin-top: .9rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: #FFF0F2;
  border: 1px solid #F3C4CC;
  color: #B2334A;
  font-size: .92rem;
  text-align: center;
}

/* ── Confirmation ──────────────────────────────────────────────────────── */
.done {
  padding: 2.25rem 1.5rem 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.done__tick {
  display: grid;
  place-items: center;
  width: 3.6rem; height: 3.6rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--choc);
}
.done__tick svg { width: 1.7rem; height: 1.7rem; }
.done__head {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: .45rem;
}
.done__msg { color: var(--ink-soft); margin-bottom: 1.25rem; }
.done__list {
  list-style: none;
  margin: 0 auto 1.25rem;
  padding: .9rem 1rem;
  max-width: 22rem;
  text-align: left;
  background: #FFF8F6;
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.done__list li { padding: .18rem 0; color: var(--choc); }
.done__list li strong { font-weight: 600; }
.done__foot { font-size: .9rem; color: var(--ink-soft); }

/* ── FAQ ────────────────────────────────────────────────────────────────
   Native details/summary keeps the accordion accessible without adding
   another JavaScript dependency. */
.section--faq { background: #fff; }
.faq {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}
.faq__item {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq__item[open] {
  border-color: rgba(255, 143, 168, .55);
  box-shadow: 0 14px 32px -26px rgba(90, 58, 46, .55);
}
.faq__item summary {
  position: relative;
  padding: 1rem 3.2rem 1rem 1.1rem;
  color: var(--choc);
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blush);
  color: var(--choc);
  font-size: 1.15rem;
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:focus-visible {
  outline: 3px solid var(--choc);
  outline-offset: -3px;
}
.faq__item p {
  padding: 0 1.1rem 1.1rem;
  color: var(--ink-soft);
}

@media (max-width: 540px) {
  .wizard-progress__copy { align-items: flex-start; gap: .4rem; }
  .wizard-progress__copy strong { text-align: right; }
  .flavour-picker-status { align-items: stretch; flex-direction: column; gap: .55rem; }
  .flavour-picker-status strong { justify-content: center; }
  .flavour-picker-status span { text-align: center; }
  .wizard-review__row {
    grid-template-columns: minmax(0, 1fr);
    gap: .22rem;
  }
  .wizard-review dd { font-size: 1rem; text-align: left; }
}

/* ── Desktop ───────────────────────────────────────────────────────────── */
@media (min-width: 820px) {
  .hero { padding: 4.5rem 2rem 5rem; }
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 3.5rem;
  }
  .hero__copy { text-align: left; }
  .rotator__word { justify-content: flex-start; }
  .hero__sub { margin-left: 0; }
  .hero__actions { justify-content: flex-start; }
  .site-header { padding: .8rem 2rem; }

  .section { padding: 5.5rem 2rem; }

  /* Desktop: the trail turns and runs horizontally between the numerals. */
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .steps__item {
    display: block;
    text-align: center;
    padding-bottom: 0;
  }
  .steps__item:not(:last-child)::before {
    top: calc(1.7rem - 2px);
    bottom: auto;
    left: calc(50% + 2.5rem);
    right: calc(2.5rem - 2rem - 50%);
    width: auto;
    height: 4px;
    background-image: repeating-linear-gradient(
      to right, var(--pink) 0 7px, transparent 7px 15px);
  }
  .steps__num { margin: 0 auto .95rem; }
  .steps__body { padding-top: 0; }
  .flavours { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; }
  /* Desktop: back to a tall card with the photo on top. */
  .flavour { display: block; }
  .flavour__text { padding: 1.35rem 1.4rem 1.6rem; }
  .band img { aspect-ratio: 21 / 9; }
  .band__caption { font-size: 1.25rem; }

  .usecases { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero__inner--events { grid-template-columns: 1.15fr .85fr; }
  .footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; }
  .site-footer { padding: 4rem 2rem 2rem; }

  .chips--4 { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .price-card--featured { transform: translateY(-5px); }
  .block { padding: 1.75rem 1.6rem 1.9rem; }
  .block--fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }
  .set { padding: 1.3rem 1.2rem 1.4rem; }
  .canimg { --can-w: 70px; }
  .flavour__shot img { max-height: 210px; }
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 1.15rem 1.75rem;
  background: var(--choc);
  color: #F6E4E2;
}
.footer__inner { display: grid; gap: 2rem; }
.wordmark--footer { color: #fff; background-color: #fff; }
.footer__tag {
  margin-top: .8rem;
  font-size: .95rem;
  color: #E2C4C0;
  max-width: 22rem;
}
.footer__head {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: .7rem;
}
.footer__col p { font-size: .95rem; margin-bottom: .3rem; }
.footer__col a { color: #F6E4E2; text-decoration: none; border-bottom: 1px solid rgba(255,198,198,.45); }
.footer__col a:hover { color: #fff; border-bottom-color: #fff; }
/* Visually flags the bits still holding placeholder copy. */
.footer__todo { color: var(--blush); }
.footer__legal {
  max-width: var(--wrap);
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 198, 198, .2);
  font-size: .82rem;
  color: #C9A6A2;
  text-align: center;
}

/* ── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rotator__word { transition: opacity .3s ease; transform: none !important; }
  .rotator__word.is-above, .rotator__word.is-below { opacity: 0; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
  .canwrap, .canimg, .candlg__stage .canimg, .candlg[open] { animation: none; }
  .flavour:hover { transform: none; }
  .order-wizard--ready .form-step.is-active { animation: none; }
  .wizard-progress__track span { transition: none; }
}
