/* Playwild Jelly Squishy — drop-1 page styles
   Built on top of pw-tokens.css. Squishy colours are LOCAL overrides
   for this drop only (Squish Blue / Pink / Purple from the build kit). */

:root {
  /* Drop-1 squishy colours (per build kit) */
  --sq-blue:   #4FB3E5;
  --sq-pink:   #F26AAD;
  --sq-purple: #9B6BD8;

  /* Active variant accent — JS overwrites this when colour changes */
  --sq-accent: var(--sq-blue);
  --sq-accent-deep: #2B7FB8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--pw-cream);
  color: var(--pw-navy);
  font-family: var(--pw-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--pw-lime); color: var(--pw-navy); }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pw-navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--sq-accent);
  transition: background var(--pw-dur-fast) var(--pw-ease);
}
.btn {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  padding: 14px 22px;
  border: 2px solid var(--pw-navy);
  border-radius: 2px;
  background: var(--pw-navy);
  color: var(--pw-cream);
  transition: transform var(--pw-dur-instant) var(--pw-ease),
              background var(--pw-dur-instant) var(--pw-ease),
              color var(--pw-dur-instant) var(--pw-ease),
              box-shadow var(--pw-dur-instant) var(--pw-ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn:hover { background: var(--sq-accent); border-color: var(--sq-accent); color: var(--pw-navy); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--pw-navy); }
.btn--ghost:hover { background: var(--pw-navy); color: var(--pw-cream); }
.btn--accent { background: var(--sq-accent); color: var(--pw-navy); border-color: var(--pw-navy); }
.btn--accent:hover { background: var(--pw-navy); color: var(--pw-cream); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 880px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--pw-navy);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--pw-font-display);
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--pw-navy);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand-dot {
  width: 10px; height: 10px;
  background: var(--sq-accent);
  border-radius: 50%;
  display: inline-block;
  transition: background var(--pw-dur-fast) var(--pw-ease);
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-meta .stock-dots { display: flex; gap: 6px; }
.nav-meta .stock-dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.nav-meta .stock-dots i.b { background: var(--sq-blue); }
.nav-meta .stock-dots i.p { background: var(--sq-pink); }
.nav-meta .stock-dots i.u { background: var(--sq-purple); }

/* ---------- marquee ---------- */
.marquee {
  background: var(--pw-lime);
  border-top: 2px solid var(--pw-navy);
  border-bottom: 2px solid var(--pw-navy);
  overflow: hidden;
  font-family: var(--pw-font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--pw-navy);
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  gap: 36px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span::after { content: "✱"; margin-left: 36px; color: var(--pw-navy); opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- hero ---------- */
.hero {
  padding: 56px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--pw-font-display);
  font-size: 22px;
  color: var(--sq-accent-deep);
  transform: rotate(-2.5deg);
  display: inline-block;
  margin-bottom: 18px;
  transition: color var(--pw-dur-fast) var(--pw-ease);
}
.hero h1 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
  color: var(--pw-navy);
  letter-spacing: -3px;
}
.hero h1 .accent {
  font-family: var(--pw-font-display);
  font-weight: 400;
  color: var(--sq-accent-deep);
  transition: color var(--pw-dur-fast) var(--pw-ease);
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
  transform: translateY(6px);
}
.hero-sub {
  font-family: var(--pw-font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--pw-navy);
  max-width: 460px;
  margin-top: 24px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.price-chunk {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -1.5px;
  color: var(--pw-navy);
  line-height: 1;
}
.price-chunk .sep { font-family: var(--pw-font-body); font-size: 14px; color: var(--pw-text-muted); letter-spacing: 1px; }
.price-chunk .pair { color: var(--sq-accent-deep); transition: color var(--pw-dur-fast) var(--pw-ease); }

.delivery-line {
  font-family: var(--pw-font-subhead);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.delivery-line svg { width: 16px; height: 16px; stroke: var(--pw-navy); }

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

/* hero product stage */
.product-stage {
  position: relative;
  aspect-ratio: 1;
  background: var(--sq-accent);
  border: 3px solid var(--pw-navy);
  border-radius: 6px;
  overflow: hidden;
  transition: background var(--pw-dur-default) var(--pw-ease);
  box-shadow: 6px 6px 0 var(--pw-navy);
}
.product-stage::before,
.product-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.product-stage::before { width: 38%; height: 38%; top: -8%; right: -8%; }
.product-stage::after  { width: 22%; height: 22%; bottom: 10%; left: 8%; }

.product-img {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.product-img img {
  max-width: 88%;
  max-height: 88%;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
  animation: float 4s ease-in-out infinite;
  transform-origin: center;
  transition: opacity var(--pw-dur-default) var(--pw-ease);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

.stage-corner-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--pw-navy);
  color: var(--pw-cream);
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 2px;
}
.stage-corner-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--pw-cream);
  color: var(--pw-navy);
  font-family: var(--pw-font-display);
  font-size: 22px;
  padding: 8px 14px;
  border-radius: 2px;
  border: 2px solid var(--pw-navy);
  transform: rotate(4deg);
}

/* bubble cluster */
.bubbles { position: absolute; pointer-events: none; }
.bubbles i {
  display: block;
  background: rgba(255,255,255,0.35);
  border: 2px solid var(--pw-navy);
  border-radius: 50%;
  position: absolute;
  animation: bubble 5s ease-in-out infinite;
}
@keyframes bubble {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 0.7; }
  100% { transform: translateY(-120px); opacity: 0; }
}

