/* =============================================================================
   WoWYourself — BASE STYLESHEET
   -----------------------------------------------------------------------------
   Collector's Shelf. Every colour comes from a token in palettes.css — nothing
   here hard-codes one, which is what makes a palette swap a one-line change.

   Load order matters:
     1. <script src="assets/js/palette.js">   sets data-palette before first paint
     2. palettes.css                          defines the tokens
     3. base.css                              this file
   ========================================================================== */

/* ---------------------------------------------------------------- fonts --- */
/* Impact is not on iOS or Android, so the poster headlines need a real file.
   Latin subset only, 18 KB, served from our own domain. */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
                 U+2215, U+FEFF, U+FFFD;
}

:root {
  --display: 'Anton', Impact, 'Arial Narrow Bold', 'Arial Black', sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1140px;
  --gutter: clamp(18px, 4vw, 40px);
  --radius: 8px;
  --border: 3px;

  /* Vertical rhythm — one scale, used everywhere */
  --s1: 6px;  --s2: 10px; --s3: 16px; --s4: 24px;
  --s5: 36px; --s6: 52px; --s7: 76px; --s8: 108px;
}

/* ----------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--field);
  color: var(--on-field);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* Keyboard focus must always be visible — it is the only way some people
   navigate the configurator. */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.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;
}

/* ------------------------------------------------------------ typography --- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .94;
  letter-spacing: .005em;
  margin: 0;
  text-wrap: balance;
}
/* The hero stacks three lines of Anton at up to 86px. Anton's caps nearly fill
   its em box, so anything under 1 puts the tops of one line inside the line
   above — at .88 the boxes overlapped by 26px and it read as a mistake rather
   than as poster typography. Headings that only ever run to two lines keep the
   tighter .94 above. */
h1 { font-size: clamp(44px, 11vw, 86px); line-height: 1; }
h2 { font-size: clamp(30px, 6.4vw, 46px); }
h3 { font-size: clamp(18px, 3.4vw, 24px); }
p { margin: 0; }

.eyebrow {
  font-size: clamp(10px, 2.4vw, 11.5px);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s2);
}
.lede { font-size: clamp(15px, 3.6vw, 17px); line-height: 1.6; opacity: .88; max-width: 46ch; }
.section-head { text-align: center; margin-bottom: var(--s5); }
.section-head .lede { margin-inline: auto; margin-top: var(--s2); }

/* --------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: clamp(12px, 3vw, 13px); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 17px 26px; border-radius: 2px; border: var(--border) solid var(--ink);
  background: var(--ink); color: var(--on-ink);
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .22);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(0, 0, 0, .22); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(0, 0, 0, .22); }
.btn--ghost {
  background: transparent; color: var(--on-field); box-shadow: none;
  border-color: var(--ink);
}
.btn--ghost:hover { box-shadow: 4px 4px 0 var(--ink); }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- header --- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--field);
  border-bottom: 2px solid var(--ink);
}
.site-head__in { display: flex; align-items: center; gap: var(--s4); padding-block: 14px; }
.brand { width: 96px; flex: none; display: block; position: relative; aspect-ratio: 693/433; }
.brand::before, .brand::after {
  content: ""; position: absolute; inset: 0;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.brand::before {
  background: var(--logo-knockout);
  -webkit-mask-image: url('../img/logo-mask-silhouette.svg');
  mask-image: url('../img/logo-mask-silhouette.svg');
}
.brand::after {
  background: var(--logo-ink);
  -webkit-mask-image: url('../img/logo-mask-ink.svg');
  mask-image: url('../img/logo-mask-ink.svg');
}
.nav { display: none; gap: var(--s4); margin-inline-start: auto; }
.nav a {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; opacity: .85; padding-block: 6px;
}
.nav a:hover { opacity: 1; color: var(--accent); }
.site-head .btn { margin-inline-start: auto; padding: 12px 18px; box-shadow: 3px 3px 0 rgba(0,0,0,.22); }
@media (min-width: 900px) {
  .nav { display: flex; }
  .site-head .btn { margin-inline-start: 0; }
  .brand { width: 112px; }
}
/* The nav CTA is redundant on small screens — the sticky bar covers it. */
@media (max-width: 560px) { .site-head .btn { display: none; } }

