/* ═══════════════════════════════════════════════════════════════════════════
   Ventatus — site stylesheet
   Every colour and type decision lives here. Change it once, all five pages
   follow. Token values are taken straight from the Ventatus design system.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;

  --surface-page:   #faf3ec;
  --surface-card:   #ffffff;
  --surface-sunken: #f2eaf8;
  --ink:            #1b0f33;
  --ink-muted:      #5e5178;
  --line:           #e7ddf1;

  --brand-violet:   #5b16d8;   /* the mark. never changes between themes */
  --violet-action:  #5b16d8;
  --deep-plum:      #2a0a63;
  --signal-orange:  #f2701e;
  --orange-deep:    #a54309;   /* orange that has to be read */
  --ember-rose:     #c93c7e;
  --on-violet:      #ffffff;
  --on-orange:      #1b0f33;
  --focus-ring:     #5b16d8;

  --display: Futura, "Futura PT", Jost, "Century Gothic", sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arimo, Arial, sans-serif;

  --s2: 8px;  --s3: 12px; --s4: 16px; --s6: 24px;
  --s8: 32px; --s12: 48px; --s16: 64px; --s24: 96px;

  --r-md: 10px; --r-lg: 16px;
  --shell: 1060px;
  --read: 68ch;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --surface-page:   #140b26;
    --surface-card:   #1e1335;
    --surface-sunken: #281a46;
    --ink:            #f4eefc;
    --ink-muted:      #a99cc4;
    --line:           #342450;
    --violet-action:  #a97cf5;
    --orange-deep:    #ff9a54;
    --ember-rose:     #e86aa4;
    --focus-ring:     #a97cf5;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --surface-page:   #140b26;
  --surface-card:   #1e1335;
  --surface-sunken: #281a46;
  --ink:            #f4eefc;
  --ink-muted:      #a99cc4;
  --line:           #342450;
  --violet-action:  #a97cf5;
  --orange-deep:    #ff9a54;
  --ember-rose:     #e86aa4;
  --focus-ring:     #a97cf5;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 3px;
}

.sr, .skip {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus {
  position: fixed; top: var(--s3); left: var(--s3);
  width: auto; height: auto; clip: auto;
  background: var(--surface-card); color: var(--ink);
  padding: var(--s3) var(--s4); border-radius: var(--r-md);
  z-index: 60; box-shadow: 0 2px 18px rgb(27 15 51 / .2);
}

/* ─────────────────────────────────────────────────────────────── structure */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--s4);
}
.narrow { max-width: var(--shell); }
.shell.narrow > * { max-width: 760px; }
.narrow p, .narrow li, .narrow dd { max-width: var(--read); }
.shell.narrow > .beforeafter, .shell.narrow > .tablewrap, .shell.narrow > .formwrap,
.shell.narrow > .result { max-width: none; }

/* ───────────────────────────────────────────────────────────────── header */

header.site {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 50;
  background: var(--surface-page);
  border-bottom: 1px solid var(--line);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-block: var(--s3);
  flex-wrap: wrap;
}
.logo { display: inline-flex; line-height: 0; }
.logo svg { height: 30px; width: auto; }

.nav { display: flex; gap: var(--s6); align-items: center; }
.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 15px;
  padding-block: 4px;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--signal-orange);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
.burger span.sr { width: 1px; height: 1px; background: none; }

@media (max-width: 720px) {
  .burger { display: flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
    padding-bottom: var(--s3);
  }
  .nav.open { display: flex; }
  .nav a { font-size: 17px; }
}

/* ────────────────────────────────────────────────────────────────── type */

.display-xl {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  text-wrap: balance;
  margin: 0 0 var(--s4);
}
.display-md {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  text-wrap: balance;
  margin: 0 0 var(--s4);
}
.heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.25;
  margin: 0 0 var(--s3);
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--s3);
}
.eyebrow.light { color: rgb(255 255 255 / .68); }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink); }
.lead.light { color: rgb(255 255 255 / .9); }
p { margin: 0 0 var(--s4); }
.mt { margin-top: var(--s12); }
.fine { color: var(--ink-muted); font-size: 0.95rem; }
.muted { color: var(--ink-muted); }