/* hero variant picker (compact, sits below stage) */
.hero-variants {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.variant-chip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 2px solid var(--pw-navy);
  background: var(--pw-cream);
  border-radius: 2px;
  text-align: left;
  transition: transform var(--pw-dur-instant) var(--pw-ease),
              box-shadow var(--pw-dur-instant) var(--pw-ease),
              background var(--pw-dur-instant) var(--pw-ease);
}
.variant-chip:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--pw-navy); }
.variant-chip.is-active { background: var(--pw-navy); color: var(--pw-cream); box-shadow: 4px 4px 0 var(--sq-accent); }
.variant-chip.is-soldout { opacity: 0.45; cursor: not-allowed; }
.variant-chip-swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--pw-navy);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.variant-chip-swatch::after { content: ""; position: absolute; top: 4px; left: 6px; width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.variant-chip-meta {
  display: flex; flex-direction: column;
}
.variant-chip-meta b {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.variant-chip-meta small {
  font-family: var(--pw-font-body);
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.5px;
}

/* ---------- section header ---------- */
.section { padding: 96px 0; position: relative; }
.section--dark { background: var(--pw-navy); color: var(--pw-cream); }
.section--accent { background: var(--sq-accent); transition: background var(--pw-dur-default) var(--pw-ease); }
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: inherit;
  margin-top: 16px;
}
.section-head h2 .marker {
  font-family: var(--pw-font-display);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--sq-accent-deep);
  transition: color var(--pw-dur-fast) var(--pw-ease);
  display: inline-block;
  transform: translateY(4px);
}
.section-head p {
  font-family: var(--pw-font-body);
  font-size: 17px;
  color: var(--pw-text-muted);
  max-width: 500px;
  margin: 18px auto 0;
  line-height: 1.55;
}
.section--dark .section-head p { color: var(--pw-text-muted-dark); }

/* ---------- stock counter grid ---------- */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stock-card {
  border: 3px solid var(--pw-navy);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 90% 80% at 110% 50%, color-mix(in srgb, var(--col-accent) 38%, transparent) 0%, transparent 60%),
    var(--pw-cream);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: transform var(--pw-dur-instant) var(--pw-ease), box-shadow var(--pw-dur-instant) var(--pw-ease);
  cursor: pointer;
}
.stock-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--pw-navy); }
.stock-card:hover .stock-macro img { transform: scale(1.04) rotate(-2deg); }
.stock-card.is-active { box-shadow: 6px 6px 0 var(--col-accent, var(--sq-accent)); transform: translate(-2px, -2px); }
.stock-card.is-soldout { opacity: 0.55; cursor: not-allowed; }
.stock-card.is-soldout:hover { transform: none; box-shadow: none; }

