:root {
  --ink: #061a2c;
  --ink-soft: #0b263c;
  --paper: #f6f0e2;
  --paper-deep: #e7dcc4;
  --white: #fffdf7;
  --gold: #dca23b;
  --gold-light: #f2c66c;
  --orange: #ec6338;
  --muted: #65707a;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main { overflow: clip; }

a {
  color: inherit;
  text-decoration: none;
}

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

img { display: block; max-width: 100%; }

.shell {
  width: min(calc(100% - 56px), 1240px);
  margin-inline: auto;
}

.kicker {
  margin: 0 0 22px;
  color: #8a6118;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker-light { color: var(--gold-light); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 14px 30px;
  border-bottom: 1px solid rgb(246 240 226 / 0.16);
  background: rgb(6 26 44 / 0.88);
  color: var(--paper);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  width: max-content;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav a,
.header-link {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.header-link:hover { color: var(--gold-light); }

.header-link {
  justify-self: end;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(3 19 33 / 0.98) 0%, rgb(3 19 33 / 0.9) 36%, rgb(3 19 33 / 0.34) 62%, transparent 82%),
    linear-gradient(0deg, rgb(3 19 33 / 0.82) 0%, transparent 38%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 78px auto 0 52%;
  width: 1px;
  background: linear-gradient(transparent, rgb(242 198 108 / 0.55), transparent);
  content: "";
}

.hero-content {
  align-self: center;
  padding-top: 112px;
  padding-bottom: 120px;
}

.hero-content > * { max-width: 680px; }

.hero h1 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(5rem, 9.4vw, 9.4rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.73;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin: 0 0 0.18em 0.07em;
  color: var(--gold-light);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 0.28em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: none;
}

.hero-subtitle {
  margin: 38px 0 0;
  color: var(--gold-light);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.28;
}

.hero-copy {
  margin: 23px 0 0;
  color: rgb(246 240 226 / 0.82);
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-bright {
  background: var(--gold);
  color: var(--ink);
}

.button-bright:hover { background: var(--gold-light); }

.button-dark {
  margin-top: 12px;
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover { background: var(--orange); }

.button-ink {
  margin-top: 24px;
  border-color: var(--ink);
  color: var(--ink);
}

.button-ink:hover {
  background: var(--ink);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link-light { color: var(--paper); }

.hero-note {
  position: absolute;
  right: 5vw;
  bottom: 46px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  border-left: 2px solid var(--orange);
  color: rgb(246 240 226 / 0.82);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1rem;
}

.hero-note strong {
  color: var(--gold-light);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-section {
  padding: 140px 0;
  background: var(--paper);
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) 1.05fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(138deg, transparent 0 67%, rgb(220 162 59 / 0.16) 67% 68%, transparent 68%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgb(246 240 226 / 0.04) 24px 25px),
    var(--ink-soft);
}

.book-stage::before {
  position: absolute;
  top: -56px;
  left: -58px;
  width: 210px;
  height: 210px;
  border: 1px solid rgb(220 162 59 / 0.32);
  border-radius: 50%;
  content: "";
}

.book-object {
  position: relative;
  z-index: 2;
  width: min(67%, 365px);
  filter: drop-shadow(28px 32px 23px rgb(0 0 0 / 0.4));
  transform: perspective(1200px) rotateY(-8deg) rotateZ(-1.8deg);
  transition: transform 450ms ease;
}

.book-stage:hover .book-object {
  transform: perspective(1200px) rotateY(-2deg) rotateZ(0deg) translateY(-7px);
}

.book-object img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgb(246 240 226 / 0.24);
}

.book-spine {
  position: absolute;
  z-index: 1;
  top: 1.2%;
  bottom: 0.8%;
  left: -16px;
  width: 22px;
  background: linear-gradient(90deg, #020b12, #183044);
  transform: skewY(44deg);
  transform-origin: right;
}

.book-shadow {
  position: absolute;
  bottom: 10%;
  left: 22%;
  width: 58%;
  height: 5%;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.62);
  filter: blur(20px);
}

.field-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-copy h2,
.reset-intro h2,
.honest-grid h2,
.author-copy h2,
.final-content h2 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.book-copy h2 {
  max-width: 700px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.book-copy > p:not(.kicker) {
  max-width: 660px;
  color: #35414b;
  font-size: 1.03rem;
}

.book-copy .lede {
  margin-top: 34px;
  color: var(--ink);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.5;
}

.book-copy blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 25px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.45;
}

.book-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
}

.book-actions .button-dark { margin-top: 0; }

.quote-interlude {
  padding: 82px 0;
}

.quote-interlude-inner {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 70px;
  align-items: start;
}

.quote-interlude-inner > p {
  margin: 8px 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-interlude blockquote {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.quote-interlude-light {
  border-top: 1px solid rgb(6 26 44 / 0.1);
  border-bottom: 1px solid rgb(6 26 44 / 0.1);
  background: var(--paper-deep);
  color: var(--ink);
}

.quote-interlude-light p { color: #805817; }

.quote-interlude-dark {
  background: var(--ink);
  color: var(--paper);
}

.quote-interlude-dark p { color: var(--gold-light); }

.inside-section {
  padding: 130px 0 145px;
  background: var(--ink);
  color: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.section-heading > p {
  margin: 0;
  color: rgb(246 240 226 / 0.7);
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.act-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 32px;
  border-top: 3px solid var(--gold);
  background: #0b263b;
  transition: transform 200ms ease, background 200ms ease;
}

.act-card:hover {
  background: #10314a;
  transform: translateY(-5px);
}

.act-topline {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.act-number {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgb(220 162 59 / 0.55);
  color: var(--paper);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
}

.act-card h3 {
  min-height: 94px;
  margin: 34px 0 26px;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.1;
}

.act-card ol {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.act-card li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgb(246 240 226 / 0.13);
  color: rgb(246 240 226 / 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.act-card li span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.statement {
  padding: 115px 0;
  background: var(--gold);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 80px;
}

.statement .kicker { color: var(--ink); }

.statement-copy {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.65rem, 5.9vw, 6.7rem);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.statement-copy span {
  color: rgb(6 26 44 / 0.5);
  font-style: italic;
}

.statement-copy strong {
  position: relative;
  font-weight: 400;
}

.statement-copy strong::after {
  position: absolute;
  right: 0;
  bottom: -0.08em;
  left: 0;
  height: 0.07em;
  background: var(--orange);
  content: "";
}

.reactions-section {
  padding: 130px 0 140px;
  background: var(--paper-deep);
}

.reactions-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 60px;
}

.reactions-heading h2 {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.reactions-heading > div:last-child > p:first-child {
  margin: 0 0 18px;
  color: #3d4852;
}

.concept-note {
  margin: 0;
  color: #766955;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.reactions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.reaction-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  margin: 0;
  padding: 34px;
  border-top: 3px solid var(--gold);
  background: var(--paper);
}

.reaction-mark {
  color: var(--gold);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 4.8rem;
  line-height: 0.7;
}

.reaction-card blockquote {
  margin: 25px 0 36px;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.48;
}

.reaction-card figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.reaction-card figcaption strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reaction-card figcaption span {
  color: #6d746f;
  font-size: 0.78rem;
}

.reactions-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 30px 34px;
  background: var(--gold);
}

.reactions-cta p {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.45rem;
}

.reactions-cta .button-dark {
  flex: 0 0 auto;
  margin: 0;
}

.reset-section {
  padding: 140px 0;
  background: var(--paper);
}

.reset-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 150px);
}

.reset-intro h2 { font-size: clamp(3rem, 5.1vw, 5.3rem); }

.reset-intro > p:not(.kicker):not(.reset-callout) {
  margin-top: 30px;
  color: #3c4852;
}

.reset-callout {
  width: max-content;
  margin-top: 36px;
  padding: 12px 16px;
  border: 1px solid var(--gold);
  color: #7b5616;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reset-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.reset-list li {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  min-height: 130px;
  padding: 0 0 31px;
}

.reset-list li:not(:last-child)::before {
  position: absolute;
  top: 49px;
  bottom: 8px;
  left: 24px;
  width: 1px;
  background: #cabd9f;
  content: "";
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid var(--gold);
  background: var(--paper);
  color: #815a17;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.reset-list h3 {
  margin: 0 0 7px;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.15;
}

.reset-list p {
  max-width: 630px;
  margin: 0;
  color: #53606a;
  font-size: 0.94rem;
}

.honest-section {
  padding: 120px 0;
  background: var(--ink-soft);
  color: var(--paper);
}

.honest-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 110px;
  align-items: center;
}

.honest-grid h2 { font-size: clamp(3.2rem, 5.4vw, 5.8rem); }

.honest-copy {
  padding-left: 35px;
  border-left: 1px solid rgb(220 162 59 / 0.6);
}

.honest-copy p {
  color: rgb(246 240 226 / 0.77);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.18rem;
}

.author-section {
  padding: 135px 0;
  background: var(--paper-deep);
}

.author-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.author-portrait {
  position: relative;
  aspect-ratio: 0.73;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.author-portrait::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(242 198 108 / 0.68);
  content: "";
  pointer-events: none;
}

.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.author-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 76px 34px 30px;
  background: linear-gradient(transparent, rgb(6 26 44 / 0.94));
  color: var(--paper);
  line-height: 1.4;
}

.author-portrait figcaption strong {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.author-portrait figcaption span {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.author-copy h2 { font-size: clamp(3.5rem, 6vw, 6.4rem); }

.author-title {
  margin: 7px 0 28px;
  color: #805817;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.author-copy > p:not(.kicker):not(.author-title) {
  max-width: 690px;
  color: #39454e;
}

.final-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--gold);
}

.final-sun {
  position: absolute;
  top: 50%;
  right: -10vw;
  width: min(54vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgb(6 26 44 / 0.22);
  border-radius: 50%;
  transform: translateY(-50%);
}

.final-sun::before,
.final-sun::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(6 26 44 / 0.16);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-sun::before { width: 70%; height: 70%; }
.final-sun::after { width: 42%; height: 42%; background: rgb(246 240 226 / 0.18); }

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
}

.final-content .kicker { color: var(--ink); }
.final-content h2 { font-size: clamp(4.5rem, 9vw, 9.5rem); }

.final-content > p:not(.kicker) {
  margin: 15px 0 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.35rem;
}

footer {
  padding: 27px 0;
  background: var(--ink);
  color: rgb(246 240 226 / 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-grid p { margin: 0; }
.footer-grid p:nth-child(2) { text-align: center; }
.footer-grid a { justify-self: end; color: var(--gold-light); }

#book,
#inside,
#reactions,
#reset,
#author { scroll-margin-top: 77px; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgb(3 19 33 / 0.98) 0%, rgb(3 19 33 / 0.91) 47%, rgb(3 19 33 / 0.42) 78%, transparent),
      linear-gradient(0deg, rgb(3 19 33 / 0.88), transparent 50%);
  }
  .hero-content > * { max-width: 610px; }
  .book-grid { grid-template-columns: 0.9fr 1.1fr; gap: 55px; }
  .book-stage { min-height: 610px; }
  .acts-grid { grid-template-columns: 1fr; }
  .act-card { min-height: auto; }
  .act-card h3 { min-height: auto; }
  .section-heading { gap: 55px; }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 36px), 650px); }
  .site-header { min-height: 68px; padding: 11px 18px; }
  .wordmark { font-size: 0.68rem; }
  .wordmark-mark { width: 36px; height: 36px; }
  .header-link { font-size: 0.62rem; }
  .hero { min-height: 780px; }
  .hero-image { object-position: 62% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgb(3 19 33 / 0.97) 0%, rgb(3 19 33 / 0.82) 68%, rgb(3 19 33 / 0.36)),
      linear-gradient(0deg, rgb(3 19 33 / 0.9), transparent 55%);
  }
  .hero::after { left: 79%; }
  .hero-content { align-self: end; padding-top: 125px; padding-bottom: 108px; }
  .hero h1 { font-size: clamp(4.5rem, 18vw, 7rem); }
  .hero-content > * { max-width: 530px; }
  .hero-subtitle { max-width: 480px; margin-top: 31px; }
  .hero-copy { max-width: 500px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-note { display: none; }
  .book-section,
  .inside-section,
  .reactions-section,
  .reset-section,
  .author-section { padding: 95px 0; }
  .book-grid,
  .section-heading,
  .reactions-heading,
  .quote-interlude-inner,
  .statement-grid,
  .reset-grid,
  .honest-grid,
  .author-grid { grid-template-columns: 1fr; }
  .book-grid,
  .reset-grid,
  .honest-grid,
  .author-grid { gap: 62px; }
  .book-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .book-stage { min-height: 650px; }
  .book-copy h2,
  .section-heading h2,
  .reactions-heading h2,
  .reset-intro h2,
  .honest-grid h2,
  .author-copy h2 { font-size: clamp(2.7rem, 12vw, 4.8rem); }
  .section-heading { gap: 28px; margin-bottom: 45px; }
  .quote-interlude { padding: 65px 0; }
  .quote-interlude-inner { gap: 22px; }
  .reactions-heading { gap: 28px; margin-bottom: 42px; }
  .reactions-grid { grid-template-columns: 1fr; }
  .reactions-cta { flex-direction: column; align-items: flex-start; }
  .acts-grid { gap: 14px; }
  .act-card { padding: 28px; }
  .statement { padding: 85px 0; }
  .statement-grid { gap: 12px; }
  .statement-copy { font-size: clamp(2.65rem, 12vw, 5rem); }
  .honest-section { padding: 95px 0; }
  .honest-copy { padding-left: 22px; }
  .author-portrait { min-height: 0; }
  .final-section,
  .final-content { min-height: 530px; }
  .final-content h2 { font-size: clamp(4rem, 18vw, 7.5rem); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid p:nth-child(2) { text-align: left; }
  .footer-grid a { justify-self: start; }
}

@media (max-width: 480px) {
  .wordmark > span:last-child { display: none; }
  .header-link { max-width: 145px; text-align: right; }
  .hero { min-height: 720px; }
  .hero-image { object-position: 66% center; }
  .hero h1 { font-size: clamp(4rem, 19vw, 5.6rem); }
  .hero-copy { font-size: 0.96rem; }
  .book-stage { min-height: 520px; }
  .book-object { width: min(70%, 290px); }
  .reset-callout { width: 100%; text-align: center; }
  .author-portrait figcaption { padding: 64px 26px 24px; }
  .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
