/*
 * Shared styling for the static content pages (landing page + guide articles).
 *
 * These pages are plain HTML served by nginx from /_site — no Angular, no
 * bundler. They exist so the domain has real, crawlable editorial content.
 *
 * Design system: cream paper (#f6f2ec) with a dark roasted-wood chrome
 * (#1c1612) and a brass accent (#e8b96a). Display type is Instrument Serif,
 * body copy Work Sans, labels/numbers JetBrains Mono. Everything degrades to
 * system fonts if Google Fonts is blocked.
 *
 * Layout classes prefixed `lp-` belong to the landing page only; everything
 * else (.card, .callout, table, .round, details.faq, ...) is shared by the
 * article pages.
 */
:root {
  color-scheme: light;

  /* surfaces */
  --bg: #f6f2ec;
  --bg-band: #efe8de;
  --card: #fffdfa;
  --dark: #1c1612;

  /* ink */
  --text: #241d17;
  --muted: #5b5045;
  --muted-soft: #6b5f52;
  --label: #a08a6c;
  --on-dark: #f6f2ec;
  --on-dark-soft: rgba(246, 242, 236, 0.72);
  --on-dark-faint: rgba(246, 242, 236, 0.66);

  /* accents */
  --gold: #e8b96a;
  --gold-soft: #f5cd84;
  --gold-deep: #b08b4f;
  --on-gold: #241109;
  --link: #8a5a2b;
  --link-hover: #5c3a18;

  /* lines */
  --border: #ddd1c1;
  --border-band: #e0d5c6;

  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Calibri, sans-serif;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Wide shell for chrome + landing sections, narrow measure for articles. */
  --shell: 1180px;
  --max: 820px;
  --gutter: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }

/* Article body copy keeps underlines — they help scanning long prose. */
.card p > a,
.card li > a { text-decoration: underline; text-underline-offset: 2px; }

::selection { background: var(--gold); color: var(--on-gold); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(28, 22, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-dark);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
}

.brand:hover { color: #fff; }
.brand img { width: 30px; height: 30px; border-radius: 8px; display: block; }

.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14.5px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(246, 242, 236, 0.72);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover { color: var(--gold); }
.site-nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

/* The "play" pill sits outside the nav list so it reads as an action. */
.header-cta {
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--on-gold);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.14s ease;
}

.header-cta:hover { background: var(--gold-soft); color: var(--on-gold); }

/* ------------------------------------------------------------- buttons */

.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--on-gold);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  transition: background 0.14s ease, transform 0.14s ease;
}

.cta:hover { background: var(--gold-soft); color: var(--on-gold); transform: translateY(-1px); }

.cta.secondary {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(246, 242, 236, 0.28);
  font-weight: 500;
}

.cta.secondary:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* On the cream article pages the outline button needs dark ink. */
.page .cta.secondary { color: var(--text); border-color: var(--border); }
.page .cta.secondary:hover { color: var(--link-hover); border-color: var(--gold-deep); }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.arrow-link { font-size: 15.5px; font-weight: 500; white-space: nowrap; }

/* --------------------------------------------------------- typography */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0;
}

h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 38px 0 12px;
  color: var(--text);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 26px 0 6px;
  color: var(--text);
}

p { margin: 0 0 14px; }

.lead {
  font-size: 1.15rem;
  line-height: 1.62;
  color: var(--muted);
  margin-bottom: 22px;
}

.meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted-soft);
  margin: -4px 0 10px;
}

.crumbs {
  font-size: 13.5px;
  color: var(--muted-soft);
  margin: 0 0 16px;
}

.crumbs a { color: var(--muted-soft); }
.crumbs a:hover { color: var(--link); }

.byline {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 22px;
}

.byline a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

.author-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--border);
  background: var(--bg-band);
  padding: 22px 24px;
  margin: 36px 0 8px;
}

.author-box img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
}

.author-box h2 { margin: 0 0 6px; font-size: 1.25rem; }
.author-box p { margin: 0; font-size: 15.5px; color: var(--muted); }

.related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 8px;
}

ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }

blockquote {
  margin: 18px 0;
  padding: 12px 20px;
  border-left: 3px solid var(--gold-deep);
  background: rgba(176, 139, 79, 0.08);
  color: var(--muted);
}

blockquote p:last-child { margin-bottom: 0; }

em { font-style: italic; }

/* ------------------------------------------------------- article shell */

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px var(--gutter) 10px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 34px 32px;
  margin-bottom: 22px;
}

.card > :first-child { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }

/* Sticky header offset for in-page jumps (/ratgeber#etikette, …). */
.card h2[id] { scroll-margin-top: 84px; }

.toc {
  background: var(--bg-band);
  border: 1px solid var(--border);
  padding: 18px 22px 14px;
  margin: 8px 0 28px;
}

.toc-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0 0 8px;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 28px;
}

.toc li { break-inside: avoid; margin-bottom: 4px; }
.toc li > a { color: var(--text); text-decoration: none; }
.toc li > a:hover { color: var(--link); }