.stock-macro {
  position: absolute;
  top: -20%;
  right: -28%;
  width: 95%;
  height: 145%;
  pointer-events: none;
  z-index: 0;
}
.stock-macro img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.18));
  transform-origin: center;
  transition: transform var(--pw-dur-default) var(--pw-ease);
  animation: macroBob 6s ease-in-out infinite;
}
@keyframes macroBob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-8px) rotate(1.5deg); }
}

.stock-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  max-width: 65%;
}

.stock-name {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1;
}
.stock-tag {
  font-family: var(--pw-font-display);
  font-size: 17px;
  color: var(--col-deep, var(--sq-accent-deep));
  margin-top: 8px;
  letter-spacing: 0;
  line-height: 1.1;
  transform: rotate(-1.5deg);
  display: inline-block;
  max-width: 95%;
}
.stock-count {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
  margin-top: 22px;
}
.stock-count b {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  color: var(--pw-navy);
  font-size: 26px;
  letter-spacing: -0.8px;
  margin-right: 4px;
}
.stock-bar {
  margin-top: 12px;
  height: 8px;
  background: rgba(13,28,44,0.08);
  border-radius: 2px;
  overflow: hidden;
  border: 1.5px solid var(--pw-navy);
  max-width: 240px;
}
.stock-bar i {
  display: block;
  height: 100%;
  background: var(--col-accent, var(--sq-accent));
  transition: width var(--pw-dur-default) var(--pw-ease);
}
.stock-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--pw-lime);
  color: var(--pw-navy);
  border: 2px solid var(--pw-navy);
  border-radius: 2px;
}
.stock-badge.low { background: var(--sq-pink); color: var(--pw-cream); }
.stock-badge.out { background: var(--pw-navy); color: var(--pw-cream); }

.stock-foot {
  text-align: center;
  margin-top: 36px;
  font-family: var(--pw-font-display);
  font-size: 22px;
  color: var(--pw-navy);
  opacity: 0.75;
}

/* ---------- the squish (story) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -2px;
}
.story-text h2 .marker {
  font-family: var(--pw-font-display);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--pw-navy);
  display: inline-block;
  transform: translateY(4px);
}
.story-text p {
  font-family: var(--pw-font-body);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 20px;
  color: var(--pw-text);
  max-width: 460px;
}
.story-text p + p { margin-top: 14px; }
.story-text .pullquote {
  font-family: var(--pw-font-display);
  font-size: 30px;
  line-height: 1.1;
  margin-top: 24px;
  color: var(--sq-accent-deep);
  transition: color var(--pw-dur-fast) var(--pw-ease);
  max-width: 420px;
}
.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--pw-navy);
  border-radius: 4px;
  background: var(--sq-accent);
  overflow: hidden;
  transition: background var(--pw-dur-default) var(--pw-ease);
  box-shadow: 8px 8px 0 var(--pw-navy);
}
.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
}
.story-tape {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--pw-cream);
  border: 2px solid var(--pw-navy);
  padding: 8px 14px;
  font-family: var(--pw-font-display);
  font-size: 20px;
  transform: rotate(-3deg);
}

/* ---------- why the hype (bullets) ---------- */
.hype-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--pw-cream);
  border-bottom: 2px solid var(--pw-cream);
}
.hype-cell {
  padding: 36px 24px;
  border-right: 2px solid var(--pw-cream);
}
.hype-cell:last-child { border-right: none; }
.hype-cell .num {
  font-family: var(--pw-font-display);
  font-size: 36px;
  color: var(--pw-lime);
  line-height: 1;
}
.hype-cell h3 {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--pw-cream);
}
.hype-cell p {
  font-family: var(--pw-font-body);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 10px;
  color: var(--pw-text-muted-dark);
}

