:root {
  --bg: #1a1208;
  --wood: #3d2a14;
  --page: #f7f1e6;
  --ink: #1c140c;
  --accent: #c45c26;
  --shadow: rgba(0,0,0,.45);
  --ease: cubic-bezier(.22,.9,.28,1);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(ellipse at 50% 20%, #4a3118 0%, var(--bg) 70%);
  color: var(--page);
  font-family: "Georgia", "Times New Roman", serif;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.shell {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
}

/* High-contrast intro: light panel, dark text (readable on dark page) */
.intro {
  align-self: center;
  padding: 1.2rem 1.25rem;
  background: #f7f1e6;
  border: 1px solid rgba(255, 215, 168, 0.55);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.intro-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1c140c;
}

.intro-text {
  margin: 0;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: #2a1f14;
}

.app {
  height: auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0;
}


.app {
  height: auto;
  min-height: min(100vh, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
}

.stage {
  position: relative;
  width: min(96vw, 1120px);
  aspect-ratio: 3 / 2;
  perspective: 2200px;
  /* Avoid filter:drop-shadow here — it flattens 3D and blanks the book on some Windows GPUs */
}

.book {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  box-shadow: 0 24px 40px var(--shadow);
  border-radius: 10px;
}

.spine {
  position: absolute;
  left: 50%; top: 2%; bottom: 2%;
  width: 10px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2a1a0c, #6b4423, #2a1a0c);
  border-radius: 2px;
  z-index: 5;
  box-shadow: 0 0 12px rgba(0,0,0,.5);
}

.page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.leaf {
  position: relative;
  height: 100%;
  background: var(--page);
  color: var(--ink);
  overflow: hidden;
  backface-visibility: hidden;
}

.leaf.left {
  border-radius: 8px 0 0 8px;
  box-shadow: inset -8px 0 18px rgba(0,0,0,.08);
}
.leaf.right {
  border-radius: 0 8px 8px 0;
  box-shadow: inset 8px 0 18px rgba(0,0,0,.08);
  transform-origin: left center;
  transform-style: preserve-3d;
}

.leaf .content {
  position: relative;
  height: 100%;
  padding: clamp(.7rem, 2vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: .45rem;
  overflow: hidden;
  perspective: 900px;
}

.leaf img {
  width: auto;
  max-width: 100%;
  max-height: var(--art-max-h, 52%);
  height: auto;
  flex-shrink: 0;
  align-self: center;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.leaf h2 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--accent);
  letter-spacing: .02em;
  flex-shrink: 0;
}

.leaf p {
  margin: 0;
  white-space: pre-wrap;
  font-size: clamp(.78rem, 1.35vw, .98rem);
  line-height: 1.38;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.page-num {
  font-family: system-ui, sans-serif;
  font-size: .75rem;
  opacity: .55;
  align-self: flex-end;
}

.theme-cover .content {
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, #fff8, transparent 40%),
    linear-gradient(160deg, #2b1a0c, #6a3a1a 55%, #1a1008);
  color: #f7f1e6;
}


/* Cover: static plate (title/text) + rotating acrobat stacked */
.theme-cover .content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: stretch;
}
.theme-cover .page-plate,
.theme-cover .page-art {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: transparent;
}
.theme-cover .page-plate {
  pointer-events: none;
  z-index: 0;
}
.theme-cover .page-art {
  z-index: 1;
  transform-origin: center center;
}

.theme-cover img {
  max-height: 92%;
  background: transparent;
  border-radius: 4px;
  flex: 1;
  object-fit: contain;
}
.theme-cover .content {
  padding: clamp(.4rem, 1.5vw, .8rem);
  gap: 0;
}

.theme-cover h2 { color: #ffd7a8; font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
.theme-cover p { font-size: clamp(1rem, 2.2vw, 1.35rem); }

.flip-layer {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  transform-origin: left center;
  transform-style: preserve-3d;
  z-index: 20;
  pointer-events: none;
}
.flip-layer .front,
.flip-layer .back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  background: var(--page);
  color: var(--ink);
}
.flip-layer .back {
  transform: rotateY(180deg);
  border-radius: 8px 0 0 8px;
}

.flip-layer.flipping-forward {
  animation: flipFwd .7s var(--ease) forwards;
}
.flip-layer.flipping-back {
  animation: flipBack .7s var(--ease) forwards;
}

@keyframes flipFwd {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(-180deg); }
}
@keyframes flipBack {
  from { transform: rotateY(-180deg); }
  to { transform: rotateY(0deg); }
}

.controls {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-family: system-ui, sans-serif;
}
button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: .7rem 1.2rem;
  background: linear-gradient(180deg, #e07a3a, var(--accent));
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
button:disabled { opacity: .4; cursor: default; }
button:hover:not(:disabled) { filter: brightness(1.08); }
#counter { opacity: .85; min-width: 5rem; text-align: center; }

.hint {
  font-family: system-ui, sans-serif;
  font-size: .8rem;
  opacity: .55;
}

@media (max-width: 700px) {
  .stage {
    aspect-ratio: 2 / 3;
    width: min(96vw, 480px);
    min-height: 70vh;
    max-height: none;
  }
  .leaf img { max-height: var(--art-max-h, 46%); }
  .leaf p { font-size: clamp(.75rem, 3.2vw, .92rem); }
  .hint { font-size: 0.75rem; opacity: 0.7; }
}

/* One page on phones (class set by app.js) */
.book.single-page .spine {
  display: none;
}
.book.single-page .leaf.left,
.book.single-page .leaf.right {
  display: none;
}
.book.single-page .leaf.single {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  left: 0;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.leaf.single {
  display: none;
}

.leaf img.page-art {
  /* medium-slow: watch it turn, then ease back on mouse-out */
  pointer-events: auto; /* .page sets pointer-events:none — re-enable hover */
  transition: transform 1.35s cubic-bezier(.45,.05,.25,1);
  transform: var(--art-rest, none);
  transform-origin: center center;
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* Only pages with artScale (Not Fair / Waste) — keep flip origin centered */
.leaf img.page-art.has-art-scale {
  transform: var(--art-rest, none) scale(var(--art-scale, 1));
}
.leaf img.page-art.is-flipped {
  transform: var(--hover-to, none);
}
.leaf img.page-art.has-art-scale.is-flipped {
  transform: var(--hover-to, none) scale(var(--art-scale, 1));
}
@media (hover: hover) and (pointer: fine) {
  .leaf img.page-art:hover {
    transform: var(--hover-to, none);
  }
  .leaf img.page-art.has-art-scale:hover {
    transform: var(--hover-to, none) scale(var(--art-scale, 1));
  }
}


/* === bible-picker === */
.bible-picker {
  pointer-events: auto;
  z-index: 3;
  margin-top: auto;
  padding: 0.55rem 0.7rem 0.65rem;
  border-radius: 10px;
  background: rgba(20, 12, 6, 0.72);
  border: 1px solid rgba(255, 215, 168, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #f7f1e6;
  font-family: system-ui, sans-serif;
  text-align: center;
  max-width: min(100%, 22rem);
  align-self: center;
  user-select: none;
}

.theme-cover .bible-picker {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: center;
  /* Sit near the bottom edge so cover plate text above stays readable */
  margin: 0 0 clamp(0.2rem, 1.2vw, 0.55rem);
  padding: 0.4rem 0.55rem 0.45rem;
  max-width: min(100%, 20rem);
  transform: translateY(0);
}
@media (max-width: 700px) {
  .theme-cover .bible-picker {
    margin: 0 0 0.15rem;
    padding: 0.32rem 0.45rem 0.38rem;
    max-width: min(96%, 18rem);
  }
  .theme-cover .bible-picker label {
    margin-bottom: 0.28rem;
    font-size: 0.65rem;
  }
  .theme-cover .bible-version-btn {
    padding: 0.28rem 0.5rem;
    font-size: 0.65rem;
  }
}

.bible-picker label {
  display: block;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
  color: #ffd7a8;
}

.bible-picker-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.bible-version-btn {
  appearance: none;
  border: 1px solid rgba(255, 215, 168, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 248, 230, 0.08);
  color: #f7f1e6;
  font-family: system-ui, sans-serif;
  font-size: clamp(0.68rem, 1.15vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bible-version-btn:hover {
  filter: none;
  background: rgba(255, 215, 168, 0.22);
  border-color: rgba(255, 215, 168, 0.7);
}

.bible-version-btn.selected,
.bible-version-btn[aria-pressed="true"] {
  background: linear-gradient(180deg, #e07a3a, #c45c26);
  border-color: #ffd7a8;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}


.leaf .content:has(.site-logo),
.leaf .content.has-site-logo {
  padding-bottom: clamp(4.5rem, 18%, 7.5rem);
}

.site-logo {
  position: absolute;
  left: clamp(0.55rem, 1.5vw, 1rem);
  bottom: clamp(0.45rem, 1.2vw, 0.85rem);
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  max-width: min(34%, 150px);
  line-height: 0;
  border-radius: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
  opacity: 0.95;
  pointer-events: auto; /* .page sets pointer-events:none — logo must be clickable */
  cursor: pointer;
  text-decoration: none;
}
.site-logo:hover {
  opacity: 1;
  transform: scale(1.04);
  filter: none;
}
.site-logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  max-height: none;
  pointer-events: none;
}
.site-logo-label {
  font-family: system-ui, sans-serif;
  font-size: clamp(0.62rem, 1.1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c45c26;
  text-decoration: underline;
  line-height: 1.2;
  white-space: nowrap;
}
.theme-cover .site-logo-label {
  color: #ffd7a8;
}
.theme-cover .site-logo {
  max-width: min(38%, 170px);
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(0.6rem, 2vw, 1.1rem);
}
.theme-cover .site-logo:hover {
  transform: translateX(-50%) scale(1.04);
}



@media (max-width: 900px) {
  html, body {
    height: auto !important;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .shell {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 0.75rem 0.75rem 2rem;
    min-height: auto;
    gap: 0.85rem;
  }
  /* Book first so phones see it without scrolling past a tall intro */
  .intro { order: 1; }
  .app { order: 0; height: auto; min-height: 0; padding: 0.25rem 0 0.5rem; }
  .intro {
    padding: 0.85rem 1rem;
  }
  .intro-title { font-size: 1.25rem; margin-bottom: 0.45rem; }
  .intro-text { font-size: 0.92rem; line-height: 1.45; }
  .stage {
    width: min(96vw, 1120px);
    /* Concrete height — aspect-ratio alone can collapse to 0 on some mobile WebViews */
    aspect-ratio: 3 / 2;
    min-height: 58vh;
    height: auto;
  }
  .controls {
    position: relative;
    z-index: 30;
    padding: 0.35rem 0;
  }
  .controls button {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1.25rem;
  }
}


.site-credit {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5b2d8e;
  text-decoration: underline;
  text-underline-offset: 2px;
  pointer-events: auto; /* .page sets pointer-events:none — link must work */
  position: relative;
  z-index: 5;
}
.site-credit:hover {
  color: #0d9488;
}
.theme-cover .site-credit {
  color: #f5e6ff;
}


/* Phone: sidebar blurb hidden — it lives as page 1 of the book */
body.phone-book .intro {
  display: none !important;
}
body.phone-book .shell {
  grid-template-columns: 1fr;
  padding: 0.75rem 0.75rem 1.5rem;
}
body.phone-book .app {
  order: 0;
  height: auto;
  min-height: 0;
  padding: 0.25rem 0 0.75rem;
}
body.phone-book .stage {
  width: min(96vw, 480px);
  min-height: 70vh;
}

.theme-intro .content {
  justify-content: center;
  text-align: left;
  gap: 0.75rem;
  padding: clamp(1.1rem, 4vw, 1.75rem);
}
.theme-intro h2 {
  font-size: clamp(1.35rem, 5vw, 1.85rem);
  color: var(--accent);
}
.theme-intro p {
  font-size: clamp(0.95rem, 3.6vw, 1.12rem);
  line-height: 1.5;
  overflow: visible;
}
.intro-iwitness {
  pointer-events: auto;
  margin: 0.35rem 0 0 !important;
  flex: 0 0 auto !important;
}
.intro-iwitness a {
  color: #0d9488;
  font-weight: 700;
  text-decoration: underline;
  pointer-events: auto;
}
.intro-start-hint {
  pointer-events: none;
  margin: 0.85rem 0 0 !important;
  flex: 0 0 auto !important;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(0.9rem, 3.4vw, 1.05rem) !important;
}


/* How Can He / art pages: white plate behind graphic + text pinned to bottom */
.leaf img.page-art.page-art-white {
  background: #fff;
  padding: 0.35rem;
  box-sizing: border-box;
}
.leaf .content.text-bottom {
  overflow: visible; /* let scaled art (e.g. Not Fair) grow without early clip */
}
.leaf .content.text-bottom h2 {
  margin-top: auto;
  flex-shrink: 0;
}
.leaf .content.text-bottom p {
  margin-top: 0.35rem;
  flex: 0 1 auto;
  max-height: 36%;
}
.leaf .content.text-bottom .page-num {
  margin-top: 0.2rem;
}
.leaf .content.text-bottom img.page-art {
  margin-bottom: 0.15rem;
}


/* YOU/HIM: gray rect starts larger than the page (clipped) and shrinks onto HIM */
.leaf .art-shrink {
  position: relative;
  flex: 0 0 auto;
  align-self: center;
  width: fit-content;
  max-width: min(56%, 220px);
  margin: 0.15rem auto 0.35rem;
  overflow: hidden; /* clip oversized rect to the art box; .leaf also clips to the page */
  pointer-events: auto;
  cursor: pointer;
  z-index: 2;
  line-height: 0;
}
.leaf .art-shrink-base {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--art-max-h, 48vh);
  margin: 0;
  pointer-events: none;
  user-select: none;
  background: #fff;
}
.leaf .art-shrink-rect {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--shrink-y, 0%));
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%) scale(var(--shrink-rest, 3.4));
  transform-origin: center center;
  transition: transform 1.45s cubic-bezier(.45,.05,.25,1);
  will-change: transform;
}
.leaf .art-shrink:hover .art-shrink-rect,
.leaf .art-shrink.is-flipped .art-shrink-rect {
  transform: translate(-50%, -50%) scale(var(--shrink-to, 1));
}


/* HIM in YOU: same-size layers (letters padded to gray canvas); gray fades in behind */
.leaf .art-fade {
  position: relative;
  flex: 0 0 auto;
  align-self: center;
  width: fit-content;
  max-width: min(62%, 240px);
  /* Pull gray top up into the title so the frame registers with “HIM in YOU” */
  margin: -1.35rem auto 0.25rem;
  overflow: visible;
  pointer-events: auto;
  cursor: pointer;
  z-index: 2;
  line-height: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.leaf .art-fade.art-fade-center {
  margin-left: auto;
  margin-right: auto;
}
.leaf .art-fade-base,
.leaf .art-fade-gray {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--art-max-h, 52%);
  margin: 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
  background: transparent;
  object-fit: contain;
  object-position: top center;
}
.leaf .art-fade-base {
  position: relative;
  z-index: 2;
  opacity: 1;
}
.leaf .art-fade-gray {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  /* Identical render size to letters — no stretch; bar top stays at U bottom */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--art-max-h, 52%);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.leaf .art-fade.is-flipped .art-fade-gray {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .leaf .art-fade:hover .art-fade-gray {
    opacity: 1;
  }
}



.leaf img.page-art.page-art-center {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}


.leaf .content.title-center > h2 {
  text-align: center;
  width: 100%;
  align-self: center;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  position: relative;
  z-index: 3; /* stay readable when gray top overlaps into the title */
}

/* Phone-only continuation page after a long text split */
.leaf .content.phone-continue {
  justify-content: flex-start;
  padding-top: 1.25rem;
}
.leaf .content.phone-continue h2 {
  font-size: clamp(1rem, 4.5vw, 1.25rem);
  margin-bottom: 0.75rem;
}
.leaf .content.phone-continue p {
  font-size: clamp(0.82rem, 3.6vw, 1rem);
  max-height: none;
  overflow: visible;
  flex: 1 1 auto;
}

.intro-embed {
  margin-top: 0;
}
.intro-embed-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: #1c140c;
}
.intro-embed-text {
  margin: 0 0 0.75rem;
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  line-height: 1.5;
  color: #2a1f14;
}
.intro-embed-code {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.7rem;
  max-height: 7.5rem;
  overflow: auto;
  font-size: 0.72rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-all;
  background: #1c140c;
  color: #f7f1e6;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
}
.intro-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  pointer-events: auto;
}
.embed-copy-btn {
  pointer-events: auto;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1c140c;
  background: #f0c75e;
  box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.embed-copy-btn:hover {
  filter: brightness(1.05);
}
.embed-link {
  pointer-events: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: underline;
}
.intro-embed-status {
  margin: 0.5rem 0 0;
  min-height: 1.2em;
  font-size: 0.85rem;
  color: #0f766e;
  font-weight: 600;
}
.page-embed {
  pointer-events: auto;
  margin-top: 0.75rem;
  padding: 0.75rem 0.8rem;
  background: #f7f1e6;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 168, 0.55);
  text-align: left;
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.page-embed h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #1c140c;
}
.page-embed p {
  margin: 0 0 0.55rem !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  color: #2a1f14 !important;
  max-height: none !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}
.page-embed-code {
  max-height: 5.5rem;
  font-size: 0.65rem;
}

/* Desktop: optional art nudge (e.g. Not Fair ~1in down) */
@media (min-width: 701px) {
  .leaf img.page-art.has-art-nudge {
    margin-top: var(--art-nudge, 0.95in);
  }
}

/* HIM in YOU: fade art up, body+verse seated at bottom */
.leaf .content.text-bottom .art-fade {
  margin-bottom: 0.15rem;
  flex-shrink: 0;
}
.leaf .content.text-bottom.title-center h2 {
  margin-top: 0;
}