.inline-link {
  color: var(--violet-action);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────── buttons */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px var(--s6);
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: transform .12s ease, background-color .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--signal-orange); color: var(--on-orange); }
.btn.primary:hover { background: #ff8235; }
.btn.ghost {
  color: #fff;
  border-color: rgb(255 255 255 / .45);
}
.btn.ghost:hover { border-color: #fff; background: rgb(255 255 255 / .08); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s8); }

/* ───────────────────────────────────────────────────────────────── bands */

.band { padding-block: var(--s24); }
.band.alt { background: var(--surface-sunken); }
.band > .shell > .eyebrow { margin-bottom: var(--s3); }

.page-head {
  background: var(--deep-plum);
  color: #fff;
  padding-block: var(--s24) var(--s16);
}
.page-head .display-xl { color: #fff; }

/* hero — a gradient panel is allowed to run at any angle; the mark is not */
.hero {
  background: linear-gradient(118deg, var(--brand-violet) 0%, var(--signal-orange) 100%);
  color: #fff;
  padding-block: var(--s24);
}
.hero-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s16);
}
.hero-copy { flex: 1 1 520px; min-width: 0; }
.hero .display-xl { color: #fff; }
.hero-mark { flex: 0 0 auto; line-height: 0; opacity: .95; }
.hero-mark svg { width: 190px; height: auto; }
@media (max-width: 860px) { .hero-mark { display: none; } }

.closer {
  background: var(--deep-plum);
  color: #fff;
  padding-block: var(--s24);
}
.closer-in { max-width: 720px; }
.closer .display-md { color: #fff; }
.btn.on-dark { margin-top: var(--s4); }

/* ───────────────────────────────────────────────────────────────── cards */

.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: var(--s6);
  margin-top: var(--s8);
}
.card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s8);
}
.card p:last-child { margin-bottom: 0; }
.card.tall { display: flex; flex-direction: column; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s12);
  align-items: start;
}
.stack { display: grid; gap: var(--s4); }

.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s8);
  margin-top: var(--s6);
}

.cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s6);
  margin-top: var(--s8);
  border-top: 1px solid var(--line);
  padding-top: var(--s8);
}
.cat p { margin-bottom: 0; color: var(--ink-muted); }
.after { margin-top: var(--s8); }

/* ─────────────────────────────────────────────────────── steps and specs */

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: var(--s8) 0 0;
  display: grid;
  gap: var(--s8);
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--s4);
  align-items: start;
}
.steps li > h3, .steps li > p { grid-column: 2; min-width: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  color: var(--violet-action);
  padding-top: 2px;
}
.steps p:last-child { margin-bottom: 0; }

.spec { margin: var(--s8) 0 0; display: grid; gap: 0; }
.spec dt {
  font-family: var(--display);
  font-weight: 600;
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}
.spec dd {
  margin: 0 0 var(--s4);
  color: var(--ink-muted);
}

.ticks { margin: var(--s6) 0 0; padding-left: 0; list-style: none; display: grid; gap: var(--s3); }
.ticks li { padding-left: var(--s6); position: relative; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--violet-action);
}

.note {
  margin-top: var(--s12);
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--violet-action);
  border-radius: var(--r-lg);
  padding: var(--s8);
}
.note p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────────── contact */

.contact { margin: var(--s8) 0 0; }
.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s4);
  align-items: baseline;
  padding-block: var(--s4);
  border-top: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact dt { font-family: var(--display); font-weight: 600; }
.contact dd { margin: 0; display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; }
.mono { font-variant-numeric: tabular-nums; word-break: break-word; }

.copy {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--violet-action);
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  cursor: pointer;
}
.copy:hover { background: var(--surface-card); }
.copy.copied { color: var(--orange-deep); }

.todo {
  align-self: flex-start;
  flex: 0 0 auto;
  color: var(--ink-muted);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  padding: 4px 12px;
  font-size: .92rem;
}

@media (max-width: 560px) {
  .contact-row { grid-template-columns: 1fr; gap: var(--s2); }
}