/* ---------- squish feature band ---------- */
.squish-band {
  background: var(--pw-cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.squish-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(155,107,216,0.18), transparent 60%);
  pointer-events: none;
}
.squish-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.squish-photo {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
}
.squish-photo img {
  max-width: 92%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25)) drop-shadow(0 0 60px rgba(155,107,216,0.25));
  animation: squishPulse 4.5s ease-in-out infinite;
}
@keyframes squishPulse {
  0%, 100% { transform: scale(1) rotate(-1deg); }
  50%      { transform: scale(0.97) rotate(1deg); }
}
.squish-text h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin-top: 18px;
}
.squish-text h2 .marker {
  font-family: var(--pw-font-display);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--sq-purple);
  display: inline-block;
  transform: translateY(4px);
}
.squish-text p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--pw-text-muted);
  max-width: 440px;
}
.squish-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.squish-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid var(--pw-navy);
  border-radius: 100px;
  font-family: var(--pw-font-subhead);
}
.squish-list li span {
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--pw-text-muted);
}
.squish-list li b {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.3px;
  color: var(--pw-navy);
}
@media (max-width: 900px) {
  .squish-grid { grid-template-columns: 1fr; gap: 32px; }
  .squish-photo { aspect-ratio: 4 / 5; order: -1; }
}

/* ---------- stretch feature band ---------- */
.stretch-band {
  background: var(--pw-navy);
  color: var(--pw-cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.stretch-band::before {
  /* soft pink glow behind the photo */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(242,106,173,0.18), transparent 60%);
  pointer-events: none;
}
.stretch-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.stretch-photo {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
}
.stretch-photo img {
  max-width: 95%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 80px rgba(242,106,173,0.25));
  animation: stretchSway 6s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes stretchSway {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1.5deg); }
}
.stretch-text h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin-top: 18px;
  color: var(--pw-cream);
}
.stretch-text h2 .marker {
  font-family: var(--pw-font-display);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--sq-pink);
  display: inline-block;
  transform: translateY(4px);
}
.stretch-text p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
}
.stretch-list {
  list-style: none;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: grid;
  gap: 14px;
}
.stretch-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--pw-font-subhead);
}
.stretch-list li:last-child { border-bottom: none; padding-bottom: 0; }
.stretch-list li span {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stretch-list li b {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--pw-cream);
}
@media (max-width: 900px) {
  .stretch-grid { grid-template-columns: 1fr; gap: 32px; }
  .stretch-photo { aspect-ratio: 4 / 5; }
}

/* ---------- pricing — editorial table style ---------- */
.pricing-table {
  border-top: 2px solid var(--pw-navy);
  border-bottom: 2px solid var(--pw-navy);
}
.price-row {
  display: grid;
  grid-template-columns: 110px 1fr 220px auto;
  gap: 36px;
  align-items: center;
  padding: 32px 18px;
  border-bottom: 1px solid rgba(13,28,44,0.16);
  transition: background var(--pw-dur-instant) var(--pw-ease);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(13,28,44,0.025); }
.price-row .pr-qty {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -2.5px;
  color: var(--pw-navy);
}
.price-row .pr-qty small {
  display: block;
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
  margin-top: 10px;
}
.price-row .pr-desc {
  font-family: var(--pw-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--pw-text-muted);
  max-width: 380px;
}
.price-row .pr-desc b {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  color: var(--pw-navy);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.price-row .pr-price {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -2.5px;
  color: var(--pw-navy);
  text-align: right;
}
.price-row .pr-price small {
  display: block;
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
  margin-top: 10px;
}
.price-row .pr-buy {
  padding: 16px 26px;
  border: 2px solid var(--pw-navy);
  background: transparent;
  color: var(--pw-navy);
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--pw-dur-instant) var(--pw-ease);
  white-space: nowrap;
}
.price-row .pr-buy:hover { background: var(--pw-navy); color: var(--pw-cream); }

