/* ==========================================================================
   Uptown Candy Shop — landing theme
   Brand tokens sampled from the client's own logo (teal / magenta / coral).
   Style direction: "Vibrant & Block-based" per design-system/uptown-candy-shop/MASTER.md
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600..900&family=Jost:wght@300..700&display=swap');

/* ---------- tokens ---------- */
:root {
  /* brand — sampled from logo */
  --teal:        #12707F;
  --teal-deep:   #0A4A56;
  --teal-ink:    #06333C;
  --magenta:     #C4358A;
  --magenta-ink: #A82A73;   /* text-on-light variant — #C4358A only clears 4.29:1 on cream */
  --pink:        #F07EC4;
  --pink-soft:   #FFD3EE;
  --coral:       #F05B45;   /* decorative only */
  --coral-deep:  #C93E2B;   /* any coral carrying white text */
  --butter:      #FFC94D;
  --mint:        #4FD1B0;

  /* surfaces */
  --cream:       #FFF6EF;
  --cream-deep:  #FDEBDD;
  --white:       #FFFFFF;
  --ink:         #23131F;
  --ink-soft:    #5B4753;
  --line:        #EBD9CC;

  /* semantic */
  --bg:          var(--cream);
  --fg:          var(--ink);
  --muted:       var(--ink-soft);
  --accent:      var(--magenta);

  /* type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', system-ui, sans-serif;

  /* spacing */
  --sp-xs: .25rem; --sp-sm: .5rem;  --sp-md: 1rem;
  --sp-lg: 1.5rem; --sp-xl: 2rem;   --sp-2xl: 3rem;
  --sp-3xl: 4rem;  --sp-4xl: 6rem;

  /* radius + depth */
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-pill: 999px;
  --sh-sm: 0 2px 8px rgba(35,19,31,.07);
  --sh-md: 0 10px 30px rgba(35,19,31,.10);
  --sh-lg: 0 24px 60px rgba(35,19,31,.16);
  --sh-pop: 0 18px 40px rgba(196,53,138,.28);

  --ease: cubic-bezier(.22,.68,.35,1);
  --dur: 260ms;

  --wrap: 1200px;
  --wrap-narrow: 860px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 var(--sp-md);
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}
p { margin: 0 0 var(--sp-md); }
:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}
.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;
}
.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 999; background: var(--ink); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: .8125rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--magenta-ink); margin-bottom: var(--sp-md);
}
.eyebrow::before {
  content: ''; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--magenta));
}
.eyebrow--light { color: var(--pink); }

