/* Editorial Commerce: warm paper, graphite ink, burnt-orange actions,
 asymmetrical editorial rhythm, Fraunces display type, DM Sans UI. */
:root {
  --paper: #f3efe7;
  --paper-deep: #e9e2d6;
  --paper-light: #fbfaf7;
  --ink: #171814;
  --ink-soft: #51504b;
  --ink-faint: #7f7b72;
  --line: rgba(23, 24, 20, 0.16);
  --line-dark: rgba(243, 239, 231, 0.2);
  --orange: #e65b2a;
  --orange-dark: #ba431d;
  --ochre: #efc450;
  --ease-editorial: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(255, 255, 255, 0.72),
      transparent 24rem
    ),
    var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  content: "";
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(230, 91, 42, 0.42);
  outline-offset: 4px;
}
.site-shell {
  overflow: clip;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(1.25rem, 4vw, 4.8rem);
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 239, 231, 0.88);
  box-shadow: 0 10px 35px rgba(23, 24, 20, 0.05);
  backdrop-filter: blur(16px);
}
.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-lockup > span {
  display: grid;
  gap: 0.14rem;
}
.brand-lockup strong {
  font-size: 0.91rem;
  letter-spacing: 0.18em;
}
.brand-lockup small,
.footer-brand span {
  color: var(--ink-faint);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.6rem);
  margin: 0 clamp(2rem, 5vw, 5.5rem) 0 auto;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.desktop-nav a,
.text-link,
.scroll-cue {
  transition:
    color 180ms ease,
    transform 180ms ease;
}
.desktop-nav a:hover,
.text-link:hover,
.scroll-cue:hover {
  color: var(--orange);
}
.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--paper-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 160ms var(--ease-editorial),
    box-shadow 160ms var(--ease-editorial),
    background-color 160ms ease;
}
.header-cta {
  padding: 0.84rem 1.08rem;
}
.header-cta:hover,
.primary-button:hover {
  transform: translate(-2px, -3px);
  background: var(--orange-dark);
  box-shadow: 6px 7px 0 rgba(23, 24, 20, 0.14);
}
.header-cta:active,
.primary-button:active {
  transform: scale(0.97);
  box-shadow: 2px 2px 0 rgba(23, 24, 20, 0.12);
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: 1440px;
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(2.9rem, 5.4vw, 4.8rem) clamp(1.25rem, 8vw, 8.8rem)
    clamp(2.4rem, 4.8vw, 4.2rem);
}
.edition-rail {
  position: absolute;
  top: 10rem;
  left: clamp(0.45rem, 2.3vw, 2.3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-faint);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}
.edition-rail::before {
  width: 1px;
  height: 48px;
  background: var(--orange);
  content: "";
}
.edition-rail b {
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding-top: 1.3rem;
}
.eyebrow,
.form-kicker,
.closing-kicker {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 91, 42, 0.12);
}
h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}
h1 {
  max-width: 740px;
  margin: 1.2rem 0 1.55rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h1 em,
h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 650;
}
.hero-intro {
  max-width: 550px;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.6;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.65rem;
  color: var(--ink-faint);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}
.hero-meta strong {
  color: var(--ink);
}
.meta-rule {
  width: 30px;
  height: 1px;
  background: var(--orange);
}
.newsletter-card {
  width: min(100%, 570px);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 16px 20px 0 rgba(23, 24, 20, 0.055);
}
.form-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}
.form-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ochre);
  color: var(--ink);
}
.form-kicker {
  margin-bottom: 0.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}
.form-heading h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
#newsletter-form {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0.7rem;
}
.form-field {
  position: relative;
  display: grid;
  gap: 0.45rem;
}
.form-field > span {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.form-field > span small {
  color: var(--ink-faint);
  font-size: 0.62rem;
  font-weight: 500;
}
.form-field input {
  width: 100%;
  min-height: 47px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-light);
  color: var(--ink);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}
