:root {
  --paper: #f4f0e6;
  --paper-deep: #e9e2d2;
  --ink: #172328;
  --ink-soft: #506064;
  --ink-faint: #7d898a;
  --line: rgba(23, 35, 40, 0.16);
  --accent: #167d91;
  --accent-bright: #46bfd1;
  --forest: #102f32;
  --night: #0b191d;
  --white: #fffdf6;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Baskerville", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --reading-size: 20px;
  --reader-width: 720px;
  --bleed-shift: clamp(115px, 14vw, 200px);
  --shadow: 0 24px 70px rgba(8, 22, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.62), transparent 38rem),
    var(--paper);
  font-family: var(--serif);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.night {
  --paper: #111d20;
  --paper-deep: #172629;
  --ink: #e4e5dc;
  --ink-soft: #a7b0ad;
  --ink-faint: #73817e;
  --line: rgba(228, 229, 220, 0.15);
  --accent: #54b7c7;
  --accent-bright: #79ccda;
  --white: #eef0e9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

body,
.reader-bar,
.opening,
.toc-sticky,
.mobile-toc,
.contact-card,
.about-book {
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

.reading-progress {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent-bright);
  box-shadow: 0 0 14px rgba(70, 191, 209, 0.65);
}

.reader-bar {
  position: fixed;
  z-index: 90;
  top: 3px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 0 4vw;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 24, 28, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: inherit;
  font: 700 0.76rem/1 var(--sans);
  letter-spacing: 0.22em;
  text-decoration: none;
}

.wordmark-knot {
  position: relative;
  width: 22px;
  height: 12px;
}

.wordmark-knot::before,
.wordmark-knot::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  transform: rotate(24deg);
}

.wordmark-knot::before {
  left: 1px;
}

.wordmark-knot::after {
  right: 1px;
  transform: rotate(-24deg);
}

.reader-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font: 500 0.72rem/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reader-nav a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 160ms ease;
}

.reader-nav a:hover {
  color: #fff;
}

.reader-tools {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 5px;
}

.tool-button {
  min-width: 38px;
  min-height: 36px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font: 600 0.72rem/1 var(--sans);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.tool-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
}

.theme-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline: 12px;
}

.theme-icon {
  font-size: 1rem;
}