.h1 { font-size: clamp(2.75rem, 7.2vw, 5rem); }
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.lede { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 56ch; }
.lede--light { color: rgba(255,255,255,.78); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--primary { background: var(--magenta); color: #fff; box-shadow: var(--sh-pop); }
.btn--primary:hover { background: #A82A73; transform: translateY(-2px); }
.btn--coral { background: var(--coral-deep); color: #fff; box-shadow: 0 18px 40px rgba(201,62,43,.3); }
.btn--coral:hover { background: #A93124; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: currentColor; }
.btn--ghost:hover { background: var(--fg); color: var(--cream); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.42); }
.btn--ghost-light:hover { background: #fff; color: var(--teal-ink); border-color: #fff; transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .9375rem; }
.btn--block { width: 100%; }

/* ---------- announcement marquee ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: .875rem;
  overflow: hidden;
  position: relative;
}
.marquee { display: flex; width: max-content; }
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  padding: .6rem 1.25rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.marquee__track span { display: inline-flex; align-items: center; gap: .5rem; }
.marquee__track b { color: var(--butter); font-weight: 600; }
.marquee__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.topbar:hover .marquee__track { animation-play-state: paused; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,246,239,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.header.is-stuck { box-shadow: var(--sh-sm); border-bottom-color: var(--line); }
.header__inner {
  display: flex; align-items: center; gap: var(--sp-lg);
  padding-block: .7rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex: none; }
.brand img { height: 62px; width: auto; }
.nav { margin-left: auto; }
.nav__list {
  display: flex; align-items: center; gap: 1.6rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__list a {
  text-decoration: none; font-weight: 500; font-size: .9875rem;
  padding: .35rem 0; position: relative; color: var(--fg);
  transition: color var(--dur) var(--ease);
}
.nav__list a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--magenta); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__list a:hover { color: var(--magenta); }
.nav__list a:hover::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: .75rem; flex: none; }
.header__tel {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; font-weight: 600; font-size: .9375rem;
  color: var(--teal); white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.header__tel:hover { color: var(--magenta); }
.header__tel svg { width: 18px; height: 18px; }

.burger {
  display: none; background: transparent; border: 0; padding: .625rem;
  border-radius: var(--r-sm); color: var(--fg);
  min-width: 44px; min-height: 44px;   /* keep the tap target at the 44px minimum */
}
.burger svg { width: 26px; height: 26px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  /* Glows are kept to the right/edges so the headline always sits on deep teal. */
  background:
    radial-gradient(44% 48% at 86% 14%, rgba(196,53,138,.52) 0%, transparent 70%),
    radial-gradient(34% 34% at 99% 46%, rgba(240,91,69,.26) 0%, transparent 72%),
    radial-gradient(46% 40% at 78% 104%, rgba(79,209,176,.24) 0%, transparent 70%),
    radial-gradient(54% 50% at 0% 6%,   rgba(18,112,127,.60) 0%, transparent 74%),
    linear-gradient(168deg, #0B5462 0%, #073942 55%, #05303A 100%);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 9vw, 7rem);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .35; mask-image: linear-gradient(180deg, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { color: #fff; margin-bottom: var(--sp-lg); }
.hero h1 em {
  font-style: normal; display: block;
  background: linear-gradient(100deg, var(--butter) 5%, var(--pink) 48%, var(--coral) 92%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: var(--sp-xl); }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-lg);
  list-style: none; padding: 0;
}
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .38rem .85rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .8125rem; font-weight: 500; letter-spacing: .02em;
  backdrop-filter: blur(6px);
}
.chip svg { width: 14px; height: 14px; color: var(--butter); }

/* hero collage */
.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.collage__tile {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-lg);
  aspect-ratio: 1;
  will-change: transform;
}
.collage__tile img { width: 100%; height: 100%; object-fit: cover; }
.collage__tile:nth-child(1) { border-radius: var(--r-lg) var(--r-md) var(--r-md) var(--r-md); }
.collage__tile:nth-child(2) { transform: translateY(-1.4rem); }
.collage__tile:nth-child(3) { border-radius: var(--r-md) var(--r-lg) var(--r-md) var(--r-md); transform: translateY(.6rem); }
.collage__tile:nth-child(5) { transform: translateY(-1.4rem); }
.collage__tile:nth-child(6) { transform: translateY(.6rem); }
.collage__tile:nth-child(7) { border-radius: var(--r-md) var(--r-md) var(--r-md) var(--r-lg); }
.collage__tile:nth-child(9) { border-radius: var(--r-md) var(--r-md) var(--r-lg) var(--r-md); transform: translateY(.6rem); }

.collage__badge {
  position: absolute; z-index: 3;
  background: var(--butter); color: var(--ink);
  font-family: var(--font-display); font-weight: 800;
  font-size: .9375rem; line-height: 1.15; text-align: center;
  padding: .8rem 1rem; border-radius: var(--r-pill);
  box-shadow: var(--sh-lg);
  transform: rotate(-9deg);
}
.collage__badge--a { top: -1.1rem; right: 6%; }
.collage__badge--b {
  bottom: -1.2rem; left: -1rem; transform: rotate(7deg);
  background: var(--coral-deep); color: #fff;
}
.collage__badge small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .75rem; opacity: .85; }

/* floating animation */
.float { animation: float 7s var(--ease) infinite; }
.float--b { animation-duration: 8.5s; animation-delay: -2s; }
.float--c { animation-duration: 9.5s; animation-delay: -4s; }
@keyframes float {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -10px; }
}

/* ---------- trust strip ---------- */
.trust {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg); padding-block: var(--sp-xl);
  text-align: center;
}
.trust__item strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1; color: var(--teal);
  margin-bottom: .3rem;
}
.trust__item span { font-size: .875rem; color: var(--muted); letter-spacing: .03em; }
.trust__item + .trust__item { border-left: 1px solid var(--line); }

/* ---------- locations ---------- */
.stores { background: var(--cream); }
.stores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg);
}
.store {
  position: relative; display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.store:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--pink); }
