:root {
  --cream: #f4ecdd;
  --paper: #fbf6ec;
  --ink: #191331;
  --plum: #3c1f4a;
  --terracotta: #c1523a;
  --rust: #a8452e;
  --gold: #c69a4e;
  --rose: #eec3c9;
  --sage: #8a9a7e;
  --line: rgba(25, 19, 49, 0.15);
  --shadow-hard: 7px 7px 0 var(--ink);
  --radius: 3px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 1px 1px, rgba(25, 19, 49, 0.07) 1px, transparent 0);
  background-size: 22px 22px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
}
p { margin: 0; }

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

.skip-link {
  background: var(--ink);
  color: var(--paper);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.wrap { margin: 0 auto; max-width: var(--max-width); padding: 0 32px; }
.hand { font-family: 'Caveat', cursive; }
.muted { color: #4a425e; }
.tag,
.eyebrow {
  color: var(--rust);
  display: inline-flex;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  gap: 8px;
}
.tag::before { content: '✦'; font-family: 'Archivo', sans-serif; font-size: 0.75rem; margin-top: 5px; }
.eyebrow { display: block; margin-bottom: 8px; }

.scribble { display: inline-block; position: relative; }
.scribble::after {
  background: var(--terracotta);
  border-radius: 999px;
  bottom: -0.06em;
  content: '';
  height: 0.08em;
  left: -1%;
  position: absolute;
  transform: rotate(-1.2deg);
  width: 102%;
}

/* Header */
.site-header {
  background: rgba(244, 236, 221, 0.97);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  padding-top: 16px;
}
.brandmark { align-items: center; display: flex; gap: 12px; }
.brandmark .coin {
  border: 2px solid var(--ink);
  border-radius: 50%;
  height: 46px;
  overflow: hidden;
  transform: rotate(-6deg);
  width: 46px;
}
.brandmark .coin img { height: 100%; object-fit: cover; object-position: top center; width: 100%; }
.brandmark .word { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; line-height: 1; }
.brandmark .word span {
  color: var(--rust);
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 0.96rem;
  font-weight: 700;
  margin-top: 2px;
}
.mainnav { align-items: center; display: flex; gap: 28px; }
.mainnav a {
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  padding-bottom: 3px;
  position: relative;
  text-transform: uppercase;
}
.mainnav a:not(.cta)::after {
  background: var(--terracotta);
  bottom: 0;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 180ms ease;
  width: 0;
}
.mainnav a[aria-current='page']::after,
.mainnav a:not(.cta):hover::after { width: 100%; }
.cta,
.btn {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  padding: 12px 24px;
  transition: box-shadow 140ms ease, transform 140ms ease;
}
.cta {
  background: var(--terracotta);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--paper) !important;
  padding: 9px 19px;
}
.btn.primary { background: var(--ink); box-shadow: 5px 5px 0 var(--terracotta); color: var(--cream); }
.btn.secondary { background: var(--terracotta); box-shadow: 5px 5px 0 var(--ink); color: var(--paper); }
.btn.ghost { background: transparent; box-shadow: 5px 5px 0 var(--ink); color: var(--ink); }
.cta:hover,
.btn:hover { box-shadow: 2px 2px 0 var(--ink); transform: translate(2px, 2px); }
.menu-toggle { display: none; }

/* Homepage */
.hero { padding: 74px 0 50px; }
.hero .wrap { align-items: center; display: grid; gap: 50px; grid-template-columns: 1.08fr 0.92fr; }
.hero h1 { font-size: clamp(3rem, 6.1vw, 5rem); font-weight: 620; line-height: 0.96; margin-top: 14px; }
.hero h1 em { color: var(--terracotta); font-weight: 600; }
.hero .lead { color: var(--plum); font-size: 1.14rem; margin-top: 24px; max-width: 50ch; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-portrait { min-height: 500px; position: relative; }
.polaroid {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  margin-left: auto;
  padding: 14px 14px 50px;
  position: relative;
  transform: rotate(3deg);
  width: 82%;
  z-index: 3;
}
.polaroid img { border: 1px solid var(--line); height: 410px; object-fit: cover; object-position: 50% 26%; width: 100%; }
.polaroid .cap {
  bottom: 10px;
  color: var(--rust);
  font-family: 'Caveat', cursive;
  font-size: 1.28rem;
  font-weight: 700;
  left: 16px;
  position: absolute;
}
.hero-sticker {
  align-items: center;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  font-family: 'Caveat', cursive;
  font-size: 1.12rem;
  font-weight: 700;
  height: 118px;
  justify-content: center;
  left: -18px;
  line-height: 1.08;
  padding: 14px;
  position: absolute;
  text-align: center;
  top: 8px;
  transform: rotate(-12deg);
  width: 118px;
  z-index: 4;
}
.hero-flag {
  background: var(--rose);
  border: 2px solid var(--ink);
  bottom: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  left: 0;
  padding: 9px 17px;
  position: absolute;
  transform: rotate(-3deg);
  z-index: 4;
}
.social-dots { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.social-dots a {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  transition: transform 150ms ease, background 150ms ease;
  width: 42px;
}
.social-dots a:hover { background: var(--rose); transform: translateY(-3px) rotate(-5deg); }

.marquee {
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.marquee .track { animation: scroll 34s linear infinite; display: inline-block; }
.marquee span { font-family: 'Fraunces', serif; font-size: 1.18rem; font-style: italic; margin: 0 27px; }
.marquee span::after { color: var(--gold); content: '✦'; font-family: 'Archivo', sans-serif; font-style: normal; margin-left: 27px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.belief { background: var(--plum); color: var(--cream); overflow: hidden; padding: 96px 0; position: relative; text-align: center; }
.belief::before {
  background-image: radial-gradient(circle at 85% 20%, rgba(198, 154, 78, 0.22), transparent 45%), radial-gradient(circle at 10% 85%, rgba(193, 82, 58, 0.25), transparent 40%);
  content: '';
  inset: 0;
  position: absolute;
}
.belief .wrap { position: relative; }
.belief .display { font-size: clamp(2.1rem, 4.8vw, 3.45rem); font-weight: 530; line-height: 1.12; margin: 0 auto; max-width: 18ch; }
.belief .display .hi { color: var(--gold); font-style: italic; }
.belief .note { color: #e6d9e9; font-size: 1.05rem; margin: 24px auto 0; max-width: 58ch; }

.section { padding: 94px 0; }
.section-head { align-items: end; border-bottom: 2px dashed var(--line); display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; margin-bottom: 48px; padding-bottom: 26px; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 600; max-width: 18ch; }
.section-head .right { color: var(--plum); max-width: 40ch; }
.paper-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.paper-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 30px 26px;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.paper-card::after {
  background: rgba(198, 154, 78, 0.55);
  border: 1px solid rgba(25, 19, 49, 0.18);
  content: '';
  height: 18px;
  position: absolute;
  right: 20px;
  top: -10px;
  transform: rotate(-4deg);
  width: 38px;
}
.paper-card:hover { box-shadow: 9px 11px 0 var(--ink); transform: translate(-3px, -5px); }
.paper-card .kicker { color: var(--terracotta); display: block; font-family: 'Caveat', cursive; font-size: 1.14rem; font-weight: 700; }
.paper-card h3 { font-size: 1.42rem; margin: 8px 0 12px; }
.paper-card p { color: #3a3350; font-size: 0.96rem; }
.paper-card .text-link { margin-top: 16px; }
.text-link { color: var(--rust); display: inline-flex; font-weight: 750; gap: 6px; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.practical-band { background: var(--ink); color: var(--cream); padding: 82px 0; }
.practical-band .intro { align-items: end; display: flex; gap: 32px; justify-content: space-between; margin-bottom: 44px; }
.practical-band h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 17ch; }
.practical-band .intro p { color: #cfc6e6; max-width: 42ch; }
.principles { border-top: 1px solid rgba(244, 236, 221, 0.3); display: grid; grid-template-columns: repeat(3, 1fr); }
.principle { border-right: 1px solid rgba(244, 236, 221, 0.3); padding: 30px 30px 0 0; }
.principle + .principle { padding-left: 30px; }
.principle:last-child { border-right: 0; }
.principle .number { color: var(--gold); font-family: 'Caveat', cursive; font-size: 1.6rem; font-weight: 700; }
.principle h3 { font-size: 1.42rem; margin: 8px 0 10px; }
.principle p { color: #ded6ef; font-size: 0.95rem; }

.ideas-list { display: grid; gap: 20px; }
.idea-row {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: 140px 1fr auto;
  padding: 24px 26px;
}
.idea-row:nth-child(2) { margin-left: 8%; transform: rotate(0.35deg); }
.idea-row .category { color: var(--rust); font-family: 'Caveat', cursive; font-size: 1.2rem; font-weight: 700; }
.idea-row h3 { font-size: 1.4rem; }

.books { background: var(--ink); color: var(--cream); }
.books .section-head { border-bottom-color: rgba(244, 236, 221, 0.25); }
.books .section-head .right { color: #cfc6e6; }
.books .eyebrow { color: var(--gold); }
.book-row { display: grid; gap: 56px; grid-template-columns: repeat(2, 1fr); }
.book-card { align-items: flex-start; display: flex; gap: 25px; }
.book-cover-frame { flex: 0 0 210px; position: relative; transform: rotate(-3deg); }
.book-card:nth-child(2) .book-cover-frame { transform: rotate(3deg); }
.book-cover-frame::after { background: var(--terracotta); border: 2px solid var(--cream); content: ''; inset: 0; position: absolute; transform: translate(9px, 9px); z-index: 0; }
.book-cover-frame img { aspect-ratio: 1; border: 2px solid var(--cream); height: auto; object-fit: cover; position: relative; width: 100%; z-index: 1; }
.book-copy .status { color: var(--gold); font-family: 'Caveat', cursive; font-size: 1.08rem; font-weight: 700; }
.book-copy h3 { font-size: 1.55rem; margin-top: 5px; }
.book-copy .subtitle { color: #cfc6e6; display: block; font-size: 0.92rem; font-style: italic; margin: 8px 0 13px; }
.book-copy p { color: #ded6ef; font-size: 0.94rem; }
.book-copy .text-link { color: var(--gold); margin-top: 16px; }

.about .wrap { align-items: center; display: grid; gap: 62px; grid-template-columns: 0.86fr 1.14fr; }
.photo-frame { border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--terracotta); overflow: hidden; position: relative; }
.photo-frame img { height: 520px; object-fit: cover; object-position: top center; width: 100%; }
.about-copy h2 { font-size: clamp(2rem, 3.7vw, 3rem); margin-bottom: 18px; }
.about-copy p { color: #3a3350; font-size: 1.02rem; max-width: 58ch; }
.roles { display: flex; flex-wrap: wrap; gap: 10px; margin: 23px 0 28px; }
.roles span { background: var(--rose); border: 2px solid var(--ink); border-radius: 999px; font-size: 0.84rem; font-weight: 750; padding: 7px 15px; }
.roles span:nth-child(2) { background: var(--gold); }
.roles span:nth-child(3) { background: var(--paper); }
.roles span:nth-child(4) { background: #cfe0c8; }

.expressions { padding: 72px 0 92px; text-align: center; }
.expressions h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 34px; }
.expressions-frame { border: 2px solid var(--ink); box-shadow: var(--shadow-hard); margin: 0 auto; max-width: 760px; overflow: hidden; }
.expressions-frame img { width: 100%; }

.contact { background: var(--terracotta); color: var(--paper); overflow: hidden; padding: 92px 0 62px; position: relative; text-align: center; }
.contact::before { background-image: radial-gradient(circle at 90% 10%, rgba(25, 19, 49, 0.18), transparent 42%); content: ''; inset: 0; position: absolute; }
.contact .wrap { position: relative; }
.contact h2 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin: 0 auto 20px; max-width: 18ch; }
.contact .lead { color: #fdf0ea; font-size: 1.05rem; margin: 0 auto 32px; max-width: 50ch; }
.contact .tag { color: var(--ink); }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }
.contact-links a { background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--ink); color: var(--ink); font-size: 0.88rem; font-weight: 750; padding: 9px 17px; }

.footer { background: var(--ink); color: #b8aecf; font-size: 0.84rem; padding: 25px 0; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.footer .hand { color: var(--gold); font-size: 1.04rem; }

/* Articles index */
.articles-hero { padding: 70px 0 54px; }
.articles-hero .wrap { align-items: center; display: grid; gap: 58px; grid-template-columns: 1.05fr 0.95fr; }
.articles-hero h1 { font-size: clamp(3.1rem, 6vw, 5rem); font-weight: 600; max-width: 11ch; }
.articles-hero h1 em { color: var(--terracotta); }
.articles-hero .lead { color: var(--plum); font-size: 1.12rem; margin-top: 24px; max-width: 48ch; }
.article-portrait .polaroid { width: 88%; }
.article-portrait .polaroid img { height: 330px; object-position: 50% 25%; }
.filters { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.filter-button { background: transparent; border: 0; color: var(--ink); cursor: pointer; font-weight: 700; padding: 5px 0; position: relative; }
.filter-button::after { background: var(--terracotta); bottom: 0; content: ''; height: 2px; left: 0; position: absolute; width: 0; }
.filter-button:hover::after,
.filter-button.is-active::after { width: 100%; }
.featured-article { padding-bottom: 76px; }
.featured-paper {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 42px;
  position: relative;
}
.featured-paper::before { background: rgba(198, 154, 78, 0.55); content: ''; height: 24px; left: 43%; position: absolute; top: -13px; transform: rotate(1deg); width: 110px; }
.featured-paper .category,
.article-card .category { color: var(--rust); font-family: 'Caveat', cursive; font-size: 1.18rem; font-weight: 700; }
.featured-paper h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin: 8px 0 15px; max-width: 18ch; }
.featured-paper p { color: #3a3350; max-width: 58ch; }
.workflow-doodle { align-items: center; display: flex; gap: 20px; justify-content: center; }
.tangle { border: 5px solid var(--terracotta); border-radius: 44% 56% 38% 62%; height: 118px; position: relative; transform: rotate(19deg); width: 118px; }
.tangle::before,
.tangle::after { border: 4px solid var(--terracotta); border-radius: 50%; content: ''; inset: 12px -12px; position: absolute; transform: rotate(37deg); }
.tangle::after { inset: -8px 17px; transform: rotate(-28deg); }
.clear-flow { display: grid; gap: 10px; }
.clear-flow span { background: var(--paper); border: 2px solid var(--ink); display: block; height: 42px; position: relative; width: 90px; }
.clear-flow span::after { background: var(--ink); bottom: -12px; content: ''; height: 12px; left: 50%; position: absolute; width: 2px; }
.clear-flow span:last-child { background: var(--gold); }
.clear-flow span:last-child::after { display: none; }
.latest-articles { padding: 20px 0 96px; }
.latest-articles h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 38px; }
.article-stack { display: grid; gap: 28px; }
.article-card {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  display: grid;
  gap: 25px;
  grid-template-columns: 0.75fr 2fr auto;
  padding: 28px 30px;
  position: relative;
}
.article-card:nth-child(even) { margin-left: 9%; transform: rotate(0.25deg); }
.article-card::before { background: rgba(198, 154, 78, 0.55); content: ''; height: 20px; left: 34px; position: absolute; top: -11px; transform: rotate(-5deg); width: 64px; }
.article-card h3 { font-size: 1.55rem; margin: 5px 0 8px; }
.article-card p { color: #4a425e; font-size: 0.94rem; max-width: 58ch; }
.article-card[hidden] { display: none; }

/* Article detail */
.article-page { background: rgba(251, 246, 236, 0.34); }
.article-hero { padding: 70px 0 64px; }
.article-hero .wrap { align-items: center; display: grid; gap: 72px; grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr); }
.article-category { color: var(--rust); font-family: 'Caveat', cursive; font-size: 1.28rem; font-weight: 700; }
.article-hero h1 { font-size: clamp(2.8rem, 5.15vw, 4.45rem); font-weight: 600; margin: 10px 0 20px; max-width: 14ch; }
.article-hero h1 em { color: var(--terracotta); }
.article-deck { color: var(--plum); font-size: 1.08rem; max-width: 55ch; }
.article-meta { color: #4f485f; font-size: 0.82rem; font-weight: 650; margin-top: 26px; }
.article-meta span { color: var(--gold); margin: 0 6px; }
.article-workflow { min-height: 200px; position: relative; }
.article-workflow .tangle { border-color: var(--ink); height: 112px; width: 112px; }
.article-workflow .tangle::before,
.article-workflow .tangle::after { border-color: var(--ink); }
.article-workflow .flow-arrow { color: var(--ink); font-family: 'Caveat', cursive; font-size: 3.3rem; line-height: 1; }
.article-workflow .clear-flow { align-items: center; display: flex; gap: 12px; }
.article-workflow .clear-flow span { background: transparent; border-radius: 50%; height: 46px; width: 46px; }
.article-workflow .clear-flow span::after { bottom: auto; height: 2px; left: 100%; top: 50%; width: 12px; }
.article-workflow .clear-flow span:last-child { background: transparent; }
.article-workflow .idea-rays { color: var(--gold); font-size: 2rem; position: absolute; right: 5%; top: 22%; transform: rotate(12deg); }
.article-body { padding: 10px 0 76px; }
.article-layout { display: grid; gap: 70px; grid-template-columns: minmax(0, 710px) 275px; justify-content: center; }
.prose { font-size: 1rem; line-height: 1.64; }
.prose > * + * { margin-top: 1.25em; }
.prose h2 { border-top: 1px solid rgba(198, 154, 78, 0.72); font-size: clamp(1.8rem, 3vw, 2.25rem); margin-top: 1.75em; padding-top: 0.9em; }
.prose h2:first-of-type { border-top: 0; margin-top: 1.4em; padding-top: 0; }
.prose h3 { align-items: start; display: grid; font-family: 'Archivo', sans-serif; font-size: 1rem; font-weight: 760; gap: 12px; grid-template-columns: 23px 1fr; margin-top: 1.25em; }
.prose h3::before { color: var(--terracotta); content: '✦'; font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 400; }
.prose p { color: #302942; }
.prose ul,
.prose ol { color: #302942; padding-left: 1.4em; }
.prose li + li { margin-top: 0.5em; }
.prose a { color: var(--rust); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: 1.28rem;
  font-style: italic;
  margin: 2.5em 0;
  max-width: 610px;
  padding: 28px 31px;
  position: relative;
}
.prose blockquote::before { background: rgba(198, 154, 78, 0.58); content: ''; height: 20px; left: 42%; position: absolute; top: -11px; transform: rotate(-2deg); width: 75px; }
.prose strong { color: var(--ink); }
.article-aside { align-self: start; position: sticky; top: 110px; }
.pull-quote { background: var(--terracotta); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); color: var(--paper); font-family: 'Fraunces', serif; font-size: 1.35rem; line-height: 1.42; padding: 36px 30px; position: relative; transform: rotate(1.2deg); }
.pull-quote::after { background: rgba(215, 179, 107, 0.75); content: ''; height: 24px; left: 36%; position: absolute; top: -14px; transform: rotate(-2deg); width: 78px; }
.pull-quote::before { content: '“'; display: block; font-size: 2.8rem; line-height: 0.7; margin-bottom: 10px; }
.author-block { align-items: stretch; background: var(--paper); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); display: grid; grid-template-columns: 0.78fr 1.22fr; margin: 72px auto 0; max-width: 985px; }
.author-block img { height: 100%; min-height: 270px; object-fit: cover; object-position: 50% 18%; width: 100%; }
.author-copy { border-left: 3px solid var(--terracotta); padding: 38px 44px; }
.author-copy h2 { font-size: 2.15rem; }
.author-copy .hand { color: var(--rust); display: block; font-size: 1.25rem; font-weight: 700; margin: 7px 0 16px; }
.author-copy .text-link { margin-top: 20px; }
.related-reading { padding: 8px 0 88px; }
.related-reading .eyebrow { margin-bottom: 16px; }
.related-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.related-card { align-items: start; display: grid; gap: 22px; grid-template-columns: 44px 1fr; padding: 25px 28px; }
.related-card .related-icon { color: var(--terracotta); font-family: 'Fraunces', serif; font-size: 2.2rem; line-height: 1; }
.related-card h2 { font-size: 1.18rem; margin: 0 0 7px; }
.related-card p { font-size: 0.83rem; line-height: 1.45; }
.related-card .text-link { font-family: 'Caveat', cursive; font-size: 1.05rem; margin-top: 12px; }
.article-cta { padding: 58px 0 62px; }
.article-cta h2 { max-width: none; }
.article-cta h2 em { color: var(--gold); font-style: italic; }

/* Editorial footer used by the generated Articles section */
.editorial-footer { background: var(--cream); color: var(--ink); }
.footer-ribbon { background: var(--ink); color: var(--cream); overflow: hidden; padding: 12px 0; }
.footer-ribbon-track { align-items: center; display: flex; font-family: 'Caveat', cursive; font-size: 1.08rem; gap: 24px; justify-content: space-around; min-width: 900px; white-space: nowrap; }
.footer-ribbon-track i { color: var(--gold); font-size: 0.65rem; }
.footer-directory { display: grid; gap: 34px; grid-template-columns: 1.4fr repeat(4, 1fr); padding-bottom: 34px; padding-top: 36px; }
.footer-directory > div { display: flex; flex-direction: column; gap: 5px; }
.footer-directory strong { font-family: 'Fraunces', serif; font-size: 0.92rem; margin-bottom: 4px; }
.footer-directory a:not(.brandmark) { color: #51495f; font-size: 0.78rem; }
.footer-directory a:not(.brandmark):hover { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.footer-brand { align-self: start; }
.footer-socials { display: flex; gap: 8px; margin-top: 4px; }
.footer-socials a { align-items: center; border: 2px solid var(--ink); border-radius: 50%; display: flex; font-size: 0.68rem !important; font-weight: 800; height: 34px; justify-content: center; width: 34px; }
.footer-bottom { border-top: 1px solid rgba(25, 19, 49, 0.35); display: flex; font-size: 0.72rem; justify-content: space-between; padding-bottom: 18px; padding-top: 12px; }
.footer-bottom .hand { font-size: 1rem; font-weight: 700; }

/* Services */
.service-hero { padding: 74px 0 60px; }
.service-hero .wrap { align-items: center; display: grid; gap: 58px; grid-template-columns: 1.05fr 0.95fr; }
.service-hero h1 { font-size: clamp(3rem, 5.8vw, 4.8rem); margin: 14px 0 22px; }
.service-hero h1 em { color: var(--terracotta); }
.service-hero .lead { color: var(--plum); font-size: 1.12rem; max-width: 53ch; }
.service-photo { border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--terracotta); transform: rotate(1.5deg); }
.service-photo img { height: 520px; object-fit: cover; object-position: top center; width: 100%; }
.offers { display: grid; gap: 30px; }
.offer {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1.4fr;
  padding: 34px;
  position: relative;
}
.offer:nth-child(even) { grid-template-columns: 1.4fr 1fr; }
.offer:nth-child(even) .offer-label { order: 2; }
.offer::before { background: rgba(198, 154, 78, 0.58); content: ''; height: 21px; left: 44%; position: absolute; top: -12px; transform: rotate(-2deg); width: 82px; }
.offer-label { align-items: center; background: var(--rose); border: 2px solid var(--ink); display: flex; flex-direction: column; justify-content: center; min-height: 210px; padding: 24px; text-align: center; }
.offer-label .price { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 650; }
.offer-label .hand { color: var(--rust); font-size: 1.25rem; font-weight: 700; }
.offer-copy h2 { font-size: 2.05rem; }
.offer-copy p { color: #3a3350; margin: 13px 0 18px; }
.offer-copy ul { padding-left: 1.25em; }
.offer-copy li + li { margin-top: 7px; }
.faq { display: grid; gap: 18px; }
.faq details { background: var(--paper); border: 2px solid var(--ink); padding: 20px 22px; }
.faq summary { cursor: pointer; font-family: 'Fraunces', serif; font-size: 1.24rem; font-weight: 650; }
.faq details p { color: #3a3350; margin-top: 12px; }

.cta-band { background: var(--plum); color: var(--cream); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 auto 13px; max-width: 22ch; }
.cta-band p { color: #e6d9e9; margin: 0 auto 28px; max-width: 54ch; }

/* SME AI & Workflow Check */
.check-main { min-height: calc(100vh - 145px); }
.check-shell { padding: 62px 0 86px; }
.check-paper {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}
.check-paper::before,
.check-paper::after {
  background: rgba(198, 154, 78, 0.55);
  border: 1px solid rgba(25, 19, 49, 0.14);
  content: '';
  height: 24px;
  position: absolute;
  top: -4px;
  width: 95px;
  z-index: 3;
}
.check-paper::before { left: 9%; transform: rotate(-4deg); }
.check-paper::after { right: 10%; transform: rotate(3deg); }
.check-intro {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 610px;
  padding: 70px 72px;
}
.check-intro h1,
.check-question,
.result-heading h1 { font-size: clamp(2.55rem, 5vw, 4.35rem); font-weight: 600; }
.check-intro h1 em { color: var(--terracotta); }
.check-intro-copy > p { color: var(--plum); font-size: 1.1rem; margin: 23px 0 30px; max-width: 53ch; }
.check-note { color: var(--rust); display: block; font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.check-facts {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 27px 0 0;
  max-width: 510px;
  padding: 0;
}
.check-facts li { border-left: 1px solid var(--line); display: grid; padding: 2px 15px; }
.check-facts li:first-child { border-left: 0; padding-left: 0; }
.check-facts strong { color: var(--rust); font-family: 'Fraunces', serif; font-size: 1.05rem; }
.check-facts span { color: #51495f; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.025em; text-transform: uppercase; }
.check-visual {
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--terracotta);
  display: grid;
  gap: 17px;
  justify-items: center;
  min-height: 400px;
  padding: 42px 30px;
  transform: rotate(1.5deg);
}
.check-visual .hand { color: var(--rust); font-size: 1.24rem; font-weight: 700; }
.check-tangle {
  border: 5px solid var(--terracotta);
  border-radius: 41% 59% 55% 45%;
  height: 112px;
  position: relative;
  transform: rotate(18deg);
  width: 112px;
}
.check-tangle::before,
.check-tangle::after {
  border: 4px solid var(--terracotta);
  border-radius: 50%;
  content: '';
  inset: 12px -13px;
  position: absolute;
  transform: rotate(38deg);
}
.check-tangle::after { inset: -9px 18px; transform: rotate(-28deg); }
.check-arrow { font-family: 'Fraunces', serif; font-size: 2.2rem; line-height: 1; }
.check-flow { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); width: 100%; }
.check-flow i {
  align-items: center;
  background: var(--rose);
  border: 2px solid var(--ink);
  display: flex;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 5px;
  position: relative;
  text-align: center;
}
.check-flow i:nth-child(2) { background: #efd9a9; }
.check-flow i:last-child { background: #cbd5c4; }
.check-flow i:not(:last-child)::after { background: var(--ink); content: ''; height: 2px; position: absolute; right: -10px; top: 22px; width: 10px; }

.check-questions {
  --question-accent: var(--terracotta);
  --question-tint: var(--rose);
  min-height: 650px;
  padding: 42px 72px 54px;
}
.check-questions[data-domain='People'] { --question-accent: var(--terracotta); --question-tint: #f3d1d2; }
.check-questions[data-domain='Process'] { --question-accent: #9a6c1e; --question-tint: #f2dfb5; }
.check-questions[data-domain='Practical AI'] { --question-accent: #5f7357; --question-tint: #d7dfd1; }
.check-lenses { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); margin: 0 auto 25px; max-width: 760px; }
.check-lenses > span {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  color: #625a70;
  display: flex;
  font-size: 0.76rem;
  gap: 8px;
  justify-content: center;
  min-height: 38px;
  padding: 7px 10px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.check-lenses i { background: currentColor; border-radius: 50%; height: 7px; width: 7px; }
.check-lenses .is-active { background: var(--question-tint); border: 2px solid var(--question-accent); color: var(--ink); transform: translateY(-2px); }
.check-progress-row { align-items: center; display: flex; font-size: 0.9rem; font-weight: 700; justify-content: space-between; }
.check-progress-row .hand { color: var(--question-accent); font-size: 1.2rem; }
.check-progress { background: #e2d8c8; border-radius: 999px; height: 9px; margin-top: 10px; overflow: hidden; }
.check-progress span { background: var(--question-accent); border-radius: inherit; display: block; height: 100%; transition: background 160ms ease, width 220ms ease; width: 11.11%; }
.check-question-wrap { margin: 32px auto 0; max-width: 940px; }
.check-question-card {
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-left: 9px solid var(--question-accent);
  box-shadow: 5px 5px 0 var(--ink);
  display: grid;
  gap: 27px;
  grid-template-columns: 78px 1fr;
  padding: 28px 32px 27px 24px;
}
.check-stamp {
  align-items: center;
  background: var(--question-tint);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  height: 72px;
  justify-content: center;
  transform: rotate(-5deg);
  width: 72px;
}
.check-question { font-size: clamp(1.85rem, 3.25vw, 2.65rem); line-height: 1.13; max-width: 27ch; }
.check-help { color: #51495f; font-size: 0.9rem; margin-top: 12px; }
.check-options { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin-top: 25px; }
.check-options button {
  align-content: start;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 7px 13px;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto 1fr;
  min-height: 128px;
  padding: 18px 17px;
  text-align: left;
  transition: background 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}
.check-options button::before {
  align-self: start;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: '';
  grid-row: 1 / 3;
  height: 34px;
  margin-top: 1px;
  transition: background 120ms ease, box-shadow 120ms ease;
  width: 34px;
}
.check-options button[data-check-answer='1']::before { background: linear-gradient(90deg, var(--question-accent) 50%, var(--paper) 50%); }
.check-options button[data-check-answer='2']::before { background: var(--question-accent); box-shadow: inset 0 0 0 6px var(--paper); }
.check-options button:hover,
.check-options button.is-selected { background: var(--question-tint); box-shadow: 2px 2px 0 var(--ink); transform: translate(2px, 2px); }
.check-options button.is-selected::before { box-shadow: inset 0 0 0 5px var(--question-tint); }
.check-options button:disabled { cursor: wait; }
.check-options strong { align-self: center; font-family: 'Fraunces', serif; font-size: 1.16rem; }
.check-options span { color: #51495f; font-size: 0.84rem; line-height: 1.45; }
.check-back,
.check-restart {
  background: transparent;
  border: 0;
  color: var(--rust);
  cursor: pointer;
  font-weight: 750;
  margin-top: 30px;
  padding: 7px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.check-impact { min-height: 650px; padding: 54px 72px 58px; }
.impact-heading { max-width: 820px; }
.impact-heading > .hand { color: var(--rust); display: block; font-size: 1.2rem; font-weight: 700; margin-bottom: 9px; }
.impact-heading h1 { font-size: clamp(2.4rem, 4.5vw, 3.85rem); font-weight: 600; line-height: 1.03; }
.impact-heading h1 em { color: var(--terracotta); }
.impact-heading > p { color: var(--plum); font-size: 1.02rem; margin-top: 16px; max-width: 66ch; }
.impact-gap-note {
  align-items: center;
  background: #f2dfb5;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--gold);
  display: flex;
  gap: 13px;
  margin: 28px 0 30px;
  max-width: 720px;
  padding: 13px 17px;
  transform: rotate(-0.4deg);
}
.impact-gap-note strong { color: var(--rust); font-family: 'Fraunces', serif; font-size: 1.38rem; white-space: nowrap; }
.impact-gap-note span { color: #40384d; font-size: 0.88rem; font-weight: 700; }
.impact-form-grid { display: grid; gap: 17px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.impact-field {
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: grid;
  gap: 7px;
  padding: 20px;
}
.impact-field > span:first-child { font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 650; }
.impact-field > small { color: #5b5367; line-height: 1.42; min-height: 2.85em; }
.impact-field input,
.impact-field select {
  appearance: none;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  min-height: 49px;
  padding: 10px 12px;
  width: 100%;
}
.impact-field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px; background-repeat: no-repeat; background-size: 6px 6px, 6px 6px; padding-right: 36px; }
.impact-field input:focus,
.impact-field select:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(177, 75, 49, 0.17); outline: 0; }
.impact-field [aria-invalid='true'] { background: #fff3f1; border-color: #a52c2c; }
.money-input { align-items: stretch; display: grid; grid-template-columns: auto 1fr; }
.money-input b { align-items: center; background: var(--plum); border: 2px solid var(--plum); color: var(--cream); display: flex; font-size: 0.84rem; justify-content: center; min-width: 49px; }
.money-input input { border-left: 0; }
.impact-error { background: #fff0ec; border-left: 5px solid #a52c2c; color: #7e2020; font-size: 0.9rem; font-weight: 750; margin-top: 20px; padding: 12px 15px; }
.impact-form-actions { align-items: center; display: flex; gap: 24px; justify-content: space-between; margin-top: 28px; }
.impact-form-actions .check-back { margin-top: 0; }
.impact-privacy { color: #655d70; display: block; font-size: 0.78rem; margin-top: 14px; text-align: right; }

.check-results { padding: 58px 72px 58px; }
.result-impact-hero {
  background: var(--plum);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--terracotta);
  color: var(--cream);
  overflow: hidden;
  padding: 43px 42px 36px;
  position: relative;
}
.result-impact-hero::after { border: 3px solid rgba(244, 236, 221, 0.17); border-radius: 50%; content: ''; height: 220px; position: absolute; right: -76px; top: -92px; transform: rotate(20deg); width: 220px; }
.result-impact-hero > .hand { color: var(--gold); display: block; font-size: 1.3rem; font-weight: 700; position: relative; z-index: 1; }
.result-impact-hero > h1 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; margin-top: 5px; max-width: 22ch; position: relative; z-index: 1; }
.impact-total { color: var(--gold); display: block; font-family: 'Fraunces', serif; font-size: clamp(3.8rem, 8vw, 6.8rem); letter-spacing: -0.045em; line-height: 0.98; margin: 13px 0 14px; overflow-wrap: anywhere; position: relative; z-index: 1; }
.impact-result-lede { color: #ece2f0; font-size: 1rem; max-width: 70ch; position: relative; z-index: 1; }
.impact-result-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 29px; position: relative; z-index: 1; }
.impact-result-grid > div { background: var(--cream); border: 2px solid var(--ink); color: var(--ink); display: grid; gap: 5px; min-height: 130px; padding: 17px; }
.impact-result-grid span { color: #51495f; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.impact-result-grid strong { font-family: 'Fraunces', serif; font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.08; }
.impact-result-grid small { align-self: end; color: #5f576a; font-size: 0.75rem; }
.impact-result-grid .impact-recovery { background: var(--terracotta); color: var(--paper); }
.impact-result-grid .impact-recovery span,
.impact-result-grid .impact-recovery small { color: #fff0e9; }
.impact-bridge { background: rgba(244, 236, 221, 0.1); border-left: 4px solid var(--gold); color: var(--paper); font-size: 1rem; margin-top: 22px; padding: 12px 15px; position: relative; z-index: 1; }
.impact-method { color: #dcd1e2; font-size: 0.79rem; margin-top: 17px; position: relative; z-index: 1; }
.impact-method summary { color: var(--gold); cursor: pointer; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.impact-method p { line-height: 1.55; margin-top: 9px; max-width: 86ch; }
.result-heading { border-bottom: 2px dashed var(--line); margin-top: 54px; padding-bottom: 35px; position: relative; }
.result-heading > .hand { color: var(--rust); font-size: 1.25rem; font-weight: 700; }
.result-band { background: var(--rose); border: 2px solid var(--ink); display: table; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.07em; margin-top: 13px; padding: 5px 10px; text-transform: uppercase; transform: rotate(-1deg); }
.result-heading h1 { font-size: clamp(2.25rem, 4vw, 3.35rem); margin: 8px 205px 15px 0; max-width: 20ch; }
.result-heading > p { color: var(--plum); font-size: 1.02rem; max-width: 68ch; }
.result-priority {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--terracotta);
  display: grid;
  gap: 2px 18px;
  grid-template-columns: auto 1fr;
  margin-top: 28px;
  max-width: 700px;
  padding: 18px 21px;
}
.result-priority .hand { color: var(--rust); font-size: 1.05rem; font-weight: 700; grid-column: 1 / -1; }
.result-priority strong { font-family: 'Fraunces', serif; font-size: 1.45rem; }
.result-priority p { border-left: 1px solid var(--line); color: #51495f; font-size: 0.84rem; padding-left: 18px; }
.overall-score {
  align-items: center;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  height: 145px;
  justify-content: center;
  position: absolute;
  right: 5px;
  text-align: center;
  top: -15px;
  transform: rotate(5deg);
  width: 145px;
}
.overall-score strong { font-family: 'Fraunces', serif; font-size: 2.15rem; line-height: 1; }
.overall-score span { font-size: 0.7rem; font-weight: 800; margin-top: 6px; max-width: 12ch; text-transform: uppercase; }
.result-domains { display: grid; gap: 19px; grid-template-columns: repeat(3, 1fr); margin-top: 36px; }
.result-domain { background: var(--cream); border: 2px solid var(--ink); padding: 22px 20px; position: relative; }
.result-domain.is-priority { border-color: var(--terracotta); box-shadow: 4px 4px 0 var(--terracotta); }
.result-domain.is-priority::before { background: var(--terracotta); color: var(--paper); content: 'start here'; font-family: 'Caveat', cursive; font-size: 1rem; font-weight: 700; padding: 2px 10px; position: absolute; right: 11px; top: -15px; transform: rotate(2deg); }
.result-domain-head { align-items: baseline; display: flex; justify-content: space-between; }
.result-domain h2 { font-size: 1.42rem; }
.result-domain-head strong { color: var(--rust); }
.result-bar { background: #ded3c2; height: 9px; margin: 16px 0 12px; overflow: hidden; }
.result-bar span { background: var(--terracotta); display: block; height: 100%; transition: width 550ms ease; width: 0; }
.result-domain[data-level='forming'] .result-bar span { background: var(--gold); }
.result-domain[data-level='strong'] .result-bar span { background: var(--sage); }
.result-domain p { color: #51495f; font-size: 0.88rem; }
.result-actions { margin-top: 43px; }
.result-actions ol { counter-reset: next-move; display: grid; gap: 17px; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; margin: 20px 0 0; padding: 0; }
.result-actions li {
  align-items: flex-start;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-top: 5px solid var(--terracotta);
  box-shadow: 4px 4px 0 var(--ink);
  color: #302942;
  counter-increment: next-move;
  display: grid;
  gap: 13px;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 178px;
  padding: 21px 18px;
}
.result-actions li::before { align-items: center; background: var(--paper); border: 2px solid var(--terracotta); border-radius: 50%; color: var(--rust); content: counter(next-move, decimal-leading-zero); display: flex; font-family: 'Caveat', cursive; font-size: 1.05rem; font-weight: 700; height: 36px; justify-content: center; width: 36px; }
.result-action-copy { min-width: 0; }
.result-action-copy strong { display: block; font-family: 'Fraunces', serif; font-size: 1.08rem; margin: 4px 0 9px; }
.result-action-copy span { color: #51495f; display: block; font-size: 0.88rem; line-height: 1.52; overflow-wrap: normal; word-break: normal; }
.result-cta {
  background: var(--plum);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--terracotta);
  color: var(--cream);
  margin-top: 48px;
  padding: 40px 38px;
  text-align: center;
}
.result-cta .hand { color: var(--gold); display: block; font-size: 1.28rem; font-weight: 700; }
.result-cta h2 { font-size: clamp(2rem, 3.4vw, 2.65rem); margin: 6px auto 12px; max-width: 24ch; }
.result-cta p { color: #e7dced; margin: 0 auto 26px; max-width: 65ch; }
.result-cta small { color: #cfc6e6; display: block; margin-top: 15px; }
.check-noscript { background: #fff3cd; border: 2px solid var(--ink); margin: 20px; padding: 20px; }

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

@media (max-width: 960px) {
  .mainnav {
    align-items: flex-start;
    background: var(--cream);
    border-top: 2px solid var(--ink);
    flex-direction: column;
    gap: 22px;
    inset: 78px 0 0;
    padding: 30px 32px;
    position: fixed;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }
  .mainnav.open { transform: translateX(0); }
  .menu-toggle {
    align-items: center;
    background: transparent;
    border: 2px solid var(--ink);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 40px;
    justify-content: center;
    width: 44px;
  }
  .menu-toggle span { background: var(--ink); display: block; height: 2px; width: 20px; }
  .hero .wrap,
  .articles-hero .wrap,
  .article-hero .wrap,
  .service-hero .wrap,
  .about .wrap,
  .check-intro { grid-template-columns: 1fr; }
  .hero-portrait { margin: 10px auto 0; max-width: 470px; width: 100%; }
  .paper-grid { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: 1fr; }
  .principle,
  .principle + .principle { border-bottom: 1px solid rgba(244, 236, 221, 0.3); border-right: 0; padding: 28px 0; }
  .book-row { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: minmax(0, 760px); }
  .article-aside { position: static; }
  .article-aside .pull-quote { margin: 0 auto; max-width: 500px; }
  .check-intro { padding: 64px 54px; }
  .check-questions,
  .check-impact,
  .check-results { padding-left: 54px; padding-right: 54px; }
  .check-visual { min-height: 330px; }
  .impact-result-grid { grid-template-columns: 1fr; }
  .impact-result-grid > div { min-height: 0; }
  .result-domains { grid-template-columns: 1fr; }
  .result-actions ol { grid-template-columns: 1fr; }
  .result-actions li { min-height: 0; }
  .footer-directory { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .wrap { padding: 0 21px; }
  .hero,
  .articles-hero,
  .article-hero,
  .service-hero { padding-top: 52px; }
  .hero h1,
  .articles-hero h1,
  .article-hero h1,
  .service-hero h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .hero-portrait { min-height: 450px; }
  .polaroid { width: 90%; }
  .polaroid img { height: 350px; }
  .hero-sticker { height: 94px; left: -5px; width: 94px; }
  .paper-grid,
  .related-grid { grid-template-columns: 1fr; }
  .practical-band .intro { align-items: flex-start; flex-direction: column; }
  .idea-row,
  .article-card { grid-template-columns: 1fr; }
  .idea-row:nth-child(2),
  .article-card:nth-child(even) { margin-left: 0; transform: none; }
  .book-card { flex-direction: column; }
  .book-cover-frame { flex-basis: auto; max-width: 280px; width: 82%; }
  .featured-paper { grid-template-columns: 1fr; padding: 30px 24px; }
  .workflow-doodle { margin-top: 20px; }
  .author-block { grid-template-columns: 1fr; }
  .author-block img { max-height: 380px; }
  .author-copy { border-left: 0; border-top: 3px solid var(--terracotta); padding: 30px 24px; }
  .related-card { grid-template-columns: 35px 1fr; padding: 23px 20px; }
  .footer-directory { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 4px; }
  .offer,
  .offer:nth-child(even) { grid-template-columns: 1fr; padding: 25px; }
  .offer:nth-child(even) .offer-label { order: 0; }
  .check-shell { padding: 30px 0 60px; }
  .check-paper { min-height: 0; }
  .check-intro,
  .check-questions,
  .check-impact,
  .check-results { min-height: 0; padding: 52px 24px 42px; }
  .check-intro h1 { font-size: clamp(2.55rem, 12vw, 3.4rem); }
  .check-facts { max-width: none; }
  .check-visual { min-height: 300px; padding: 34px 20px; }
  .check-lenses { gap: 5px; margin-bottom: 21px; }
  .check-lenses > span { font-size: 0.67rem; gap: 5px; padding: 6px 4px; }
  .check-lenses i { height: 6px; width: 6px; }
  .check-question-card { align-items: start; gap: 16px; grid-template-columns: 58px 1fr; padding: 22px 19px 21px 16px; }
  .check-stamp { font-size: 1.45rem; height: 54px; width: 54px; }
  .check-question { font-size: clamp(1.72rem, 8vw, 2.2rem); }
  .check-options { grid-template-columns: 1fr; }
  .check-options button { min-height: 0; }
  .impact-gap-note { align-items: flex-start; flex-direction: column; gap: 3px; }
  .impact-form-grid { grid-template-columns: 1fr; }
  .impact-field > small { min-height: 0; }
  .impact-form-actions { align-items: stretch; flex-direction: column-reverse; gap: 13px; }
  .impact-form-actions .btn { width: 100%; }
  .impact-privacy { text-align: left; }
  .result-impact-hero { padding: 34px 20px 29px; }
  .impact-total { font-size: clamp(3.3rem, 17vw, 5rem); }
  .result-heading h1 { margin-right: 0; padding-top: 150px; }
  .overall-score { left: 0; right: auto; top: 14px; }
  .result-priority { grid-template-columns: 1fr; }
  .result-priority p { border-left: 0; border-top: 1px solid var(--line); margin-top: 9px; padding: 10px 0 0; }
  .result-cta { padding: 31px 20px; }
  .result-cta .btn { width: 100%; }
  .footer .wrap { flex-direction: column; }
}