.form-field input::placeholder {
  color: #a6a098;
}
.form-field input:focus {
  border-color: var(--orange);
  box-shadow: 4px 4px 0 rgba(230, 91, 42, 0.12);
  outline: none;
}
.form-field.is-invalid input {
  border-color: #c33c2b;
  box-shadow: 4px 4px 0 rgba(195, 60, 43, 0.12);
}
.field-error {
  display: none;
  color: #af3625;
  font-size: 0.62rem;
}
.form-field.is-invalid .field-error {
  display: block;
}
.form-submit {
  grid-column: 1 / -1;
  min-height: 52px;
  margin-top: 0.35rem;
  border: 0;
  cursor: pointer;
}
.form-note {
  grid-column: 1 / -1;
  margin: 0.1rem 0 0;
  color: var(--ink-faint);
  font-size: 0.67rem;
  line-height: 1.5;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.success-state {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px dashed rgba(230, 91, 42, 0.6);
  background: rgba(239, 196, 80, 0.16);
}
.success-icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper-light);
}
.success-state strong {
  font-size: 0.93rem;
}
.success-state p {
  margin: 0.28rem 0 0;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.45;
}
.hero-visual {
  position: relative;
  min-height: 630px;
  padding: 1.4rem 0 2rem;
}
.visual-index {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.book-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  margin-top: 1.5rem;
  border: 1px solid rgba(23, 24, 20, 0.1);
  background: var(--paper-deep);
  isolation: isolate;
}
.book-stage::before,
.book-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
}
.book-stage::before {
  inset: 14% 13%;
  border: 1px solid rgba(230, 91, 42, 0.42);
  transform: rotate(5.5deg);
}
.book-stage::after {
  top: 11%;
  left: 7%;
  width: 80px;
  height: 18px;
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
  transform: rotate(-28deg);
}
.hero-book {
  width: min(77%, 430px);
  max-height: 590px;
  object-fit: cover;
  box-shadow: 26px 32px 0 rgba(23, 24, 20, 0.11);
  transform: rotate(2deg);
  transition:
    transform 500ms var(--ease-editorial),
    box-shadow 500ms var(--ease-editorial);
}
.book-stage:hover .hero-book {
  box-shadow: 33px 39px 0 rgba(23, 24, 20, 0.14);
  transform: rotate(-1deg) translateY(-7px);
}
.book-sticker {
  position: absolute;
  z-index: 1;
  top: 17%;
  left: 3%;
  display: grid;
  width: 84px;
  height: 84px;
  place-content: center;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.52rem;
  font-style: italic;
  font-weight: 800;
  line-height: 0.84;
  text-align: center;
  transform: rotate(-9deg);
}
.book-sticker span {
  margin-top: 0.24rem;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.book-caption {
  position: absolute;
  right: 4%;
  bottom: 6%;
  display: grid;
  grid-template-columns: auto 44px auto;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-faint);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.caption-line {
  height: 1px;
  background: var(--orange);
}
.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-faint);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 0.7fr)) minmax(
      220px,
      1.25fr
    );
  align-items: center;
  gap: 2rem;
  padding: 1.2rem clamp(1.25rem, 8vw, 8.8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}
.stat-item {
  display: grid;
  gap: 0.1rem;
}
.stat-item strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item strong span {
  color: var(--orange);
}
.stat-item > span {
  color: var(--ink-faint);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stats-note {
  max-width: 240px;
  margin: 0;
  padding-left: 2rem;
  border-left: 1px solid var(--orange);
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
}
.manifesto-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 6rem) clamp(1.25rem, 7vw, 7rem);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(1.8rem, 4.8vw, 4.2rem);
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.section-label span,
.section-number {
  color: var(--orange);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.03em;
}
.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.72fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding-left: clamp(0rem, 5vw, 5rem);
}
.manifesto-heading h2 {
  max-width: 680px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.75rem, 2.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.manifesto-copy {
  align-self: end;
  max-width: 370px;
  padding-bottom: 0.5rem;
}
.manifesto-copy p,
.workshop-copy > p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}
.manifesto-copy p + p {
  margin-top: 1.15rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.3rem;
  border-bottom: 1px solid var(--orange);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding-bottom: 0.32rem;
}
.principles-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding: clamp(2.7rem, 4.8vw, 4.8rem) clamp(1.25rem, 8vw, 8.8rem);
  background: var(--ink);
  color: var(--paper);
}
.principles-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.section-number {
  flex: 0 0 auto;
  color: var(--ochre);
  font-size: 2rem;
}
.principles-intro .eyebrow {
  color: var(--ochre);
}
.principles-intro h2 {
  max-width: 430px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lesson-list {
  border-top: 1px solid var(--line-dark);
}
.lesson-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  align-items: start;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 1.65rem 0 1.8rem;
  border-bottom: 1px solid var(--line-dark);
  transition:
    transform 220ms var(--ease-editorial),
    border-color 220ms ease;
}
.lesson-item:hover {
  border-bottom-color: var(--orange);
  transform: translateX(8px);
}
.lesson-number {
  color: var(--orange);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}