/* ────────────────────────────────────────────────────────────────── foot */

.site-foot {
  background: var(--deep-plum);
  color: rgb(255 255 255 / .82);
  padding-block: var(--s16) var(--s8);
  margin-top: 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s12);
}
.foot-logo { line-height: 0; margin-bottom: var(--s4); }
.foot-logo svg { height: 26px; width: auto; }
.foot-tag {
  font-family: var(--display);
  font-size: 1.05rem;
  color: #fff;
  margin: 0;
}
.fl {
  display: block;
  color: rgb(255 255 255 / .82);
  text-decoration: none;
  padding-block: 3px;
  font-size: 0.95rem;
}
.fl:hover { color: #fff; text-decoration: underline; }
.fline { margin: 0 0 4px; font-size: 0.95rem; word-break: break-word; }
.fline.muted { color: rgb(255 255 255 / .6); }
.fline.todo { display: inline-block; color: rgb(255 255 255 / .6); border-color: rgb(255 255 255 / .3); }

.foot-rule {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s4);
  margin-top: var(--s16);
  padding-top: var(--s6);
  border-top: 1px solid rgb(255 255 255 / .18);
}
.foot-rule p { margin: 0; font-size: 0.85rem; color: rgb(255 255 255 / .6); max-width: 60ch; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}


/* ═══════════════════════════════════════════════ imagery added in v2 ════ */

.fig { margin: 0; }
.fig figcaption {
  margin-top: var(--s3);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 46ch;
}
.dia {
  display: block;
  width: 100%;
  height: auto;
  color: var(--ink);
}

/* the proposition: copy beside the flow diagram */
.propgrid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: var(--s16);
  align-items: start;
  margin-top: var(--s8);
}
.propcopy p { max-width: 56ch; }
@media (max-width: 860px) {
  .propgrid { grid-template-columns: 1fr; gap: var(--s12); }
  .propgrid .fig { max-width: 440px; margin-inline: auto; }
}

/* listing comparison */
.beforeafter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s8);
  margin: var(--s8) 0 0;
}

/* category marks */
.cat-ico {
  display: block;
  width: 62px;
  height: auto;
  color: var(--ink-muted);
  margin-bottom: var(--s4);
}
.cat .cat-ico { width: 60px; }

/* the arc motif from the mark, used as pattern along a dark edge */
.arcband {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 78px;
  pointer-events: none;
}
.page-head, .closer, .site-foot { position: relative; overflow: hidden; }
.page-head > .shell, .closer > .shell, .site-foot > .shell { position: relative; z-index: 1; }
.head-lead { max-width: 54ch; margin-top: var(--s6); }

/* two-up cards */
.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: var(--s6);
  margin-top: var(--s8);
}
.narrow-p { max-width: var(--read); }

/* comparison table */
.tablewrap { overflow-x: auto; margin-top: var(--s8); -webkit-overflow-scrolling: touch; }
.compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 620px;
  font-size: 0.96rem;
  background: var(--surface-card);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare th, .compare td {
  text-align: left;
  padding: var(--s4) var(--s4);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare thead th {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--surface-sunken);
}
.compare tbody th {
  font-weight: 400;
  color: var(--ink-muted);
  width: 30%;
}
.compare .us {
  background: color-mix(in srgb, var(--brand-violet) 8%, transparent);
  font-weight: 700;
  color: var(--ink);
}
.compare thead .us {
  background: var(--brand-violet);
  color: #fff;
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* contact: one address, given room */
.mailcard {
  margin-top: var(--s8);
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s8);
}
.mailaddr {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--s4);
  word-break: break-word;
}
.copy.big { font-size: 0.9rem; padding: 9px 18px; }
.mt-s { margin-top: var(--s8); }


/* ══════════════════════════════════ v3 — hero scene and the questionnaire */

.hero-in { align-items: center; }
.hero-copy { flex: 1 1 390px; }
.hero-art {
  flex: 1.3 1 520px;
  min-width: 0;
  line-height: 0;
}
.heroart { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .hero-in { flex-direction: column; align-items: stretch; gap: var(--s8); }
  .hero-art { max-width: 540px; margin-inline: auto; width: 100%; }
}