.store__flag {
  position: absolute; top: -.7rem; right: 1.4rem;
  background: var(--coral-deep); color: #fff;
  font-size: .6875rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.store__flag--teal { background: var(--teal); }
.store__flag--magenta { background: var(--magenta); }
.store__kicker {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: .35rem;
}
.store h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.store__meta { list-style: none; margin: 0 0 var(--sp-lg); padding: 0; display: grid; gap: .65rem; }
.store__meta li { display: flex; gap: .65rem; font-size: .9375rem; line-height: 1.5; color: var(--ink-soft); }
.store__meta svg { width: 18px; height: 18px; flex: none; color: var(--teal); margin-top: .18rem; }
.store__meta a { color: var(--teal); font-weight: 600; text-decoration: none; }
.store__meta a:hover { color: var(--magenta); text-decoration: underline; }
.store__actions { margin-top: auto; display: flex; gap: .6rem; flex-wrap: wrap; }
.store__actions .btn { flex: 1 1 auto; }

.store--placeholder {
  background: repeating-linear-gradient(135deg, rgba(196,53,138,.05) 0 12px, transparent 12px 24px), var(--white);
  border-style: dashed; border-color: var(--pink); border-width: 2px;
}
.store--placeholder .store__note {
  font-size: .875rem; color: #8E2260; font-weight: 500;
  background: var(--pink-soft); border-radius: var(--r-sm);
  padding: .7rem .9rem; margin-bottom: var(--sp-lg);
}

/* ---------- categories bento ---------- */
.cats { background: var(--white); }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: var(--sp-md);
}
.cat {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  text-decoration: none; color: #fff; display: flex; align-items: flex-end;
  padding: var(--sp-lg);
  background: var(--teal-deep);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cat img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 600ms var(--ease);
}
.cat::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,51,60,0) 34%, rgba(6,51,60,.62) 68%, rgba(6,51,60,.94) 100%);
  transition: background var(--dur) var(--ease);
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.cat:hover img { transform: scale(1.07); }
.cat:hover::after { background: linear-gradient(180deg, rgba(196,53,138,.28) 10%, rgba(6,51,60,.9) 100%); }
.cat__label { position: relative; z-index: 2; }
.cat__label strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; line-height: 1.15; margin-bottom: .15rem;
}
.cat__label span { font-size: .8125rem; opacity: .82; }
.cat--wide { grid-column: span 2; }
.cat--tall { grid-row: span 2; }

/* ---------- feature split ---------- */
.feature { background: var(--cream-deep); }
.feature__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.feature__media { position: relative; }
/* Product shots are cut-outs on white — sit them on a tinted panel and contain
   them so they read as a showcase instead of a floating blob. */
.feature__media img {
  width: 100%; border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); aspect-ratio: 4/3.4;
  object-fit: contain;
  padding: clamp(.5rem, 1.4vw, 1.1rem);
  background:
    radial-gradient(70% 70% at 30% 20%, #fff 0%, transparent 70%),
    linear-gradient(145deg, var(--pink-soft) 0%, #FFFDFB 55%, var(--cream-deep) 100%);
}
.feature__sticker {
  position: absolute; right: -1rem; bottom: -1.5rem;
  background: var(--white); border-radius: var(--r-lg);
  padding: 1rem 1.25rem; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: .8rem;
  max-width: 260px;
}
.feature__sticker svg { width: 34px; height: 34px; color: var(--magenta); flex: none; }
.feature__sticker strong { display: block; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; }
.feature__sticker span { font-size: .8125rem; color: var(--muted); }
.feature--flip .feature__media { order: 2; }

.ticks { list-style: none; margin: var(--sp-lg) 0 0; padding: 0; display: grid; gap: .8rem; }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1rem; }
.ticks svg { width: 22px; height: 22px; color: var(--mint); flex: none; margin-top: .18rem; }

/* ---------- steps ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-xl);
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -.4rem; right: 1rem;
  font-family: var(--font-display); font-weight: 900;
  font-size: 5.25rem; line-height: 1; color: var(--pink-soft);
  z-index: 0;
}
.step > * { position: relative; z-index: 1; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { margin: 0; font-size: .9375rem; color: var(--muted); }

/* ---------- reviews ---------- */
.reviews { background: var(--teal-ink); color: #fff; }
.reviews h2 { color: #fff; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg);
}
.review {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: var(--sp-xl);
  display: flex; flex-direction: column;
  backdrop-filter: blur(6px);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.review:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); }
.review__stars { display: flex; gap: .15rem; margin-bottom: var(--sp-md); }
.review__stars svg { width: 18px; height: 18px; color: var(--butter); }
.review p { font-size: .9875rem; line-height: 1.62; color: rgba(255,255,255,.86); }
.review__by {
  margin-top: auto; padding-top: var(--sp-md); display: flex; align-items: center; gap: .7rem;
  border-top: 1px solid rgba(255,255,255,.13);
}
.review__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff;
  background: linear-gradient(140deg, var(--magenta), var(--coral));
}
.review__by strong { display: block; font-size: .9375rem; }
.review__by span { font-size: .8125rem; color: rgba(255,255,255,.6); }