.price-row.is-featured {
  background: var(--pw-navy);
  color: var(--pw-cream);
  margin: 0 -18px;
  padding-left: 36px;
  padding-right: 36px;
  border-bottom: none;
}
.price-row.is-featured:hover { background: var(--pw-navy); }
.price-row.is-featured .pr-qty,
.price-row.is-featured .pr-price { color: var(--pw-cream); }
.price-row.is-featured .pr-price { color: var(--sq-accent); transition: color var(--pw-dur-fast) var(--pw-ease); }
.price-row.is-featured .pr-qty small,
.price-row.is-featured .pr-price small { color: rgba(255,255,255,0.6); }
.price-row.is-featured .pr-desc { color: rgba(255,255,255,0.7); }
.price-row.is-featured .pr-desc b { color: var(--pw-cream); }
.price-row.is-featured .pr-buy {
  background: var(--sq-accent);
  border-color: var(--sq-accent);
  color: var(--pw-navy);
}
.price-row.is-featured .pr-buy:hover { background: var(--pw-cream); border-color: var(--pw-cream); }

.pricing-foot {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--pw-font-subhead);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
}
.pricing-foot .stamp {
  font-family: var(--pw-font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pw-navy);
  transform: rotate(-2deg);
  display: inline-block;
}

@media (max-width: 720px) {
  .price-row {
    grid-template-columns: auto 1fr;
    gap: 16px 20px;
    padding: 24px 14px;
  }
  .price-row .pr-desc { grid-column: 1 / -1; max-width: none; }
  .price-row .pr-price { grid-column: 1; text-align: left; font-size: 44px; }
  .price-row .pr-buy { grid-column: 2; justify-self: end; }
  .price-row .pr-qty { font-size: 48px; }
  .price-row.is-featured { margin: 0; padding-left: 14px; padding-right: 14px; }
}

/* ---------- pricing tiers (LEGACY — kept for fallback) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tier {
  border: 3px solid var(--pw-navy);
  border-radius: 4px;
  background: var(--pw-cream);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--pw-dur-instant) var(--pw-ease), box-shadow var(--pw-dur-instant) var(--pw-ease);
}
.tier:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--sq-accent); }
.tier.is-featured { background: var(--pw-navy); color: var(--pw-cream); box-shadow: 6px 6px 0 var(--sq-accent); }
.tier.is-featured .tier-price { color: var(--pw-cream); }
.tier-tag {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sq-accent-deep);
}
.tier.is-featured .tier-tag { color: var(--pw-lime); }
.tier-name {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -1px;
  line-height: 1;
}
.tier-price {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--pw-navy);
}
.tier-price .cents { font-size: 24px; opacity: 0.65; }
.tier-meta {
  font-family: var(--pw-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--pw-text-muted);
}
.tier.is-featured .tier-meta { color: var(--pw-text-muted-dark); }
.tier .btn { align-self: flex-start; margin-top: auto; }
.tier-badge {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--pw-lime);
  color: var(--pw-navy);
  border: 2px solid var(--pw-navy);
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  transform: rotate(3deg);
}

/* ---------- delivery ---------- */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.delivery-card {
  border: 3px solid var(--pw-navy);
  border-radius: 4px;
  padding: 32px;
  background: var(--pw-cream);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.delivery-card .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--pw-navy);
  background: var(--sq-accent);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--pw-font-display);
  font-size: 22px;
}
.delivery-card.is-free .icon { background: var(--pw-lime); }
.delivery-card h3 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.5px;
  line-height: 1;
}
.delivery-card p {
  font-family: var(--pw-font-body);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
  color: var(--pw-text-muted);
}