/* ── questionnaire */
.formwrap { margin-top: var(--s16); }
.formnote { color: var(--ink-muted); max-width: 58ch; }
.fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s4) var(--s6);
  margin-top: var(--s8);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.field .opt {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.field input, .field textarea, .assembled {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface-card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 11px 13px;
  width: 100%;
  max-width: 100%;
}
.field textarea, .assembled { resize: vertical; min-height: 120px; }
.field input:focus-visible, .field textarea:focus-visible, .assembled:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--violet-action);
}
.field input.bad, .field textarea.bad { border-color: #d92d3f; }
.hint { font-size: 0.86rem; color: var(--ink-muted); margin: 6px 0 0; max-width: 58ch; }
.err {
  margin: var(--s6) 0 0;
  color: #d92d3f;
  font-weight: 700;
  font-size: 0.95rem;
}
#enq button[type="submit"] { margin-top: var(--s8); }

/* ── the assembled message */
.result { margin-top: var(--s8); }
.assembled {
  margin-top: var(--s6);
  font-variant-numeric: tabular-nums;
  background: var(--surface-sunken);
}
.sendrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3) var(--s4);
  margin-top: var(--s6);
}
.sendto { color: var(--ink-muted); font-size: 0.95rem; }
.sendto b { color: var(--ink); font-weight: 700; word-break: break-word; }
.linkish {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--violet-action);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ══════════════════════════════════════════ v4 — a tighter, shorter hero */

.hero { padding-block: var(--s12); }
.hero-in { gap: var(--s8); }
.hero .display-xl { margin-bottom: var(--s3); }
.hero .lead { font-size: 1.12rem; max-width: 52ch; }
.hero .btn-row { margin-top: var(--s6); }
.hero-art { align-self: center; }

@media (max-width: 900px) {
  .hero { padding-block: var(--s8) var(--s6); }
  .hero-in { gap: var(--s6); }
  .hero-art { max-width: 460px; }
}
@media (min-width: 901px) {
  .hero { padding-block: var(--s16); }
}

/* photographs, once supplied */
.shot { position: relative; border-radius: var(--r-lg); overflow: hidden; line-height: 0; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot.tall { aspect-ratio: 4 / 5; }
.shot.wide { aspect-ratio: 16 / 9; }


/* ═══════════════════════════ v5 — promises, services, founder, slogan band */

/* the band that carries commitments where a bigger company would put figures */
.promises {
  background: var(--deep-plum);
  color: #fff;
  padding-block: var(--s8);
}
.promise-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--s6);
}
.promise {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--s4);
  border-left: 3px solid var(--signal-orange);
}
.pno {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  color: #fff;
  line-height: 1.2;
}
.pwhy { font-size: 0.9rem; color: rgb(255 255 255 / .72); line-height: 1.45; }

/* four service cards, numbered because they are a sequence of jobs */
.svc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--s6);
  margin-top: var(--s8);
}
.svc-card { display: flex; flex-direction: column; position: relative; }
.svc-card .svc-n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  color: var(--violet-action);
  display: block;
  margin-bottom: var(--s3);
}
.svc-card p { flex: 1; }
.svc-card .inline-link { font-size: 0.92rem; }

/* the founder speaking in the first person */
.founder-band { background: var(--surface-sunken); }
.founder {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(280px, 1fr);
  gap: var(--s16);
  align-items: start;
}
.portrait-slot {
  background: var(--surface-card);
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slot-note {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-muted);
  padding: var(--s4);
  max-width: 18ch;
}
.fnote { margin: 0; padding: 0; border: 0; }
.fnote p {
  font-size: 1.12rem;
  line-height: 1.62;
  max-width: 58ch;
}
.fnote p:first-child::before { content: "\201C"; }
.fnote p:last-child::after { content: "\201D"; }
.fsign {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: var(--s6) 0 0;
  padding-top: var(--s4);
  border-top: 2px solid var(--signal-orange);
  display: inline-block;
}
.fsign span {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 2px;
}
@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; gap: var(--s8); }
  .founder-portrait { max-width: 260px; }
}