/* ------------------------------------------------------------------ hero --- */
.hero { padding-block: var(--s6) var(--s5); }
.hero__grid { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.02fr .98fr; gap: var(--s7); } }
.hero h1 { margin-bottom: var(--s3); }
.hero h1 em { font-style: normal; color: var(--accent); display: block; }
.hero .lede { margin-bottom: var(--s4); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s4); }
.trust {
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s4);
  font-size: 12.5px; opacity: .82; align-items: center;
}
.trust b { color: var(--accent); letter-spacing: .06em; }

/* the collectible box ------------------------------------------------------ */
.box {
  background: var(--card); color: var(--on-card);
  border: var(--border) solid var(--ink); border-radius: var(--radius);
  padding: 13px; box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.4deg); position: relative;
}
.box__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: clamp(8.5px, 2.2vw, 10.5px); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 10px;
}
.box__window {
  border: var(--border) solid var(--ink); border-radius: 5px;
  overflow: hidden; position: relative; background: var(--window);
}
.box__window img { width: 100%; aspect-ratio: 1; object-fit: cover; }
/* The source photo, insetted as proof — the hero's share of the 3-step story. */
.box__inset {
  position: absolute; left: 11px; bottom: 11px; width: 27%; max-width: 96px;
  border: 2px solid var(--ink); border-radius: 3px; overflow: hidden;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, .3); background: var(--card);
}
.box__inset img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.box__inset span {
  position: absolute; inset-inline: 0; bottom: 0; text-align: center;
  font-size: 7.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: var(--on-ink); padding: 2px 0;
}
.box__seal {
  position: absolute; top: 11px; right: 11px; width: 58px; height: 58px;
  border-radius: 50%; background: var(--logo-tile);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.box__seal::before, .box__seal::after {
  content: ""; position: absolute; inset: 18% 8%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.box__seal::before {
  background: var(--logo-knockout);
  -webkit-mask-image: url('../img/logo-badge-mask-silhouette.svg');
  mask-image: url('../img/logo-badge-mask-silhouette.svg');
}
.box__seal::after {
  background: var(--logo-ink);
  -webkit-mask-image: url('../img/logo-badge-mask-ink.svg');
  mask-image: url('../img/logo-badge-mask-ink.svg');
}
.box__bot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 11px; }
.box__price { font-family: var(--display); font-size: clamp(24px, 6vw, 32px); line-height: 1; }
.box__price small {
  display: block; font-family: var(--body); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin-bottom: 3px;
}
.barcode { display: flex; gap: 2px; align-items: flex-end; height: 28px; }
.barcode i { display: block; width: 3px; background: currentColor; }
.edition {
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  opacity: .68; margin-top: var(--s4); text-align: center;
}

/* ---------------------------------------------------------------- ticker --- */
.ticker {
  background: var(--ink); color: var(--card);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
  border-block: 2px solid var(--ink);
}
.ticker__track { display: inline-block; animation: ticker 32s linear infinite; }
.ticker span {
  font-size: clamp(9.5px, 2.4vw, 11.5px); font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; padding-inline-end: 18px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- section --- */
.section { padding-block: var(--s7); }
.section--tint { background: var(--window); border-block: 2px solid var(--ink); }
/* The header is sticky, so anything an in-page link jumps to would otherwise
   land underneath it. */
:target, section[id], [id] > .section-head { scroll-margin-top: 88px; }

/* ---------------------------------------------------------------- steps --- */
/* Three across at every width, deliberately: the point is seeing the whole
   journey at once, and stacking turns a glance into a scroll. */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 2.2vw, 20px); }