/* ---------- story ---------- */
.story__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__media img {
  border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--teal-ink);
}
.quote {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.4;
  color: var(--teal); border-left: 4px solid var(--pink);
  padding-left: var(--sp-lg); margin: var(--sp-lg) 0 0;
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__list { display: grid; gap: .75rem; }
.faq__item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--cream); overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item[open] { border-color: var(--pink); box-shadow: var(--sh-sm); background: var(--white); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md);
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  transition: color var(--dur) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--magenta); }
.faq__q svg {
  width: 22px; height: 22px; flex: none; color: var(--magenta);
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__q svg { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .9875rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--magenta) 0%, #C93F72 46%, var(--coral-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: -40% -10%;
  background-image: radial-gradient(rgba(255,255,255,.22) 1.5px, transparent 1.5px);
  background-size: 34px 34px; opacity: .5;
}
.cta-band__inner { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: #fff; }
/* Full white, not .9 — at the magenta end of the gradient .9 drops to ~4.0:1. */
.cta-band .lede { color: #fff; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: var(--sp-xl); }
.btn--white { background: #fff; color: var(--magenta); box-shadow: var(--sh-md); }
.btn--white:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: var(--sp-3xl) var(--sp-xl); font-size: .9375rem; }
.footer h4 {
  font-family: var(--font-body); font-weight: 600; font-size: .8125rem;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-md);
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-2xl); }
/* The logo is a colour lockup with dark grey type — sit it on white so the
   brand colours survive the dark footer instead of flattening to a silhouette. */
.footer__brand img {
  height: 92px; width: auto; margin-bottom: var(--sp-lg);
  background: #fff; border-radius: var(--r-md);
  padding: .7rem 1.1rem; box-sizing: content-box;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--pink); }
.footer__nap { display: grid; gap: .9rem; }
.footer__nap li strong { color: #fff; display: block; font-weight: 600; }
.footer__nap li span { font-size: .875rem; }
.socials { display: flex; gap: .6rem; margin-top: var(--sp-md); }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.09);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.socials a:hover { background: var(--magenta); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; color: #fff; }
.footer__bottom {
  margin-top: var(--sp-2xl); padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: space-between;
  font-size: .8125rem; color: rgba(255,255,255,.5);
}

/* demo ribbon */
.demo-note {
  background: var(--butter); color: var(--ink);
  text-align: center; font-size: .8125rem; font-weight: 500;
  padding: .55rem 1rem;
}

/* ---------- scroll reveal ----------
   Content is visible by default. JS opts in by adding .reveal-on to <html>,
   and a failsafe removes it again so nothing can stay blank. */
.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-on [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .collage { max-width: 520px; margin-inline: auto; }
  .cats__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 175px; }
  .cat--tall { grid-row: span 1; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Single column — keep every glow clear of the headline. */
  .hero {
    background:
      radial-gradient(58% 26% at 96% 96%, rgba(196,53,138,.48) 0%, transparent 72%),
      radial-gradient(50% 22% at 4% 100%, rgba(79,209,176,.22) 0%, transparent 72%),
      radial-gradient(70% 34% at 0% 2%,   rgba(18,112,127,.55) 0%, transparent 74%),
      linear-gradient(172deg, #0B5462 0%, #073942 55%, #05303A 100%);
  }
  .nav { display: none; }
  .burger { display: block; margin-left: auto; }
  .header__cta .btn { display: none; }
  .header__inner { gap: var(--sp-md); }

  .nav.is-open {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md); padding: var(--sp-md) 1.25rem var(--sp-lg);
  }
  .nav.is-open .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open .nav__list li + li { border-top: 1px solid var(--line); }
  .nav.is-open .nav__list a { display: block; padding: .9rem 0; font-size: 1.0625rem; }
  .nav.is-open .nav__list a::after { display: none; }

  .feature__grid, .story__grid { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
  .feature__sticker { right: 1rem; bottom: -1rem; }
  .steps__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item:nth-child(odd) { border-left: 0; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .wrap, .wrap-narrow { width: min(100% - 2rem, var(--wrap)); }
  .brand img { height: 44px; }
  .hero__cta .btn { width: 100%; }
  .collage { gap: .55rem; }
  .collage__tile:nth-child(2),
  .collage__tile:nth-child(5) { transform: translateY(-.7rem); }
  .collage__badge--a { right: 2%; font-size: .8125rem; padding: .6rem .8rem; }
  .collage__badge--b { left: 0; font-size: .8125rem; padding: .6rem .8rem; }
  .cats__grid { grid-template-columns: 1fr; grid-auto-rows: 160px; }
  .cat--wide { grid-column: span 1; }
  .store { padding: var(--sp-lg); }
  .store__actions .btn { flex: 1 1 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .marquee__track { animation-duration: 26s; }
}

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

/* ---------- print ---------- */
@media print {
  .topbar, .header, .hero::after, .cta-band::before { display: none; }
  body { background: #fff; color: #000; }
}