.cover {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

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

.cover-image {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
  animation: reveal-image 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cover-shade {
  background:
    linear-gradient(90deg, rgba(5, 17, 20, 0.9) 0%, rgba(5, 17, 20, 0.64) 34%, rgba(5, 17, 20, 0.1) 70%),
    linear-gradient(0deg, rgba(5, 17, 20, 0.78) 0%, transparent 42%),
    linear-gradient(180deg, rgba(5, 17, 20, 0.3), transparent 24%);
}

.cover-content {
  position: relative;
  z-index: 2;
  width: min(690px, 88vw);
  margin: 0 0 max(13vh, 110px) max(7vw, 34px);
  animation: reveal-copy 900ms 180ms ease-out both;
}

.eyebrow,
.section-kicker,
.chapter-number,
.toc-label {
  margin: 0;
  color: var(--accent);
  font: 700 0.7rem/1.2 var(--sans);
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.cover .eyebrow {
  color: #9ce2eb;
}

.cover h1 {
  margin: 14px 0 20px;
  font: 500 clamp(5.6rem, 15vw, 11.8rem)/0.78 var(--serif);
  letter-spacing: -0.075em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.cover-deck {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font: 400 clamp(1.13rem, 2vw, 1.42rem)/1.55 var(--serif);
}

.cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 700 0.72rem/1 var(--sans);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #07181b;
  background: #9ce2eb;
}

.button-primary:hover {
  background: #b9f0f5;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.52);
}

.read-time {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font: 500 0.74rem/1 var(--sans);
  letter-spacing: 0.04em;
}

.read-time span {
  margin-right: 6px;
  color: #9ce2eb;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(4vw, 28px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font: 600 0.68rem/1 var(--sans);
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.opening {
  padding: clamp(90px, 13vw, 170px) 6vw;
  background: var(--forest);
  color: #f3f0e8;
}

.opening-inner {
  width: min(1150px, 100%);
  margin: 0 auto;
}

.opening .section-kicker {
  color: #7bcbd6;
}

.opening-quote {
  max-width: 1060px;
  margin: 34px 0 66px;
  padding: 0;
  border: 0;
}

.opening-quote p {
  margin: 0;
  font: 400 clamp(2.2rem, 5vw, 4.9rem)/1.08 var(--serif);
  letter-spacing: -0.035em;
}

.opening-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(35px, 7vw, 100px);
  max-width: 970px;
  margin-left: auto;
  color: rgba(243, 240, 232, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.opening-copy p {
  margin: 0;
}

.dropcap {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: #8bd3dd;
  font: 500 4.1em/0.72 var(--serif);
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 120px);
  width: min(1360px, 92vw);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) 0 120px;
}

.toc {
  position: relative;
}

.toc-sticky {
  position: sticky;
  top: 112px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.toc-label {
  margin-bottom: 22px;
}

.toc ol,
.mobile-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 2px;
}

.toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 9px 0;
  color: var(--ink-soft);
  font: 500 0.8rem/1.35 var(--sans);
  text-decoration: none;
  transition: color 140ms ease, transform 140ms ease;
}

.toc a span {
  color: var(--ink-faint);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.toc a:hover,
.toc a.active {
  color: var(--accent);
  transform: translateX(4px);
}

.toc a.active span {
  color: var(--accent);
}

.toc-progress {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 25px 0 0;
  padding-top: 18px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  font: 600 0.64rem/1.2 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toc-progress b {
  color: var(--accent);
}

.manuscript {
  min-width: 0;
}

.mobile-toc {
  display: none;
  margin-bottom: 65px;
  padding: 18px 20px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
}

.mobile-toc summary {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
}

.mobile-toc ol {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mobile-toc a {
  color: var(--ink-soft);
  font-size: 0.83rem;
  text-decoration: none;
}

.chapter {
  width: min(var(--reader-width), 100%);
  margin: 0 auto;
  scroll-margin-top: 100px;
}

.chapter-header {
  margin-bottom: clamp(50px, 7vw, 84px);
  text-align: center;
}

.chapter-number {
  margin-bottom: 20px;
}

.chapter-header h2 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(3.1rem, 7vw, 5.9rem)/0.98 var(--serif);
  letter-spacing: -0.045em;
}

.chapter-lead {
  max-width: 570px;
  margin: 27px auto 0;
  color: var(--ink-soft);
  font: italic 400 clamp(1.08rem, 2vw, 1.28rem)/1.55 var(--serif);
}

.chapter > p {
  margin: 0 0 1.25em;
  font-size: var(--reading-size);
  line-height: 1.82;
  hanging-punctuation: first last;
  orphans: 3;
  widows: 3;
}

.chapter > p + p {
  text-indent: 1.55em;
}

.chapter > figure + p,
.chapter > blockquote + p,
.chapter > .chapter-header + p,
.chapter > p:has(+ figure),
.chapter > p:has(+ blockquote) {
  text-indent: 0;
}

.chapter .first-paragraph {
  text-indent: 0;
}

.chapter .first-paragraph::first-letter {
  float: left;
  margin: 0.1em 0.12em -0.05em 0;
  color: var(--accent);
  font: 500 4.4em/0.7 var(--serif);
}

.figure {
  margin-top: clamp(55px, 8vw, 90px);
  margin-bottom: clamp(55px, 8vw, 90px);
}

.figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.figure-bleed {
  width: min(1040px, calc(100vw - 54px));
  margin-left: 50%;
  transform: translateX(calc(-50% - var(--bleed-shift)));
}

.figure-wide {
  width: min(960px, calc(100vw - 54px));
  margin-left: 50%;
  transform: translateX(calc(-50% - var(--bleed-shift)));
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.image-pair img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.image-pair img:first-child {
  object-position: 48% center;
}

.image-pair img:last-child {
  object-position: 42% center;
}

figcaption {
  max-width: 700px;
  margin: 15px auto 0;
  color: var(--ink-faint);
  font: 500 0.73rem/1.5 var(--sans);
  letter-spacing: 0.02em;
  text-align: center;
}

.pullquote {
  position: relative;
  width: min(860px, calc(100vw - 54px));
  margin: clamp(60px, 9vw, 105px) 0 clamp(60px, 9vw, 105px) 50%;
  padding: 45px 0;
  transform: translateX(calc(-50% - var(--bleed-shift)));
  color: var(--accent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.pullquote::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 50%;
  color: var(--paper-deep);
  font: 400 8rem/1 var(--serif);
  transform: translateX(-50%);
  z-index: -1;
}

.pullquote p {
  max-width: 720px;
  margin: 0 auto;
  font: 400 clamp(1.75rem, 4vw, 2.8rem)/1.25 var(--serif);
  letter-spacing: -0.025em;
}

.chapter-divider {
  display: grid;
  place-items: center;
  min-height: clamp(150px, 22vw, 300px);
}

.chapter-divider span {
  position: relative;
  width: 75px;
  height: 12px;
}

.chapter-divider span::before,
.chapter-divider span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.chapter-divider span::before {
  left: 0;
  transform: rotate(12deg);
  transform-origin: right;
}

.chapter-divider span::after {
  right: 0;
  transform: rotate(-12deg);
  transform-origin: left;
}

.the-end {
  margin-top: 70px !important;
  color: var(--accent);
  font: 700 0.72rem/1 var(--sans) !important;
  letter-spacing: 0.28em;
  text-align: center;
  text-indent: 0 !important;
  text-transform: uppercase;
}

.about-book {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.9fr);
  gap: clamp(45px, 8vw, 100px);
  width: min(1050px, calc(100vw - 54px));
  margin: clamp(150px, 20vw, 270px) 0 0 50%;
  padding: clamp(48px, 7vw, 82px);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  transform: translateX(calc(-50% - var(--bleed-shift)));
}

.about-copy h2,
.contact-card h2 {
  margin: 17px 0 28px;
  font: 500 clamp(2.2rem, 4vw, 3.6rem)/1.08 var(--serif);
  letter-spacing: -0.035em;
}

.about-copy > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.theme-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.theme-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font: 600 0.82rem/1.4 var(--sans);
}

.theme-list span {
  color: var(--accent);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.character-card {
  align-self: start;
  margin: 0;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.character-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.character-card figcaption {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 20px 22px 24px;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
}

.character-card figcaption strong {
  color: #fff;
  font: 600 1.2rem/1.2 var(--serif);
}

.character-card figcaption span {
  font: 500 0.72rem/1.5 var(--sans);
}

.contact-card {
  width: min(780px, calc(100vw - 54px));
  margin: clamp(120px, 17vw, 220px) 0 0 50%;
  padding: clamp(50px, 8vw, 86px);
  color: #edf4f1;
  background: var(--forest);
  transform: translateX(calc(-50% - var(--bleed-shift)));
  text-align: center;
}

.contact-card .section-kicker {
  color: #7bcbd6;
}

.contact-card > p:not(.section-kicker, .contact-note) {
  color: rgba(237, 244, 241, 0.68);
  font-size: 1rem;
}

.email-copy {
  display: inline-grid;
  gap: 7px;
  min-width: min(100%, 310px);
  margin-top: 22px;
  padding: 16px 26px;
  color: #092024;
  background: #9ce2eb;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.email-copy span {
  font: 600 1.12rem/1.2 var(--sans);
}

.email-copy small {
  font: 700 0.58rem/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-note {
  margin: 20px 0 0;
  color: rgba(237, 244, 241, 0.42);
  font: italic 400 0.82rem/1.4 var(--serif);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 30px 5vw;
  color: rgba(255, 255, 255, 0.52);
  background: #09181b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font: 500 0.68rem/1.4 var(--sans);
  letter-spacing: 0.06em;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-mark {
  color: rgba(255, 255, 255, 0.82);
}

.noscript {
  position: fixed;
  z-index: 110;
  right: 12px;
  bottom: 12px;
  max-width: 360px;
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  background: #102f32;
  border-radius: 3px;
  font: 500 0.74rem/1.45 var(--sans);
}

@keyframes reveal-image {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes reveal-copy {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .reader-bar {
    grid-template-columns: 1fr auto;
  }

  .reader-nav {
    display: none;
  }

  .book-layout {
    display: block;
    width: min(100% - 42px, 760px);
  }

  .toc {
    display: none;
  }

  .mobile-toc {
    display: block;
  }

  .figure-bleed,
  .figure-wide,
  .pullquote,
  .about-book,
  .contact-card {
    transform: translateX(-50%);
  }

  .about-book {
    grid-template-columns: 1fr;
  }

  .character-card {
    width: min(430px, 100%);
  }
}

@media (max-width: 680px) {
  :root {
    --reading-size: 18px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .reader-bar {
    min-height: 58px;
    padding-inline: 18px;
  }

  .reader-tools {
    gap: 3px;
  }

  .tool-button {
    min-width: 34px;
    min-height: 34px;
    padding-inline: 8px;
  }

  .theme-label {
    display: none;
  }

  .theme-button {
    padding-inline: 10px;
  }

  .cover {
    min-height: 760px;
  }

  .cover-image {
    object-position: 67% center;
  }

  .cover-shade {
    background:
      linear-gradient(90deg, rgba(5, 17, 20, 0.86) 0%, rgba(5, 17, 20, 0.46) 65%, rgba(5, 17, 20, 0.22)),
      linear-gradient(0deg, rgba(5, 17, 20, 0.9) 0%, rgba(5, 17, 20, 0.15) 63%);
  }

  .cover-content {
    width: calc(100% - 42px);
    margin: 0 21px 94px;
  }

  .cover h1 {
    margin-top: 11px;
    font-size: clamp(5.1rem, 28vw, 8rem);
  }

  .cover-deck {
    max-width: 94%;
    font-size: 1.06rem;
  }

  .scroll-cue {
    display: none;
  }

  .opening {
    padding-inline: 24px;
  }

  .opening-quote {
    margin-bottom: 46px;
  }

  .opening-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .book-layout {
    width: calc(100% - 42px);
    padding-top: 70px;
  }

  .mobile-toc {
    margin-bottom: 85px;
  }

  .chapter-header {
    margin-bottom: 52px;
  }

  .chapter-header h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .figure-bleed,
  .figure-wide,
  .pullquote,
  .about-book,
  .contact-card {
    width: calc(100vw - 24px);
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .pullquote {
    padding: 35px 22px;
  }

  .about-book {
    padding: 36px 24px;
  }

  .contact-card {
    padding: 48px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    --paper: #fff;
    --ink: #111;
    --ink-soft: #333;
    --reading-size: 12pt;
  }

  .reader-bar,
  .reading-progress,
  .toc,
  .mobile-toc,
  .cover-actions,
  .scroll-cue,
  .contact-card,
  .site-footer {
    display: none !important;
  }

  .cover {
    min-height: 92vh;
    break-after: page;
  }

  .opening {
    color: #111;
    background: #fff;
    break-after: page;
  }

  .opening .section-kicker,
  .opening .dropcap {
    color: #333;
  }

  .opening-copy {
    color: #333;
  }

  .book-layout {
    display: block;
    width: auto;
    padding: 0;
  }

  .chapter {
    width: auto;
  }

  .chapter + .chapter-divider {
    break-after: page;
  }

  .figure-bleed,
  .figure-wide,
  .pullquote,
  .about-book {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}