.step { position: relative; }
.step__frame {
  background: var(--card); border: 2px solid var(--ink); border-radius: 6px;
  padding: clamp(4px, 1.2vw, 7px); box-shadow: 4px 4px 0 var(--ink);
}
.step__frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; }
.step__n { display: flex; align-items: center; gap: 7px; margin: var(--s3) 0 4px; }
.step__n b {
  background: var(--ink); color: var(--on-ink); flex: none;
  width: clamp(15px, 4vw, 21px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; font-size: clamp(8px, 2vw, 10.5px); font-weight: 700;
}
.step__n span {
  font-size: clamp(8.5px, 2.3vw, 13px); font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}
.step p { font-size: clamp(9px, 2.4vw, 13px); line-height: 1.45; opacity: .8; }
.step__arrow {
  position: absolute; top: 30%; inset-inline-end: clamp(-9px, -1.4vw, -5px);
  color: var(--accent); font-size: clamp(12px, 2.6vw, 19px); font-weight: 700; z-index: 2;
}
.step:last-child .step__arrow { display: none; }

/* --------------------------------------------------------- configurator --- */
.config {
  background: var(--card); color: var(--on-card);
  border: var(--border) solid var(--ink); border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--ink); padding: clamp(20px, 4vw, 34px);
}
.field { margin-bottom: var(--s4); }
.field > legend, .field > .label {
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  opacity: .68; margin-bottom: var(--s2); padding: 0; display: block;
}
.field fieldset { border: 0; padding: 0; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span {
  display: block; border: 2px solid var(--ink); border-radius: 999px;
  padding: 9px 15px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.chip input:checked + span { background: var(--ink); color: var(--on-ink); }
.chip input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }

.tiers-pick { display: grid; gap: 8px; }
@media (min-width: 620px) { .tiers-pick { grid-template-columns: repeat(3, 1fr); } }
.pick { position: relative; }
.pick input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.pick span {
  display: block; border: 2px solid var(--ink); border-radius: 5px; padding: 12px 14px;
  cursor: pointer; transition: background .12s ease, color .12s ease;
}
.pick b { display: block; font-size: 13.5px; font-weight: 700; }
.pick small { display: block; font-size: 11.5px; opacity: .68; margin-top: 2px; }
.pick em { display: block; font-style: normal; font-family: var(--display); font-size: 19px; margin-top: 6px; }
.pick input:checked + span { background: var(--ink); color: var(--on-ink); }
.pick input:checked + span small { opacity: .82; }
.pick input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }

.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 42px; height: 42px; border: 2px solid var(--ink); border-radius: 5px;
  background: transparent; cursor: pointer; font-size: 21px; line-height: 1; font-weight: 700;
}
.stepper button:hover { background: var(--ink); color: var(--on-ink); }
.stepper output { font-family: var(--display); font-size: 26px; min-width: 2ch; text-align: center; }

.total {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 2px dashed var(--ink); padding-top: var(--s3); margin-top: var(--s4);
}
.total__amount { font-family: var(--display); font-size: clamp(30px, 8vw, 42px); line-height: 1; }
.total small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; display: block; }
.total__note { font-size: 11.5px; opacity: .7; max-width: 24ch; text-align: end; line-height: 1.35; }

/* --------------------------------------------------------------- gallery --- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(10px, 2vw, 18px); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.shot {
  background: var(--card); border: 2px solid var(--ink); border-radius: 6px;
  padding: 7px; box-shadow: 5px 5px 0 var(--ink);
}
.shot img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; }
.shot figcaption {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-top: 9px; opacity: .72; color: var(--on-card);
}

/* ----------------------------------------------------------------- tiers --- */
.tiers { display: grid; gap: var(--s4); }
@media (min-width: 800px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--card); color: var(--on-card); position: relative;
  border: var(--border) solid var(--ink); border-radius: var(--radius);
  padding: 14px; box-shadow: 7px 7px 0 var(--ink); display: flex; flex-direction: column;
}
.tier--featured { box-shadow: 7px 7px 0 var(--accent); }
.tier__badge {
  position: absolute; top: -13px; inset-inline-start: 14px;
  background: var(--accent); color: var(--on-accent);
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border: 2px solid var(--ink); border-radius: 2px;
}
.tier img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 2px solid var(--ink); border-radius: 5px; }
.tier h3 { margin: var(--s3) 0 2px; }
.tier__size { font-size: 12px; opacity: .66; }
.tier__price { font-family: var(--display); font-size: 30px; margin: var(--s2) 0; line-height: 1; }
.tier ul { list-style: none; margin: 0 0 var(--s4); padding: 0; font-size: 13px; }
.tier li { padding-inline-start: 20px; position: relative; margin-bottom: 6px; opacity: .85; }
.tier li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--accent); font-weight: 700; }
.tier .btn { margin-top: auto; }