.glossary { margin: 8px 0 20px; }
.glossary dt {
  font-weight: 600;
  margin: 16px 0 2px;
  color: var(--text);
}
.glossary dt:first-child { margin-top: 0; }
.glossary dd {
  margin: 0 0 0 0;
  color: var(--muted);
}

.callout {
  background: var(--dark);
  color: var(--on-dark);
  padding: 26px 28px;
  margin: 24px 0;
}

.callout strong { color: var(--gold); font-weight: 600; }
.callout a { color: var(--gold); text-decoration: underline; }
.callout p { color: rgba(246, 242, 236, 0.85); }
.callout p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- tables */

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 340px;
  font-size: 0.95rem;
}

th, td {
  border-bottom: 1px solid var(--border);
  padding: 9px 12px;
  text-align: left;
}

th {
  background: var(--bg-band);
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

td.num, th.num { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

tr.peak td { background: rgba(232, 185, 106, 0.22); font-weight: 600; }

caption {
  caption-side: bottom;
  font-size: 0.85rem;
  color: var(--muted-soft);
  padding: 10px 12px;
  text-align: left;
}

/* --------------------------------------------------------- example round */

.round {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: step;
  border: 1px solid var(--border);
}

.round li {
  position: relative;
  padding: 14px 16px 14px 56px;
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.round li:last-child { border-bottom: none; }

.round li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-deep);
}

/* -------------------------------------------------------------- teasers */

.teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 6px;
}

.teaser {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 30px;
  color: var(--text);
  transition: border-color 0.14s ease, transform 0.14s ease;
}

.teaser:hover { border-color: var(--gold-deep); color: var(--text); transform: translateY(-2px); }

.teaser strong {
  display: block;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.teaser span { font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------------------ faq */

details.faq {
  border: 1px solid var(--border);
  background: var(--card);
  margin-bottom: 10px;
}

details.faq > summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--text);
  list-style-position: inside;
}

details.faq[open] > summary { border-bottom: 1px solid var(--border); color: var(--link-hover); }
details.faq .answer { padding: 15px 18px 3px; }

/* ============================================================== landing */

.lp-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.lp-dark {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}

.lp-dark h1, .lp-dark h2, .lp-dark h3 { color: var(--on-dark); }
.lp-dark .eyebrow { color: var(--gold); }
.lp-dark p { color: var(--on-dark-soft); }

.lp-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 78% 12%, rgba(232, 185, 106, 0.16), transparent 60%);
}

.lp-band {
  background: var(--bg-band);
  border-top: 1px solid var(--border-band);
  border-bottom: 1px solid var(--border-band);
}

/* ------------------------------------------------------------ lp: hero */

.lp-hero .lp-shell {
  padding-top: 96px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 185, 106, 0.34);
  padding: 7px 14px;
  border-radius: 999px;
}

.lp-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  line-height: 1.02;
  margin: 26px 0 0;
}

.lp-hero .lp-hero-copy {
  font-size: 19px;
  line-height: 1.62;
  margin: 26px 0 0;
  max-width: 48ch;
}

.lp-hero .cta-row { margin-top: 38px; }

.lp-hero-art { display: flex; justify-content: center; }

.lp-hero-art img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

/* ----------------------------------------------------------- lp: hands */

.lp-hands .lp-shell {
  padding-top: 44px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-hands figure { margin: 0; text-align: center; }
.lp-hands img { width: 100%; max-width: 170px; height: auto; }

.lp-hands figcaption {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a6a58;
  margin-top: 10px;
}

/* ----------------------------------------------------------- lp: split */

.lp-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.lp-split h2 { margin: 16px 0 0; }

.lp-prose {
  font-size: 18px;
  line-height: 1.68;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-prose p { margin: 0; }
.lp-dark .lp-prose { color: var(--on-dark-soft); }

.lp-section { padding-top: 92px; }
.lp-section > h2:first-child { margin: 0 0 34px; }

/* Full-bleed bands need their own breathing room above, plus roomy insides. */
.lp-spaced { margin-top: 96px; }
.lp-shell--roomy { padding-top: 88px; padding-bottom: 88px; }

.lp-faq { margin-top: 26px; }

.lp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
}

.lp-section-head h2 { margin: 0; }

/* ----------------------------------------------------------- lp: steps */

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}

.lp-steps li {
  background: var(--bg);
  padding: 34px 30px 38px;
  margin: 0;
}

.lp-steps .lp-step-no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-deep);
}

.lp-steps h3 { font-size: 20px; margin: 12px 0 8px; }
.lp-steps p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }

.lp-steps li.is-dark { background: var(--dark); }
.lp-steps li.is-dark .lp-step-no { color: var(--gold); }
.lp-steps li.is-dark h3 { color: var(--on-dark); }
.lp-steps li.is-dark p { color: rgba(246, 242, 236, 0.7); }

/* ----------------------------------------------------------- lp: stats */

.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.lp-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 30px;
}

.lp-stat dt {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lp-stat dd {
  margin: 10px 0 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--muted-soft);
}