/* ---------- care steps ---------- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.care-step {
  border: 3px solid var(--pw-navy);
  border-radius: 4px;
  background: var(--pw-cream);
  padding: 28px 24px 24px;
  position: relative;
}
.care-step .num {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--sq-accent-deep);
  transition: color var(--pw-dur-fast) var(--pw-ease);
}
.care-step h3 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-top: 6px;
}
.care-step p {
  font-family: var(--pw-font-body);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  color: var(--pw-text-muted);
}
.care-step .arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 28px; height: 28px;
  background: var(--pw-navy);
  color: var(--pw-cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--pw-font-body);
  font-weight: 700;
  z-index: 2;
}
.care-step:last-child .arrow { display: none; }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 2px solid var(--pw-navy);
}
.faq-item {
  border-bottom: 2px solid var(--pw-navy);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--pw-navy);
  gap: 24px;
}
.faq-q .plus {
  width: 32px; height: 32px;
  border: 2px solid var(--pw-navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--pw-font-body);
  font-size: 20px;
  font-weight: 500;
  transition: transform var(--pw-dur-fast) var(--pw-ease), background var(--pw-dur-fast) var(--pw-ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: var(--sq-accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--pw-dur-default) var(--pw-ease);
}
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding-bottom: 22px;
  font-family: var(--pw-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--pw-text-muted);
  max-width: 640px;
}
.faq-a-inner p + p { margin-top: 10px; }

/* ---------- email capture ---------- */
.email-band {
  background: var(--pw-lime);
  padding: 64px 0;
  border-top: 3px solid var(--pw-navy);
  border-bottom: 3px solid var(--pw-navy);
  text-align: center;
}
.email-band h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1.5px;
  line-height: 1;
}
.email-band p {
  font-family: var(--pw-font-body);
  font-size: 15px;
  color: var(--pw-text-muted);
  margin: 14px auto 28px;
  max-width: 460px;
}
.email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--pw-navy);
  background: var(--pw-cream);
  border-radius: 2px;
  font-family: var(--pw-font-body);
  font-size: 15px;
  color: var(--pw-navy);
  outline: none;
}
.email-form input:focus { box-shadow: 3px 3px 0 var(--pw-navy); }

/* ---------- sticky buy bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--pw-navy);
  color: var(--pw-cream);
  border-top: 3px solid var(--pw-lime);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateY(110%);
  transition: transform var(--pw-dur-default) var(--pw-ease);
}
.sticky-bar.is-shown { transform: translateY(0); }
.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-bar-swatch {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sq-accent);
  border: 2px solid var(--pw-cream);
  transition: background var(--pw-dur-fast) var(--pw-ease);
}
.sticky-bar-meta {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
.sticky-bar-meta b {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.sticky-bar-meta small {
  font-family: var(--pw-font-subhead);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted-dark);
}
.sticky-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-toggle {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.qty-toggle button {
  padding: 10px 14px;
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pw-cream);
  background: transparent;
  white-space: nowrap;
}
.qty-toggle button.is-active { background: var(--pw-lime); color: var(--pw-navy); }

.sticky-bar .btn {
  background: var(--pw-lime);
  color: var(--pw-navy);
  border-color: var(--pw-navy);
}
.sticky-bar .btn:hover { background: var(--pw-cream); }

/* ---------- footer ---------- */
.footer {
  background: var(--pw-navy);
  color: var(--pw-cream);
  padding: 72px 0 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.footer-brand .brand { color: var(--pw-cream); font-size: 34px; }
.footer-brand p {
  font-family: var(--pw-font-body);
  font-size: 14px;
  margin-top: 14px;
  color: var(--pw-text-muted-dark);
  max-width: 280px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pw-lime);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-family: var(--pw-font-body);
  font-size: 14px;
  color: var(--pw-text-on-dark);
  margin: 6px 0;
  transition: color var(--pw-dur-instant) var(--pw-ease);
}
.footer-col a:hover { color: var(--sq-accent); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-family: var(--pw-font-subhead);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted-dark);
}