/* ------------------------------------------------------------- occasions --- */
.occasions { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.occasion {
  border: 2px solid var(--ink); border-radius: 999px; padding: 9px 16px;
  font-size: 13px; font-weight: 600; background: var(--card); color: var(--on-card);
}

/* ---------------------------------------------------------- testimonials --- */
.quotes { display: grid; gap: var(--s4); }
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--card); color: var(--on-card); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: var(--s4); box-shadow: 5px 5px 0 var(--ink);
}
.quote blockquote { margin: 0 0 var(--s3); font-size: 14.5px; line-height: 1.55; }
.quote__stars { color: var(--accent); letter-spacing: .1em; margin-bottom: var(--s2); }
.quote cite { font-style: normal; font-weight: 700; font-size: 13px; }
.quote small { display: block; font-size: 11.5px; opacity: .62; }

/* ------------------------------------------------------------------- faq --- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 2px solid var(--ink);
}
.faq details:first-of-type { border-top: 2px solid var(--ink); }
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s4) 40px var(--s4) 0;
  font-weight: 700; font-size: 15.5px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; inset-inline-end: 6px; top: 50%; translate: 0 -50%;
  font-family: var(--display); font-size: 26px; color: var(--accent); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding-bottom: var(--s4); font-size: 14.5px; opacity: .86; max-width: 62ch; }

/* -------------------------------------------------------------- cta band --- */
.cta-band { background: var(--ink); color: var(--on-ink); text-align: center; padding-block: var(--s7); }
.cta-band h2 { color: var(--card); }
.cta-band p { color: var(--card); opacity: .8; margin: var(--s3) auto var(--s4); max-width: 46ch; }
.cta-band .btn { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

/* ---------------------------------------------------------------- footer --- */
.site-foot { border-top: 2px solid var(--ink); padding-block: var(--s6) var(--s7); font-size: 13.5px; }
.site-foot__grid { display: grid; gap: var(--s5); }
@media (min-width: 760px) { .site-foot__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-foot h4 {
  font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  opacity: .6; margin: 0 0 var(--s2);
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 7px; }
.site-foot a { text-decoration: none; opacity: .85; }
.site-foot a:hover { opacity: 1; color: var(--accent); }
.site-foot__legal { margin-top: var(--s5); font-size: 11.5px; opacity: .55; }

/* ---------------------------------------------------- sticky mobile bar --- */
/* Mobile visitors arrive from TikTok mid-scroll; the CTA must never be more
   than a thumb away. */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: var(--field); border-top: 2px solid var(--ink);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
body { padding-bottom: 84px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* --------------------------------------------------------------- motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.note-inline { font-size: 12.5px; line-height: 1.45; opacity: .7; margin-top: var(--s2); }
#setNote .note-inline { margin-top: 0; }

/* =============================================================================
   INNER PAGES
   Everything below is used by corporate, the legal pages, thank-you and 404.
   The home page does not load any of it.
   ========================================================================== */

/* --------------------------------------------------------- page masthead --- */
.page-head { padding-block: var(--s6) var(--s5); border-bottom: 2px solid var(--ink); }
.page-head h1 { font-size: clamp(34px, 8vw, 62px); margin-bottom: var(--s3); }
.page-head .lede { max-width: 52ch; }
/* An optional second column. A headline with 600px of empty cream beside it
   reads as a page still being built, not as restraint. */
.page-head__grid { display: grid; gap: var(--s5); }
@media (min-width: 900px) {
  .page-head__grid { grid-template-columns: 1.05fr .95fr; gap: var(--s7); align-items: center; }
}
.page-head .updated {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  opacity: .55; margin-top: var(--s4);
}

/* --------------------------------------------------------------- prose --- */
/* Legal copy. Long-form reading, so the measure is tighter than the grid and
   the display face is dialled down — a terms page set in poster caps is
   unreadable. */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: var(--s3); }
.prose h2 {
  font-size: clamp(19px, 4vw, 25px); margin-top: var(--s6);
  padding-top: var(--s4); border-top: 2px solid var(--ink);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: clamp(14px, 3vw, 17px); margin-top: var(--s4); }
.prose p, .prose li { font-size: 15px; line-height: 1.65; opacity: .88; }
.prose ul, .prose ol { padding-inline-start: 22px; }
.prose li + li { margin-top: 7px; }
.prose a { color: var(--accent); text-underline-offset: 3px; }
.prose strong { font-weight: 700; opacity: 1; }
.prose dl { display: grid; gap: var(--s2); }
.prose dt { font-weight: 700; font-size: 14px; }
.prose dd { margin: 0 0 var(--s2); font-size: 15px; opacity: .88; }

/* A short summary sitting above a long legal page. Not a substitute for it —
   it exists because nobody reads paragraph 7 of a returns policy, and the
   answer they came for should not be buried. */
.callout {
  background: var(--card); color: var(--on-card);
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: var(--s4); margin-bottom: var(--s6); max-width: 68ch;
}
.callout h2 {
  font-size: clamp(16px, 3.4vw, 20px); margin: 0 0 var(--s2);
  border: 0; padding: 0;
}
.callout ul { margin: 0; padding-inline-start: 20px; font-size: 14.5px; }
.callout li + li { margin-top: 6px; }

/* --------------------------------------------------------- centred page --- */
/* thank-you and 404: one message, one way forward, nothing else. */
.midpage { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: var(--s7); }
.midpage__in { max-width: 46ch; }
.midpage h1 { margin-bottom: var(--s3); }
.midpage p { opacity: .85; margin-bottom: var(--s4); }
.midpage .btn + .btn { margin-inline-start: var(--s2); }
.midpage__steps { list-style: none; margin: var(--s5) 0 0; padding: 0; text-align: start; display: grid; gap: var(--s3); }
.midpage__steps li {
  display: flex; gap: var(--s3); align-items: flex-start;
  font-size: 14.5px; line-height: 1.5;
}
.midpage__steps b {
  background: var(--ink); color: var(--on-ink); flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px;
}

/* ============================================================== CORPORATE ===
   A quieter room. Same tokens, less shouting: the reader is a procurement
   manager on a laptop comparing three suppliers, not a thumb arriving from
   TikTok. Offset shadows and accent fills are dialled back rather than
   redefined, so a palette swap still carries.
   ========================================================================== */
.quiet .btn { box-shadow: 3px 3px 0 rgba(0, 0, 0, .16); }
.quiet .btn:hover { box-shadow: 5px 5px 0 rgba(0, 0, 0, .16); }
.quiet .config { box-shadow: 5px 5px 0 var(--ink); }
.quiet h1 { font-size: clamp(32px, 7vw, 56px); }
.quiet h2 { font-size: clamp(26px, 5vw, 36px); }

.corp-uses { display: grid; gap: var(--s4); }
@media (min-width: 700px) { .corp-uses { grid-template-columns: repeat(2, 1fr); } }
.corp-use {
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--card); color: var(--on-card); padding: var(--s4);
}
.corp-use h3 { margin-bottom: var(--s2); }
.corp-use p { font-size: 14.5px; opacity: .82; }

/* The four things a corporate buyer checks before they will start a
   conversation. Two-by-two beside the headline, so they are answered before
   the first scroll rather than a section later. */
.corp-facts { display: grid; gap: var(--s4); grid-template-columns: repeat(2, 1fr); }
.corp-fact { border-top: 3px solid var(--ink); padding-top: var(--s3); }
.corp-fact b { display: block; font-family: var(--display); font-size: clamp(22px, 4.4vw, 30px); line-height: 1; }
.corp-fact span { display: block; font-size: 12.5px; opacity: .72; margin-top: 6px; }

/* --------------------------------------------------- enquiry form fields --- */
.select {
  display: block; width: 100%; appearance: none;
  border: 2px solid var(--ink); border-radius: 5px; background: transparent;
  padding: 13px 40px 13px 14px; font-size: 15px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.input {
  display: block; width: 100%;
  border: 2px solid var(--ink); border-radius: 5px; background: transparent;
  padding: 13px 14px; font-size: 15px;
}
.input::placeholder { opacity: .45; }
.checks { display: grid; gap: 8px; }
@media (min-width: 620px) { .checks { grid-template-columns: repeat(2, 1fr); } }
.check { position: relative; }
.check input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.check span {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--ink); border-radius: 5px; padding: 12px 14px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.check span::before {
  content: ""; flex: none; width: 17px; height: 17px;
  border: 2px solid currentColor; border-radius: 3px;
}
.check input:checked + span { background: var(--ink); color: var(--on-ink); }
.check input:checked + span::before { content: "✓"; font-size: 11px; display: grid; place-items: center; }
.check input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