.lp-stat dd strong { font-weight: 600; color: var(--text); }

/* Rule-of-thumb strip: label column + statement. */
.lp-rule {
  margin: 20px 0 0;
  background: var(--dark);
  color: var(--on-dark);
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
}

.lp-rule .eyebrow { color: var(--gold); padding-top: 6px; }

.lp-rule p {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(246, 242, 236, 0.85);
}

.lp-rule .lp-formula { font-family: var(--font-mono); color: var(--gold); white-space: nowrap; }

.lp-linkrow {
  display: flex;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------- lp: online */

.lp-online .lp-shell {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: start;
}

.lp-online .lp-glow {
  background: radial-gradient(90% 90% at 20% 100%, rgba(232, 185, 106, 0.14), transparent 62%);
}

.lp-online h2 { font-size: clamp(2rem, 5vw, 3.25rem); margin: 16px 0 0; }
.lp-online .lp-online-copy { font-size: 18px; line-height: 1.68; margin: 24px 0 0; max-width: 52ch; }
.lp-online .cta-row { margin-top: 34px; }

.lp-features {
  display: grid;
  gap: 1px;
  background: rgba(246, 242, 236, 0.14);
  border: 1px solid rgba(246, 242, 236, 0.14);
}

.lp-features > div { background: var(--dark); padding: 24px 26px; }
.praxis-lead {
  max-width: 62ch;
  margin-bottom: 22px;
}

.lp-features h3 { margin: 0 0 6px; font-size: 17px; }
.lp-features p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--on-dark-faint); }

/* --------------------------------------------------------------- footer */

.site-footer {
  background: var(--bg-band);
  border-top: 1px solid var(--border-band);
  margin-top: 96px;
  font-size: 15px;
}

/* Landing page: the footer butts straight against the dark closing section. */
.site-footer.is-flush { margin-top: 0; }

.footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 64px var(--gutter) 30px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }

.footer-about {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted-soft);
  max-width: 34ch;
}

.site-footer h2 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  font-weight: 500;
  margin: 0 0 14px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer li { margin: 0; }
.site-footer a { color: var(--link); }
.site-footer a:hover { color: var(--link-hover); }

.footer-bottom {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
  font-size: 13.5px;
  color: #8b7d6d;
}

/* ------------------------------------------------------------ ad slots */

/* Reserve height so Auto Ads do not shift the article while loading. */
.ad-slot {
  margin: 26px 0;
  min-height: 90px;
  text-align: center;
}

/* --------------------------------------------------------- consent bar */

.consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--dark);
  color: var(--on-dark);
  padding: 16px var(--gutter);
  box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
  line-height: 1.55;
}

.consent-bar[hidden] { display: none; }

.consent-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.consent-inner p { margin: 0; flex: 1 1 320px; color: var(--on-dark-soft); }
.consent-inner a { color: var(--gold); text-decoration: underline; }

.consent-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.consent-buttons button {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid rgba(246, 242, 236, 0.4);
  background: transparent;
  color: var(--on-dark);
}

.consent-buttons button.primary {
  background: var(--gold);
  color: var(--on-gold);
  border-color: var(--gold);
}

.consent-buttons button:hover { filter: brightness(1.08); }

/* --------------------------------------------------------------- misc */

.skip-link {
  position: absolute;
  left: -9999px;
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  z-index: 100;
}

.skip-link:focus { left: 8px; top: 8px; }

/* --------------------------------------------------------- responsive */

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .toc ol { columns: 1; }

  .lp-hero .lp-shell,
  .lp-online .lp-shell,
  .lp-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-hero .lp-shell { padding-top: 64px; padding-bottom: 56px; }
  .lp-online .lp-shell { padding-top: 72px; padding-bottom: 72px; }

  /* Logo first on mobile: it is the fastest way to say what this is. */
  .lp-hero-art { order: -1; }
  .lp-hero-art img { max-width: 220px; }

  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: 1fr; }
  .teasers { grid-template-columns: repeat(2, 1fr); }
  .lp-section { padding-top: 64px; }
  .lp-spaced { margin-top: 64px; }
  .lp-shell--roomy { padding-top: 56px; padding-bottom: 56px; }
  .site-footer { margin-top: 64px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; padding-top: 48px; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .related { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .header-inner { padding: 10px var(--gutter); gap: 12px; flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; margin-left: 0; gap: 4px 18px; font-size: 14px; }
  .header-cta { margin-left: auto; }

  .card { padding: 24px 20px; }
  .lp-steps { grid-template-columns: 1fr; }
  .teasers { grid-template-columns: 1fr; }
  .lp-hands .lp-shell { grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 28px; padding-bottom: 28px; }
  .lp-hands figcaption { font-size: 10.5px; letter-spacing: 0.02em; }

  .lp-rule { grid-template-columns: 1fr; gap: 14px; padding: 26px 22px; }
  .lp-rule p { font-size: 17px; }
  .lp-prose { font-size: 17px; }
  .cta { padding: 14px 24px; font-size: 15.5px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .author-box { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