/* ---------- checkout modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 28, 44, 0.7);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fade 200ms ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: min(640px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--pw-cream);
  border: 3px solid var(--pw-navy);
  border-radius: 4px;
  box-shadow: 10px 10px 0 var(--sq-accent);
  position: relative;
}
.modal-head {
  padding: 28px 32px 18px;
  border-bottom: 2px solid var(--pw-navy);
  position: relative;
}
.modal-head .eyebrow { color: var(--sq-accent-deep); }
.modal-head h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1;
  margin-top: 8px;
}
.modal-head .close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--pw-navy);
  background: var(--pw-cream);
  display: grid; place-items: center;
  font-size: 18px;
}
.modal-body { padding: 24px 32px 32px; }
.modal-section { margin-bottom: 22px; }
.modal-section > label {
  display: block;
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
  margin-bottom: 8px;
}
.field {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--pw-navy);
  background: var(--pw-cream);
  font-family: var(--pw-font-body);
  font-size: 15px;
  color: var(--pw-navy);
  outline: none;
  border-radius: 2px;
}
.field:focus { box-shadow: 3px 3px 0 var(--sq-accent); }
.field--error { border-color: var(--sq-pink); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-error {
  font-family: var(--pw-font-body);
  font-size: 12px;
  color: var(--sq-pink);
  margin-top: 4px;
}
.colour-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.colour-pick button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 2px solid var(--pw-navy);
  background: var(--pw-cream);
  font-family: var(--pw-font-subhead);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
}
.colour-pick button .sw {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--pw-navy);
}
.colour-pick button.is-active { background: var(--pw-navy); color: var(--pw-cream); box-shadow: 3px 3px 0 var(--sq-accent); }
.colour-pick button[disabled] { opacity: 0.4; cursor: not-allowed; }

.qty-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.qty-pick--3 { grid-template-columns: 1fr 1fr 1fr; }
.qty-pick button {
  border: 2px solid var(--pw-navy);
  background: var(--pw-cream);
  padding: 14px 16px;
  border-radius: 2px;
  text-align: left;
  font-family: var(--pw-font-body);
}
.qty-pick button b {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  display: block;
}
.qty-pick button small {
  font-family: var(--pw-font-subhead);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pw-text-muted);
}
.qty-pick button.is-active { background: var(--pw-navy); color: var(--pw-cream); box-shadow: 3px 3px 0 var(--sq-accent); }
.qty-pick button.is-active small { color: var(--pw-lime); }

.totals {
  margin-top: 18px;
  padding: 18px;
  background: var(--pw-navy);
  color: var(--pw-cream);
  border-radius: 2px;
  font-family: var(--pw-font-body);
}
.totals-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.totals-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
  align-items: baseline;
}

.success-state {
  padding: 56px 32px;
  text-align: center;
}
.success-state .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pw-lime);
  border: 3px solid var(--pw-navy);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-size: 36px;
}
.success-state h2 {
  font-family: var(--pw-font-subhead);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1;
}
.success-state p {
  font-family: var(--pw-font-body);
  font-size: 15px;
  color: var(--pw-text-muted);
  margin-top: 14px;
}

/* ---------- scribble ---------- */
.scribble {
  position: absolute;
  pointer-events: none;
}
.scribble svg { width: 100%; height: 100%; stroke: var(--pw-navy); fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stock-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .care-step .arrow { display: none; }
  .delivery-grid { grid-template-columns: 1fr; }
  .hype-grid { grid-template-columns: 1fr 1fr; }
  .hype-cell { border-right: 2px solid var(--pw-cream); border-bottom: 2px solid var(--pw-cream); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .nav-meta .stock-dots { display: none; }
  .hero { padding: 32px 0 56px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hype-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-chunk { font-size: 28px; }
  .sticky-bar { flex-wrap: wrap; gap: 10px; }
  .sticky-bar-right { width: 100%; justify-content: space-between; }
}

/* ---------- a11y helpers ---------- */
.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;
}