/* the slogan, given a moment of its own */
.sloganband {
  background: var(--brand-violet);
  color: #fff;
  padding-block: var(--s16);
  text-align: center;
}
.slogan-big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}
.slogan-sub {
  margin: var(--s4) 0 0;
  font-size: 1.05rem;
  color: rgb(255 255 255 / .82);
}


/* the founder note stands alone until a portrait is supplied */
.founder.solo { grid-template-columns: 1fr; max-width: 760px; }
.founder.solo .fnote p { font-size: 1.18rem; max-width: 62ch; }
.founder.solo { margin-inline: auto; }
.fnote p:first-child::before { color: var(--brand-violet); font-weight: 700; }

/* ═══════════════════════════════════ the listing mock-up, before and after */

.lst {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s6);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.lst.before { opacity: .96; }
.lst-top { display: flex; gap: var(--s4); align-items: flex-start; }
.lst-img {
  flex: 0 0 116px;
  background: var(--surface-sunken);
  border-radius: var(--r-md);
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.lst-img.thin { flex-basis: 78px; padding: 8px; }
.pimg { width: 100%; height: auto; display: block; }
.thumbs { display: flex; gap: 5px; width: 100%; }
.thumbs span {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--surface-card);
  border: 1px solid var(--line);
}
.lst-main { flex: 1; min-width: 0; }
.lst-brand {
  margin: 0 0 3px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--violet-action);
  letter-spacing: .02em;
}
.lst-title {
  margin: 0 0 7px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.lst-title.thin { font-weight: 400; color: var(--ink-muted); }
.lst-rate { margin: 0 0 7px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.stars { letter-spacing: 1px; }
.stars .s { color: var(--line); font-size: 0.95rem; }
.stars .s.on { color: var(--signal-orange); }
.rnum { font-weight: 700; font-size: 0.88rem; font-variant-numeric: tabular-nums; }
.rcount { font-size: 0.82rem; color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.lst-price {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.lst-price.big { font-size: 1.32rem; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.lst-was {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.lst-save {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--on-orange);
  background: var(--signal-orange);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: .02em;
}
.lst-stock { margin: 0 0 var(--s3); font-size: 0.84rem; color: var(--ink-muted); }
.lst-gap { margin: 0; font-size: 0.84rem; color: var(--ink-muted); font-style: italic; }
.lst-btn {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--on-violet);
  background: var(--brand-violet);
  border: 0;
  border-radius: 999px;
  padding: 9px 20px;
  cursor: default;
}
.lst-bul { margin: 0; padding-left: 18px; display: grid; gap: 6px; }
.lst-bul li { font-size: 0.87rem; line-height: 1.45; color: var(--ink-muted); }
.lst-bul li b { color: var(--ink); }
.lst-aplus {
  margin-top: auto;
  background: var(--surface-sunken);
  border-radius: var(--r-md);
  padding: var(--s4);
  display: flex;
  gap: var(--s4);
  align-items: center;
}
.ap-box {
  flex: 0 0 74px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: linear-gradient(130deg, var(--brand-violet), var(--signal-orange));
  opacity: .8;
}
.ap-lines { flex: 1; display: grid; gap: 7px; }
.ap-lines span {
  height: 8px;
  border-radius: 4px;
  background: var(--ink);
  opacity: .16;
}
.ap-lines span.short { width: 55%; }
.lst-empty {
  margin-top: auto;
  border-top: 1px dashed var(--line);
  padding-top: var(--s4);
  display: grid;
  gap: 5px;
}
.lst-empty p { margin: 0; font-size: 0.85rem; color: var(--ink-muted); font-style: italic; }

@media (max-width: 420px) {
  .lst-top { flex-direction: column; }
  .lst-img { flex-basis: auto; width: 140px; }
}

.beforeafter { align-items: stretch; }
.beforeafter .fig { display: flex; flex-direction: column; }
.fig-top {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 var(--s3);
  max-width: none;
}
.beforeafter .fig figcaption { margin-top: var(--s3); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
#f-send[disabled] { opacity: .6; cursor: progress; }