.lesson-content h3 {
  margin: 0 0 0.55rem;
  color: var(--paper-light);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.lesson-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(243, 239, 231, 0.62);
  font-size: 0.8rem;
  line-height: 1.6;
}
.lesson-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(239, 196, 80, 0.54);
  color: var(--ochre);
}
.workshop-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 8vw, 8.8rem);
}
.workshop-image-wrap {
  position: relative;
  max-width: 630px;
}
.workshop-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.88);
}
.image-note {
  position: absolute;
  right: -1.15rem;
  bottom: 1.25rem;
  padding: 0.6rem 0.72rem;
  background: var(--ochre);
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom right;
}
.workshop-copy {
  max-width: 470px;
}
.workshop-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1.7rem;
  place-items: center;
  border: 1px solid var(--orange);
  color: var(--orange);
}
.workshop-copy h2 {
  margin: 1rem 0 1.4rem;
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.workshop-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.8rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.workshop-points span {
  display: flex;
  align-items: center;
  gap: 0.58rem;
}
.workshop-points span::first-letter {
  color: var(--orange);
}
.closing-section {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
  padding: 3rem 1.25rem;
  border-top: 1px solid var(--line);
  background: url("digitus-editorial-texture.png")
    center / cover;
}
.closing-section::before {
  position: absolute;
  inset: 0;
  background: rgba(243, 239, 231, 0.74);
  content: "";
}
.closing-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
}
.closing-kicker {
  color: var(--orange-dark);
}
.closing-inner h2 {
  margin: 1.1rem 0 1.25rem;
  font-size: clamp(1.75rem, 2.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.closing-inner p {
  max-width: 410px;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}
.closing-inner .primary-button {
  min-height: 51px;
  padding: 0.9rem 1.2rem;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.85fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem clamp(1.25rem, 8vw, 8.8rem);
  background: var(--ink);
  color: var(--paper);
}
.footer-brand {
  color: var(--paper-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.footer-brand .brand-mark {
  width: 27px;
  height: 27px;
}
.footer-brand span {
  color: rgba(243, 239, 231, 0.62);
}
.site-footer p {
  max-width: 310px;
  margin: 0;
  color: rgba(243, 239, 231, 0.54);
  font-size: 0.68rem;
  line-height: 1.55;
}
.site-footer p em {
  color: var(--paper);
  font-style: normal;
}
.footer-year {
  color: var(--ochre);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms var(--ease-editorial),
    transform 650ms var(--ease-editorial);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }
  .desktop-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: auto;
    padding-top: 2.7rem;
  }
  .edition-rail {
    top: 6.5rem;
  }
  .hero-copy {
    max-width: 720px;
    padding-left: clamp(0rem, 5vw, 4rem);
  }
  .hero-visual {
    min-height: 570px;
    padding-left: clamp(0rem, 5vw, 4rem);
  }
  .book-stage {
    min-height: 530px;
  }
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-note {
    grid-column: 1 / -1;
    max-width: 420px;
    padding: 0.7rem 0 0 1rem;
  }
  .manifesto-layout,
  .workshop-section {
    gap: 3rem;
  }
  .principles-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .header-cta,
  .primary-button {
    font-size: 0.9rem;
  }
  .brand-lockup small,
  .footer-brand span {
    font-size: 0.875rem;
  }
  .edition-rail,
  .edition-rail b {
    font-size: 0.875rem;
  }
  .hero-meta {
    font-size: 0.875rem;
  }
  .eyebrow,
  .form-kicker,
  .closing-kicker,
  .form-field > span,
  .form-field > span small,
  .field-error,
  .form-note,
  .success-state p,
  .visual-index,
  .scroll-cue,
  .section-label,
  .workshop-points,
  .site-footer p,
  .footer-year,
  .image-note,
  .book-caption,
  .book-sticker span,
  .stat-item > span,
  .lesson-content p,
  .closing-inner p,
  .text-link {
    font-size: 0.875rem;
  }
}
@media (max-width: 620px) {
  .site-header {
    padding: 0 1rem;
  }
  .brand-lockup strong {
    font-size: 0.88rem;
  }
  .brand-lockup small,
  .footer-brand span {
    font-size: 0.875rem;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
  .header-cta,
  .primary-button {
    font-size: 0.9rem;
  }
  .header-cta {
    padding: 0.72rem;
  }
  .header-cta svg {
    display: none;
  }
  .hero {
    gap: 2.6rem;
    padding: 2.3rem 1rem 2.4rem;
  }
  .edition-rail {
    display: none;
  }
  .hero-copy {
    padding-left: 0;
  }
  h1 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
  }
  .hero-intro {
    font-size: 1.02rem;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 0.5rem 0.7rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }
  .eyebrow,
  .form-kicker,
  .closing-kicker,
  .form-field > span,
  .form-field > span small,
  .field-error,
  .form-note,
  .success-state p,
  .visual-index,
  .scroll-cue,
  .section-label,
  .workshop-points,
  .site-footer p,
  .footer-year,
  .image-note,
  .book-caption {
    font-size: 0.875rem;
  }
  .newsletter-card {
    padding: 1.15rem;
    border-left-width: 3px;
  }
  #newsletter-form {
    grid-template-columns: 1fr;
  }
  .form-submit,
  .form-note {
    grid-column: auto;
  }
  .hero-visual {
    min-height: 465px;
    padding-left: 0;
  }
  .book-stage {
    min-height: 430px;
    margin-top: 1.2rem;
  }
  .hero-book {
    width: 73%;
    box-shadow: 18px 22px 0 rgba(23, 24, 20, 0.11);
  }
  .book-sticker {
    top: 12%;
    width: 86px;
    height: 86px;
    font-size: 1.25rem;
  }
  .book-sticker span {
    font-size: 0.875rem;
  }
  .book-caption {
    right: 3%;
    bottom: 5%;
    grid-template-columns: auto 24px auto;
    gap: 0.32rem;
  }
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding: 1rem 1rem;
  }
  .stat-item strong {
    font-size: 1.9rem;
  }
  .stat-item > span {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
  }
  .stats-note {
    font-size: 0.98rem;
  }
  .manifesto-section,
  .workshop-section {
    padding: 2.9rem 1rem;
  }
  .section-label {
    margin-bottom: 1.8rem;
  }
  .manifesto-layout,
  .workshop-section {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .manifesto-copy {
    max-width: 520px;
  }
  .manifesto-copy p,
  .workshop-copy > p {
    font-size: 1rem;
  }
  .principles-section {
    padding: 2.9rem 1rem;
    gap: 3rem;
  }
  .lesson-item {
    grid-template-columns: 37px minmax(0, 1fr);
    gap: 0.8rem;
  }
  .lesson-mark {
    display: none;
  }
  .lesson-content h3 {
    font-size: 1.3rem;
  }
  .lesson-content p {
    font-size: 0.9rem;
  }
  .workshop-image-wrap {
    margin-right: 1rem;
  }
  .image-note {
    right: -0.6rem;
    bottom: 0.9rem;
  }
  .closing-section {
    min-height: 480px;
    padding: 2.4rem 1rem;
  }
  .closing-inner h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }
  .closing-inner p {
    font-size: 0.98rem;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
