/* Rodokniha — cinematic heritage direction. Public styles are isolated from Desk. */
@font-face {
  font-family: Caslon;
  src: url("../fonts/libre-caslon-display.01c2c12e6c3a.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-variable.946beb949095.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
body:not(.desk-body) {
  --paper: #f3efe6;
  --paper-deep: #e8e1d4;
  --leaf: #fbf9f3;
  --ink: #22291f;
  --muted: #66685e;
  --rule: #d7d1c4;
  --accent: #805038;
  --green: #233527;
  --gold: #bda879;
  --sans: Manrope, "Avenir Next", sans-serif;
  --serif: Caslon, Georgia, serif;
  --measure: 1260px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
}
body:not(.desk-body) h1,
body:not(.desk-body) h2,
body:not(.desk-body) h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
body:not(.desk-body) h1 {
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 1.01;
  margin-bottom: 25px;
}
body:not(.desk-body) h2 {
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.04;
  margin-bottom: 22px;
}
body:not(.desk-body) h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body:not(.desk-body) h1 em,
body:not(.desk-body) h2 em {
  font-family: var(--serif);
  color: var(--accent);
  font-weight: 400;
}
body:not(.desk-body) p {
  line-height: 1.8;
}
body:not(.desk-body) a:focus-visible,
body:not(.desk-body) button:focus-visible,
body:not(.desk-body) summary:focus-visible {
  outline: 2px solid #9c794b;
  outline-offset: 5px;
}
.brand-width,
body:not(.desk-body) .page-width {
  width: 86%;
  max-width: 1260px;
  margin-inline: auto;
}
body:not(.desk-body) .site-header {
  height: 90px;
  padding: 0 6.5%;
  max-width: none;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 25;
  background: var(--paper);
}
body.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  border-bottom: 1px solid #ece8d926;
  color: #fff9ec;
}
body:not(.desk-body) .brand {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.035em;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}
.brand-initial {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 25px;
  width: 30px;
  height: 34px;
  background: var(--accent);
  color: var(--paper);
  letter-spacing: 0;
  line-height: 1;
  padding-top: 2px;
  flex: none;
}
.home-page .site-header .brand-initial {
  background: #f6f1e7;
  color: #223124;
}
body:not(.desk-body) .desktop-nav {
  display: flex;
  gap: 30px;
  margin: 0 0 0 auto;
  align-items: center;
}
body:not(.desk-body) .desktop-nav a {
  font-family: var(--sans);
  font-size: 11px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
body:not(.desk-body) .header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 6px;
}
body:not(.desk-body) .language {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
}
body:not(.desk-body) .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
  background: var(--green);
  color: #fff9ee;
  border: 1px solid var(--green);
  border-radius: 3px;
  min-height: 51px;
  padding: 16px 22px;
  box-shadow: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  transform: none;
}
body:not(.desk-body) .button:hover {
  background: #354c38;
  border-color: #354c38;
  box-shadow: 0 5px 18px #15241916;
  transform: none;
}
body:not(.desk-body) .button span {
  font-size: 19px;
  line-height: 1;
}
body:not(.desk-body) .button.light {
  background: #f7f3e9;
  border-color: #f7f3e9;
  color: #233126;
}
body:not(.desk-body) .button.light:hover {
  background: #fffdf8;
  border-color: #fffdf8;
}
body:not(.desk-body) .button.outline {
  background: transparent;
  border-color: #aaa996;
  color: var(--green);
}
body:not(.desk-body) .button.outline:hover {
  background: #e9e6da;
  border-color: #717b66;
}
body:not(.desk-body) .button.small {
  min-height: 40px;
  padding: 12px 17px;
  font-size: 10px;
  gap: 23px;
}
.home-page .site-header .button {
  border-color: #c1c8aa38;
  background: #293d2d;
}
body:not(.desk-body) .text-link,
.underlink {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  white-space: nowrap;
  line-height: 1.6;
}
.underlink:hover {
  color: var(--accent);
}
.kicker,
body:not(.desk-body) .eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 0 23px;
}
.line-icon {
  display: block;
  width: 29px;
  height: 29px;
  flex: none;
}
/* The opening is a complete photographic scene, with live HTML typography. */
.cinema-hero {
  position: relative;
  background: #17211b;
  color: #fff9ef;
  min-height: 850px;
  overflow: hidden;
}
.hero-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.hero-scene figcaption {
  position: absolute;
  right: 7%;
  bottom: 31px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.11em;
  color: #f2ead8c2;
  z-index: 3;
  line-height: 1.7;
  max-width: 250px;
  text-align: right;
  text-shadow: 0 1px 6px #142016;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #0c171adb 0%,
      #111c19a8 26%,
      #17201a30 52%,
      transparent 77%
    ),
    linear-gradient(
      0deg,
      #11201552 0%,
      transparent 24%,
      transparent 75%,
      #0d19193b 100%
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 162px;
  padding-bottom: 92px;
}
.hero-kicker {
  color: #ddd4b8;
  margin-bottom: 28px;
}
body:not(.desk-body) .cinema-hero h1 {
  font-family: var(--serif);
  font-size: clamp(72px, 6.4vw, 98px);
  line-height: 0.99;
  letter-spacing: -0.04em;
  margin: 0 0 26px;
  max-width: 660px;
  text-wrap: initial;
  font-weight: 400;
}
body:not(.desk-body) .cinema-hero h1 em {
  color: #d9bc8c;
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.025em;
}
.hero-deck {
  font-size: 14px;
  line-height: 1.85 !important;
  max-width: 390px;
  color: #eeeae0;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-actions .underlink {
  color: #f4eedd;
  font-size: 11px;
}
.hero-actions .underlink:hover {
  color: #fff;
}
.hero-signature {
  font-size: 8px;
  letter-spacing: 0.24em;
  color: #d5cbb6;
  margin: 48px 0 0;
}
.hero-vertical {
  position: absolute;
  z-index: 2;
  right: 2.5%;
  top: 180px;
  display: flex;
  align-items: center;
  gap: 24px;
  writing-mode: vertical-rl;
  color: #f0eadac0;
  font-size: 8px;
  letter-spacing: 0.2em;
}
.hero-vertical i {
  width: 1px;
  height: 95px;
  background: #f0ead650;
}
.entry-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  background: #fbf9f2;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  min-height: 110px;
  border: 1px solid #e8e1d1;
  box-shadow: 0 14px 35px #332d1812;
  border-radius: 4px;
}
.entry-intro {
  padding: 25px 32px;
  align-self: center;
}
.entry-intro .kicker {
  font-size: 7px;
  color: #7e795e;
  margin-bottom: 8px;
}
.entry-intro p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1 !important;
  margin: 0;
  max-width: 280px;
  letter-spacing: -0.015em;
}
.entry-strip > a {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
  padding: 0 30px;
  border-left: 1px solid var(--rule);
  text-decoration: none;
  color: var(--green);
  transition: background 0.2s;
}
.entry-strip > a:hover {
  background: #eeeee3;
}
.entry-strip > a strong {
  font-family: var(--serif);
  display: block;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.entry-strip > a small {
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
}
.entry-arrow {
  margin-left: auto;
  font-size: 23px;
}
.book-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  align-items: center;
  gap: 62px;
  padding-block: 85px 66px;
}
.book-feature-copy > p:not(.kicker) {
  font-size: 13px;
  color: var(--muted);
  max-width: 345px;
  margin-bottom: 26px;
}
body:not(.desk-body) .book-feature-copy h2 {
  font-size: 56px;
}
.book-feature-copy .button {
  font-size: 11px;
  min-height: 46px;
  padding: 14px 18px;
  gap: 30px;
}
.book-secondary {
  display: block;
  margin-top: 19px;
  white-space: normal;
}
.book-feature-object {
  min-width: 0;
}
.book-feature-object figure {
  margin: 0;
}
.book-feature-object img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  mix-blend-mode: multiply;
}
.book-feature-object figcaption {
  font-size: 9px;
  color: #7a796d;
  text-align: right;
  line-height: 1.6;
  padding-top: 12px;
}
.book-inclusions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  margin: 23px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--rule);
  font-size: 10px;
}
.book-inclusions li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.book-inclusions .line-icon {
  width: 23px;
  height: 23px;
  color: #586149;
}
/* Atlantic interlude. The art is symbolic; no invented research statistics. */
.journey-feature {
  position: relative;
  min-height: 500px;
  color: #f4efe3;
  background: #122220;
  overflow: hidden;
}
.journey-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.journey-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #101c1af5 0%,
    #142320b3 27%,
    #14232110 57%,
    transparent 90%
  );
}
.journey-inner {
  position: relative;
  z-index: 1;
  padding-block: 65px 70px;
}
.journey-inner .kicker {
  color: #d7c69e;
  margin-bottom: 21px;
}
body:not(.desk-body) .journey-inner h2 {
  font-size: 61px;
  margin-bottom: 20px;
  line-height: 0.99;
}
.journey-inner > p:not(.kicker) {
  max-width: 350px;
  font-size: 13px;
  line-height: 1.8;
  color: #e2e5dc;
  margin-bottom: 25px;
}
.journey-inner .button {
  min-height: 46px;
  font-size: 11px;
  padding: 14px 18px;
}
.scene-caption {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 24px;
  font-size: 7px;
  letter-spacing: 0.2em;
  color: #d0d6c8;
}
.offer-section {
  padding-block: 72px 54px;
}
body:not(.desk-body) .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading .kicker {
  margin-bottom: 18px;
}
.section-heading > p {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.85;
  max-width: 310px;
  margin: 0 0 4px;
  color: var(--muted);
}
.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.offer-row {
  padding: 32px 34px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px 15px;
  background: #f8f5ed;
  border: 1px solid #d9d5c8;
  border-radius: 4px;
  position: relative;
}
.offer-row:nth-child(2) {
  background: #e8eadf;
  border-color: #b7bfab;
}
.offer-number {
  font-family: var(--serif);
  font-size: 17px;
  color: #97845c;
  padding-top: 5px;
}
body:not(.desk-body) .offer-description h3 {
  font-size: 34px;
  margin: 0 0 9px;
  letter-spacing: -0.03em;
}
.offer-description > p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.offer-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  font-size: 11px;
}
.offer-description li:before {
  content: "✓";
  font-size: 11px;
  color: #617451;
  margin-right: 12px;
}
.offer-commercial {
  grid-column: 2;
  margin-top: 18px;
  padding-top: 19px;
  border-top: 1px solid #cccdbd;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.offer-commercial .kicker {
  font-size: 7px;
  color: #7d806f;
  margin-bottom: 9px;
}
.offer-commercial strong {
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.5;
}
.offer-commercial p {
  font-size: 10px;
  color: var(--muted);
  margin: 5px 0 20px;
}
.offer-commercial .button {
  width: 100%;
  font-size: 11px;
  min-height: 46px;
  margin-top: auto;
  padding: 14px 18px;
}
.gift-feature {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 32px;
  align-items: center;
  border-block: 1px solid var(--rule);
  padding-block: 30px;
}
.gift-emblem {
  width: 66px;
  height: 66px;
  border: 1px solid #c7cbb9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #566246;
}
.gift-emblem .line-icon {
  width: 29px;
  height: 29px;
}
.gift-feature .kicker {
  font-size: 7px;
  margin-bottom: 10px;
}
body:not(.desk-body) .gift-feature h2 {
  font-size: 33px;
  margin: 0 0 8px;
}
.gift-feature p:not(.kicker) {
  font-size: 11px;
  color: var(--muted);
  max-width: 545px;
  margin: 0;
}
.gift-feature .button {
  font-size: 10px;
  min-height: 46px;
  padding: 14px 18px;
  gap: 25px;
}
.steps-section {
  padding-block: 67px 52px;
}
body:not(.desk-body) .steps-section h2 {
  font-size: 45px;
}
.three-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.three-steps li {
  padding-top: 23px;
  border-top: 1px solid var(--rule);
}
.three-steps li > span {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: #8e815e;
  margin-bottom: 14px;
}
body:not(.desk-body) .three-steps h3 {
  font-size: 25px;
  margin-bottom: 12px;
}
.three-steps p {
  font-size: 12px;
  color: var(--muted);
  max-width: 325px;
  margin: 0;
}
.short-faq {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 70px;
  padding-block: 35px 75px;
}
.short-faq > div:first-child {
  padding-top: 21px;
}
.short-faq .kicker {
  font-size: 7px;
  margin-bottom: 15px;
}
body:not(.desk-body) .short-faq h2 {
  font-size: 35px;
}
.short-faq details {
  border-top: 1px solid var(--rule);
  padding: 0;
}
.short-faq details:last-child {
  border-bottom: 1px solid var(--rule);
}
.short-faq summary {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.short-faq summary::-webkit-details-marker {
  display: none;
}
.short-faq summary span {
  font-size: 23px;
  color: #6d755b;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.short-faq details[open] summary span {
  transform: rotate(45deg);
}
.short-faq details p {
  font-size: 12px;
  color: var(--muted);
  padding-right: 25px;
  line-height: 1.85;
  margin-bottom: 20px;
}
/* Quiet publishing-house footer. */
body:not(.desk-body) .footer {
  background: #1d2d21;
  color: #f5eedf;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer-story {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
  align-items: center;
  padding-block: 62px 55px;
}
.footer-story .kicker {
  color: #c4c3a6;
  margin-bottom: 22px;
  font-size: 8px;
}
body:not(.desk-body) .footer-story h2 {
  color: #f1eada;
  font-size: 59px;
  line-height: 1.03;
  margin-bottom: 28px;
}
.footer-story .button {
  font-size: 11px;
  min-height: 47px;
}
.footer-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
}
.footer-leaf {
  width: 85px;
  color: #aa9a70;
  transform: rotate(-6deg);
}
.footer-leaf svg {
  display: block;
  width: 100%;
  height: auto;
}
body:not(.desk-body) .footer-quote p {
  font-family: var(--serif);
  font-size: 31px;
  color: #d5c9ac;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.015em;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 26px;
  border-top: 1px solid #ebeadb23;
}
body:not(.desk-body) .footer .brand {
  font-size: 27px;
}
.footer .brand-initial {
  background: #e7dfc7;
  color: #293224;
  width: 26px;
  height: 29px;
  font-size: 22px;
}
body:not(.desk-body) .footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 27px;
  font-family: var(--sans);
  font-size: 10px;
  color: #d3d8c8;
}
.footer nav a {
  text-decoration: none;
}
.footer nav a:hover {
  text-decoration: underline;
}
.footer-copyright {
  font-size: 9px;
  color: #c6c6b5;
  white-space: nowrap;
}
/* All supporting customer pages use the same print vocabulary. */
body:not(.desk-body) .page-intro {
  padding-block: 66px 48px;
}
.page-intro .kicker {
  margin-bottom: 22px;
}
body:not(.desk-body) .page-intro h1 {
  max-width: 980px;
}
body:not(.desk-body) .page-intro .lead {
  font-family: var(--sans);
  font-size: 16px;
  max-width: 650px;
  line-height: 1.8;
}
body:not(.desk-body) .article-grid {
  padding-bottom: 80px;
}
body:not(.desk-body) .prose {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
}
body:not(.desk-body) .prose h2 {
  font-size: 35px;
}
body:not(.desk-body) .article-aside {
  font-family: var(--sans);
  font-size: 11px;
}
body:not(.desk-body) .quiet {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
body:not(.desk-body) input,
body:not(.desk-body) select,
body:not(.desk-body) textarea {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  background: #fffdf6;
  border: 1px solid #c9c8b9;
  border-radius: 3px;
  padding: 13px 14px;
}
body:not(.desk-body) .form-field {
  margin-bottom: 23px;
}
body:not(.desk-body) .form-field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
}
body:not(.desk-body) .form-field .field-optional {
  font-size: 9px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
body:not(.desk-body) .order-layout {
  padding-block: 65px 80px;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
body:not(.desk-body) .order-layout h1 {
  font-size: clamp(45px, 5.5vw, 78px);
}
body:not(.desk-body) .order-layout .lead {
  font-family: var(--sans);
  font-size: 14px;
  max-width: 385px;
}
body:not(.desk-body) .order-form {
  background: #faf7ed;
  border: 1px solid #dad7c9;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 15px 40px #4f492807;
}
body:not(.desk-body) .mode-tabs {
  font-family: var(--sans);
  font-size: 11px;
  margin-bottom: 30px;
}
.order-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.order-extras {
  border-block: 1px solid var(--rule);
  margin: 12px 0 25px;
}
.order-extras summary {
  cursor: pointer;
  padding: 18px 0;
  font-size: 11px;
  font-weight: 550;
}
.order-extras .form-field:first-of-type {
  margin-top: 12px;
}
.order-art {
  max-width: 410px;
  margin: 30px 0 0;
}
.order-art img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.order-art figcaption {
  font-size: 9px;
  color: var(--muted);
  padding-top: 8px;
}
.order-next {
  font-size: 12px;
  padding-block: 21px;
  margin-top: 25px;
  border-top: 1px solid var(--rule);
  max-width: 390px;
}
.order-next strong {
  font-weight: 550;
  display: block;
  margin-bottom: 7px;
}
.order-next p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
body:not(.desk-body) .checkbox-field input {
  min-width: 17px;
  width: 17px;
  height: 17px;
  accent-color: var(--green);
  margin-top: 2px;
}
body:not(.desk-body) .checkbox-field label {
  font-size: 10px;
  line-height: 1.75;
  font-weight: 400;
}
/* Product detail pages. */
.collection-page-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 65px;
  padding-block: 65px 45px;
  align-items: end;
}
.collection-page-intro .kicker {
  margin-bottom: 22px;
}
body:not(.desk-body) .collection-page-intro h1 {
  font-size: clamp(55px, 6.5vw, 92px);
  margin: 0;
}
.collection-page-intro > div:last-child p {
  font-size: 14px;
  max-width: 380px;
  color: var(--muted);
  margin: 0 0 5px auto;
}
.showcase-main {
  margin: 0;
}
.showcase-main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  mix-blend-mode: multiply;
}
.showcase-main figcaption {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 0;
  font-size: 10px;
  color: var(--muted);
}
.showcase-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-block: 55px 75px;
}
.showcase-detail p {
  font-size: 14px;
  max-width: 450px;
  color: var(--muted);
}
.showcase-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.showcase-detail li {
  display: flex;
  gap: 27px;
  padding: 19px 0;
  border-bottom: 1px solid var(--rule);
}
.showcase-detail li span {
  font-family: var(--serif);
  font-size: 17px;
  color: #918561;
  line-height: 1.6;
}
.showcase-detail .button {
  margin-top: 10px;
}
.showcase-tree {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding: 48px;
  background: #e7e9df;
  border: 1px solid #cbd0bf;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 65px;
}
.showcase-tree img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: cover;
  mix-blend-mode: multiply;
  border-radius: 2px;
}
.showcase-tree p {
  font-size: 14px;
  color: var(--muted);
}
.visual-note {
  font-size: 10px !important;
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
}
.showcase-tree .visual-note {
  margin-top: 24px;
}
.sample-proof {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  border-top: 1px solid var(--rule);
  padding-block: 35px 65px;
}
.sample-proof p {
  font-size: 13px;
  color: var(--muted);
  max-width: 660px;
  margin: 0;
}
.pricing-page {
  padding-bottom: 65px;
}
.pricing-explanation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding-block: 42px 10px;
}
body:not(.desk-body) .pricing-explanation h2 {
  font-size: 36px;
}
.pricing-explanation p {
  font-size: 13px;
  color: var(--muted);
}
body.reading-room .sample-title h1 {
  font-size: clamp(43px, 5vw, 74px);
}
body.reading-room .sample-title p {
  font-family: var(--sans);
  font-size: 15px;
}
body.reading-room .person-tile h2 {
  font-size: 29px;
}
body.reading-room .sample-article h2,
body.reading-room .source-spread h2 {
  font-size: 39px;
}
body.reading-room .book-nav {
  font-family: var(--sans);
  font-size: 12px;
}
body.reading-room .sample-attribution {
  font-size: 11px;
}
body.reading-room .transcription-sheet {
  box-shadow: none;
  border: 1px solid var(--rule);
}
/* Restrained entrance animation; no scroll-driven obstruction of content. */
@keyframes heritage-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > .hero-kicker {
  animation: heritage-enter 0.6s 0.05s both;
}
.hero-content > h1 {
  animation: heritage-enter 0.75s 0.13s both;
}
.hero-content > .hero-deck {
  animation: heritage-enter 0.7s 0.22s both;
}
.hero-content > .hero-actions {
  animation: heritage-enter 0.7s 0.3s both;
}
@media (min-width: 1600px) {
  .cinema-hero {
    min-height: 930px;
  }
  .hero-content {
    padding-top: 175px;
  }
  .hero-deck {
    max-width: 430px;
    font-size: 16px;
  }
  .hero-actions .button {
    min-height: 55px;
    font-size: 13px;
  }
  .hero-signature {
    margin-top: 58px;
  }
  .journey-feature {
    min-height: 555px;
  }
  .journey-inner {
    padding-block: 80px;
  }
}
@media (max-width: 1150px) {
  body:not(.desk-body) .site-header {
    padding-inline: 5%;
    gap: 25px;
  }
  body:not(.desk-body) .desktop-nav {
    gap: 22px;
  }
  body:not(.desk-body) .desktop-nav a {
    font-size: 10px;
  }
  body:not(.desk-body) .header-actions {
    gap: 21px;
  }
  body:not(.desk-body) .brand {
    font-size: 28px;
  }
  .brand-width,
  body:not(.desk-body) .page-width {
    width: 88%;
  }
  .cinema-hero {
    min-height: 775px;
  }
  .hero-content {
    padding-top: 145px;
    padding-bottom: 80px;
  }
  body:not(.desk-body) .cinema-hero h1 {
    font-size: 82px;
  }
  .hero-deck {
    font-size: 13px;
    max-width: 350px;
  }
  .hero-signature {
    margin-top: 38px;
  }
  .hero-vertical {
    display: none;
  }
  .entry-intro {
    padding-inline: 25px;
  }
  .entry-intro p {
    font-size: 22px;
  }
  .entry-strip > a {
    padding-inline: 23px;
    gap: 15px;
  }
  .entry-strip > a strong {
    font-size: 23px;
  }
  .entry-strip > a small {
    font-size: 8px;
  }
  .entry-strip .line-icon {
    width: 26px;
    height: 26px;
  }
  .book-feature {
    gap: 40px;
    padding-block: 65px 55px;
    grid-template-columns: 0.9fr 1.4fr;
  }
  body:not(.desk-body) .book-feature-copy h2 {
    font-size: 49px;
  }
  .book-feature-copy > p:not(.kicker) {
    font-size: 12px;
  }
  .book-inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-top: 18px;
    margin-top: 17px;
  }
  .book-feature-object figcaption {
    font-size: 8px;
  }
  .journey-feature {
    min-height: 455px;
  }
  .journey-inner {
    padding-block: 55px;
  }
  .journey-inner .kicker {
    font-size: 8px;
  }
  .offer-row {
    padding: 28px 26px;
  }
  .gift-feature {
    grid-template-columns: 55px 1fr;
    gap: 22px;
  }
  .gift-emblem {
    width: 55px;
    height: 55px;
  }
  .gift-feature > .button {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
  }
  .short-faq {
    gap: 45px;
  }
  .footer-story {
    gap: 35px;
  }
  .footer-quote {
    gap: 20px;
  }
  body:not(.desk-body) .footer-quote p {
    font-size: 27px;
  }
  .footer-leaf {
    width: 66px;
  }
  body:not(.desk-body) .footer nav {
    gap: 20px;
  }
}
@media (max-width: 850px) {
  body:not(.desk-body) .desktop-nav {
    display: none;
  }
  body:not(.desk-body) .site-header {
    height: 80px;
    gap: 22px;
  }
  body:not(.desk-body) .header-actions {
    margin-left: auto;
  }
  body:not(.desk-body) .mobile-menu {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    order: 4;
  }
  .mobile-menu summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
  }
  .mobile-menu summary:after {
    content: "+";
    font-size: 16px;
  }
  .mobile-menu[open] summary:after {
    content: "−";
  }
  .mobile-menu nav {
    position: absolute;
    top: 79px;
    right: 0;
    width: 100%;
    padding: 25px 6%;
    background: var(--leaf);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 15px 25px #172a1714;
    display: flex;
    flex-direction: column;
    gap: 17px;
    color: var(--ink);
  }
  .mobile-menu nav a {
    font-family: var(--sans);
    font-size: 14px;
    text-decoration: none;
  }
  .home-page .mobile-menu nav {
    background: #203124;
    color: #fff5df;
    border-bottom-color: #c8c5a941;
  }
  .cinema-hero {
    min-height: 750px;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero-scene img {
    object-position: 58% 50%;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      #0d191ae0 0%,
      #15201bbf 28%,
      #16251b50 60%,
      #16251b10 100%
    );
  }
  body:not(.desk-body) .cinema-hero h1 {
    font-size: 76px;
  }
  .hero-deck {
    font-size: 12px;
    max-width: 335px;
  }
  .hero-actions {
    gap: 23px;
  }
  .hero-actions .button {
    font-size: 11px;
  }
  .hero-actions .underlink {
    font-size: 10px;
  }
  .hero-signature {
    font-size: 7px;
  }
  .entry-strip {
    grid-template-columns: 1fr 1fr;
    min-height: 100px;
  }
  .entry-intro {
    display: none;
  }
  .entry-strip > a:first-of-type {
    border-left: 0;
  }
  .entry-strip > a {
    margin-block: 22px;
  }
  .book-feature {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 48px;
  }
  .book-feature-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: start;
  }
  .book-feature-copy .kicker {
    grid-column: 1/-1;
    margin-bottom: 15px;
  }
  .book-feature-copy h2 {
    grid-row: 2/4;
    margin-bottom: 0;
  }
  .book-feature-copy > p:not(.kicker) {
    grid-column: 2;
    max-width: none;
    margin-bottom: 17px;
  }
  .book-feature-copy .button {
    grid-column: 2;
    justify-self: start;
  }
  .book-secondary {
    grid-column: 1/-1;
    margin-top: 22px;
  }
  .book-feature-object img {
    max-height: 530px;
    object-fit: cover;
  }
  .book-inclusions {
    display: flex;
    justify-content: space-between;
  }
  .journey-feature {
    min-height: 440px;
  }
  .journey-image {
    object-position: 62% 50%;
  }
  .journey-inner > p:not(.kicker) {
    max-width: 300px;
    font-size: 12px;
  }
  body:not(.desk-body) .journey-inner h2 {
    font-size: 56px;
  }
  .journey-shade {
    background: linear-gradient(
      90deg,
      #11201cfa 0%,
      #142320c9 25%,
      #14232118 75%
    );
  }
  body:not(.desk-body) .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    font-size: 11px;
    max-width: 240px;
  }
  .offer-row {
    grid-template-columns: 22px 1fr;
    padding: 25px 22px;
    gap: 10px;
  }
  .offer-list {
    gap: 18px;
  }
  body:not(.desk-body) .offer-description h3 {
    font-size: 30px;
  }
  .offer-description > p {
    font-size: 11px;
  }
  .offer-description ul {
    font-size: 10px;
  }
  .offer-commercial p {
    font-size: 9px;
  }
  .offer-commercial strong {
    font-size: 13px;
  }
  .offer-commercial .button {
    font-size: 10px;
    gap: 15px;
  }
  .three-steps {
    gap: 27px;
  }
  body:not(.desk-body) .three-steps h3 {
    font-size: 24px;
  }
  .three-steps p {
    font-size: 11px;
  }
  .short-faq {
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
  }
  .short-faq summary {
    font-size: 11px;
  }
  .footer-story {
    grid-template-columns: 1.4fr 1fr;
  }
  body:not(.desk-body) .footer-story h2 {
    font-size: 51px;
  }
  .footer-quote {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-left: 20px;
  }
  .footer-leaf {
    width: 55px;
  }
  body:not(.desk-body) .footer-quote p {
    font-size: 25px;
  }
  .footer-links {
    gap: 25px;
    flex-wrap: wrap;
  }
  .footer-copyright {
    margin-left: auto;
  }
  .order-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  body:not(.desk-body) .order-layout {
    gap: 6%;
  }
  body:not(.desk-body) .order-form {
    padding: 26px;
  }
  .showcase-detail {
    gap: 35px;
  }
  .collection-page-intro {
    gap: 30px;
  }
  .showcase-tree {
    gap: 30px;
    padding: 30px;
  }
}
@media (max-width: 600px) {
  body:not(.desk-body) .site-header {
    height: 73px;
    padding-inline: 6%;
    gap: 17px;
  }
  body:not(.desk-body) .brand {
    font-size: 27px;
    gap: 8px;
  }
  .brand-initial {
    width: 25px;
    height: 29px;
    font-size: 23px;
  }
  body:not(.desk-body) .header-actions {
    gap: 0;
    margin-left: auto;
  }
  body:not(.desk-body) .header-actions .button {
    display: none;
  }
  .mobile-menu nav {
    top: 72px;
  }
  .brand-width,
  body:not(.desk-body) .page-width {
    width: 88%;
  }
  .cinema-hero {
    min-height: 915px;
    padding: 0;
  }
  .hero-scene img {
    object-position: 64% 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-shade {
    background:
      linear-gradient(
        180deg,
        #0d1a1dd9 0%,
        #13221be8 18%,
        #16251ba8 43%,
        #11211b26 70%,
        #11201524 100%
      ),
      linear-gradient(90deg, #15211e50, transparent 80%);
  }
  .hero-content {
    padding-top: 117px;
    padding-bottom: 280px;
  }
  body:not(.desk-body) .cinema-hero h1 {
    font-size: clamp(66px, 16vw, 84px);
    line-height: 0.98;
    max-width: none;
    margin-bottom: 22px;
  }
  .hero-kicker {
    font-size: 8px;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
  }
  .hero-deck {
    font-size: 13px;
    max-width: 345px;
    line-height: 1.85 !important;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 20px;
    align-items: center;
  }
  .hero-actions .button {
    font-size: 10px;
    gap: 20px;
    min-height: 49px;
    padding: 15px 16px;
  }
  .hero-actions .underlink {
    font-size: 10px;
  }
  .hero-signature {
    font-size: 6px;
    letter-spacing: 0.15em;
    margin-top: 28px;
  }
  .hero-scene figcaption {
    right: 6%;
    bottom: 49px;
    font-size: 6px;
    max-width: 220px;
  }
  .entry-strip {
    margin-top: -26px;
    min-height: 98px;
    width: 92%;
    border-radius: 3px;
  }
  .entry-strip > a {
    padding-inline: 15px;
    gap: 10px;
    margin-block: 19px;
  }
  .entry-strip .line-icon {
    width: 22px;
    height: 22px;
  }
  .entry-strip > a strong {
    font-size: 21px;
    letter-spacing: -0.02em;
  }
  .entry-strip > a small {
    font-size: 7px;
    line-height: 1.4;
    margin-top: 6px;
  }
  .entry-arrow {
    display: none;
  }
  .book-feature {
    padding-block: 43px 42px;
    gap: 28px;
  }
  .book-feature-copy {
    display: block;
  }
  .book-feature-copy .kicker {
    font-size: 8px;
    margin-bottom: 20px;
  }
  body:not(.desk-body) .book-feature-copy h2 {
    font-size: 46px;
    margin-bottom: 18px;
  }
  .book-feature-copy > p:not(.kicker) {
    font-size: 13px;
    max-width: 355px;
    margin-bottom: 22px;
  }
  .book-feature-copy .button {
    font-size: 11px;
    padding: 14px 18px;
  }
  .book-secondary {
    font-size: 10px;
    margin-top: 17px;
  }
  .book-feature-object {
    width: calc(100% + 5%);
    margin-inline: -2.5%;
  }
  .book-feature-object img {
    width: 100%;
    max-height: none;
    object-fit: contain;
  }
  .book-feature-object figcaption {
    text-align: left;
    padding: 12px 2.5% 0;
    font-size: 8px;
    max-width: 310px;
  }
  .book-inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 19px 2.5% 0;
    gap: 15px;
    font-size: 10px;
  }
  .book-inclusions .line-icon {
    width: 22px;
    height: 22px;
  }
  .journey-feature {
    min-height: 550px;
  }
  .journey-image {
    object-position: 62% 50%;
  }
  .journey-shade {
    background:
      linear-gradient(
        180deg,
        #10211bed 0%,
        #142320d4 34%,
        #14232140 62%,
        #15252020 100%
      ),
      linear-gradient(90deg, #0c1c1bbf, transparent 100%);
  }
  .journey-inner {
    padding-block: 42px 180px;
  }
  .journey-inner .kicker {
    font-size: 7px;
    letter-spacing: 0.13em;
    max-width: 300px;
    margin-bottom: 21px;
  }
  body:not(.desk-body) .journey-inner h2 {
    font-size: 53px;
    line-height: 1;
    margin-bottom: 19px;
  }
  .journey-inner > p:not(.kicker) {
    font-size: 12px;
    max-width: 300px;
    margin-bottom: 22px;
  }
  .journey-inner .button {
    font-size: 10px;
    padding: 13px 17px;
    min-height: 46px;
  }
  .scene-caption {
    font-size: 6px;
    bottom: 22px;
    right: 6%;
  }
  .offer-section {
    padding-block: 43px 32px;
  }
  body:not(.desk-body) .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading .kicker {
    font-size: 7px;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
  }
  body:not(.desk-body) h2 {
    font-size: 40px;
    line-height: 1.05;
  }
  .section-heading h2 {
    margin-bottom: 17px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: none;
    margin: 0;
  }
  .offer-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .offer-row {
    padding: 27px 23px;
    grid-template-columns: 24px 1fr;
    gap: 10px;
  }
  .offer-number {
    font-size: 17px;
  }
  body:not(.desk-body) .offer-description h3 {
    font-size: 33px;
  }
  .offer-description > p {
    font-size: 12px;
  }
  .offer-description ul {
    font-size: 11px;
    gap: 8px;
  }
  .offer-commercial {
    margin-top: 15px;
    padding-top: 18px;
  }
  .offer-commercial .kicker {
    font-size: 7px;
  }
  .offer-commercial strong {
    font-size: 14px;
  }
  .offer-commercial p {
    font-size: 10px;
    margin-bottom: 17px;
  }
  .offer-commercial .button {
    font-size: 11px;
    min-height: 47px;
  }
  .gift-feature {
    grid-template-columns: 44px 1fr;
    gap: 17px;
    padding-block: 26px;
  }
  .gift-emblem {
    width: 44px;
    height: 44px;
    align-self: start;
    margin-top: 6px;
  }
  .gift-emblem .line-icon {
    width: 24px;
    height: 24px;
  }
  .gift-feature .kicker {
    font-size: 6px;
    letter-spacing: 0.13em;
    margin-bottom: 11px;
  }
  body:not(.desk-body) .gift-feature h2 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 13px;
  }
  .gift-feature p:not(.kicker) {
    font-size: 11px;
    line-height: 1.8;
  }
  .gift-feature > .button {
    grid-column: 2;
    font-size: 9px;
    padding: 14px 15px;
    gap: 15px;
    margin-top: 0;
  }
  .steps-section {
    padding-block: 42px 28px;
  }
  body:not(.desk-body) .steps-section h2 {
    font-size: 37px;
    margin-bottom: 20px;
  }
  .steps-section .section-heading .underlink {
    font-size: 10px;
  }
  .three-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
  .three-steps li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 4px 19px;
    padding-top: 20px;
  }
  .three-steps li > span {
    font-size: 20px;
    line-height: 1.2;
    margin: 3px 0 0;
  }
  body:not(.desk-body) .three-steps h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .three-steps p {
    grid-column: 2;
    font-size: 12px;
    max-width: none;
  }
  .short-faq {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 14px 43px;
  }
  .short-faq > div:first-child {
    padding-top: 14px;
  }
  .short-faq .kicker {
    font-size: 7px;
    margin-bottom: 15px;
  }
  body:not(.desk-body) .short-faq h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }
  .short-faq summary {
    font-size: 12px;
    padding: 18px 0;
    gap: 16px;
  }
  .short-faq details p {
    font-size: 11px;
    padding-right: 12px;
  }
  .footer-story {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-block: 41px 32px;
  }
  .footer-story .kicker {
    font-size: 7px;
    max-width: 280px;
    letter-spacing: 0.15em;
    margin-bottom: 21px;
  }
  body:not(.desk-body) .footer-story h2 {
    font-size: 47px;
    margin-bottom: 25px;
  }
  .footer-story .button {
    font-size: 10px;
    gap: 24px;
    padding: 15px 18px;
  }
  .footer-quote {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 21px;
    padding-left: 0;
  }
  .footer-leaf {
    width: 44px;
  }
  body:not(.desk-body) .footer-quote p {
    font-size: 23px;
    line-height: 1.3;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding-block: 25px;
  }
  body:not(.desk-body) .footer .brand {
    font-size: 27px;
  }
  body:not(.desk-body) .footer nav {
    grid-column: 1/-1;
    grid-row: 2;
    gap: 13px 23px;
    font-size: 9px;
  }
  .footer-copyright {
    font-size: 8px;
  }
  .page-intro .kicker {
    font-size: 8px;
  }
  body:not(.desk-body) .page-intro {
    padding-block: 43px 32px;
  }
  body:not(.desk-body) .page-intro h1 {
    font-size: 51px;
  }
  body:not(.desk-body) .page-intro .lead {
    font-size: 14px;
  }
  body:not(.desk-body) .article-grid {
    padding-bottom: 45px;
  }
  body:not(.desk-body) .prose {
    font-size: 13px;
  }
  body:not(.desk-body) .prose h2 {
    font-size: 31px;
  }
  body:not(.desk-body) .order-layout {
    grid-template-columns: 1fr;
    padding-block: 43px 43px;
    gap: 25px;
  }
  body:not(.desk-body) .order-layout h1 {
    font-size: 55px;
  }
  body:not(.desk-body) .order-layout .lead {
    font-size: 14px;
  }
  .order-layout .kicker {
    font-size: 8px;
    margin-bottom: 21px;
  }
  .order-art {
    display: none;
  }
  .order-next {
    margin-top: 17px;
    padding-block: 15px;
  }
  .order-next p {
    font-size: 11px;
  }
  body:not(.desk-body) .order-form {
    padding: 23px;
  }
  .order-form .button {
    width: 100%;
    font-size: 11px;
    padding-inline: 17px;
  }
  body:not(.desk-body) .form-field label {
    font-size: 11px;
  }
  .collection-page-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 43px 30px;
  }
  .collection-page-intro .kicker {
    font-size: 8px;
    margin-bottom: 23px;
  }
  body:not(.desk-body) .collection-page-intro h1 {
    font-size: 58px;
  }
  .collection-page-intro > div:last-child p {
    font-size: 13px;
    margin: 0;
    max-width: none;
  }
  .showcase-main figcaption {
    flex-direction: column;
    gap: 5px;
    font-size: 9px;
    padding: 12px 0;
  }
  .showcase-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 28px 40px;
  }
  .showcase-detail .kicker {
    font-size: 8px;
  }
  .showcase-detail p {
    font-size: 13px;
  }
  .showcase-detail ul {
    font-size: 12px;
  }
  .showcase-detail li {
    padding: 15px 0;
    gap: 20px;
  }
  .showcase-tree {
    grid-template-columns: 1fr;
    padding: 21px;
    gap: 30px;
    margin-bottom: 35px;
  }
  .showcase-tree img {
    max-height: 390px;
    object-position: 50% 45%;
  }
  .showcase-tree .kicker {
    font-size: 8px;
    margin-bottom: 18px;
  }
  .showcase-tree h2 {
    font-size: 39px;
  }
  .showcase-tree p {
    font-size: 13px;
  }
  .visual-note {
    font-size: 9px !important;
  }
  .sample-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-block: 28px 44px;
  }
  .sample-proof p {
    font-size: 12px;
  }
  .sample-proof .underlink {
    font-size: 11px;
  }
  .pricing-page {
    padding-bottom: 40px;
  }
  .pricing-explanation {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 32px;
  }
  body:not(.desk-body) .pricing-explanation h2 {
    font-size: 32px;
  }
  .pricing-explanation p {
    font-size: 12px;
  }
  .pricing-page > .underlink {
    white-space: normal;
    display: inline-block;
  }
  body.reading-room .sample-title h1 {
    font-size: 45px;
  }
  body.reading-room .sample-article h2,
  body.reading-room .source-spread h2 {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-content > * {
    animation: none !important;
  }
  .button,
  .short-faq summary span,
  .desktop-nav a:after {
    transition: none !important;
  }
}
@media print {
  .site-header,
  .footer,
  .hero-actions,
  .entry-strip {
    display: none !important;
  }
  .cinema-hero {
    min-height: 0 !important;
    color: #000 !important;
  }
  .hero-scene,
  .hero-shade,
  .hero-vertical {
    display: none;
  }
  .hero-content {
    padding: 20px 0;
  }
  .hero-deck {
    color: #000;
  }
}
/* Keep navigation legible over the bright window; preserve the full book on phones. */
body.home-page .site-header {
  background: linear-gradient(90deg, #0e1b174d, #0e1b17b3);
}
@media (max-width: 600px) {
  .hero-scene {
    background: #14221c;
  }
  .hero-scene img {
    position: absolute;
    inset: auto 0 0;
    height: 65%;
    object-position: 86% 100%;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #14221c00 0%,
      #14221c 34%,
      #14221ce8 43%,
      #14221c55 61%,
      #14221c00 77%,
      #14221c24 100%
    );
  }
}
@media (min-width: 1151px) {
  body:not(.desk-body) .desktop-nav a {
    font-size: 12px;
  }
  body:not(.desk-body) .button.small {
    font-size: 11px;
  }
  .hero-deck {
    font-size: 15px;
    max-width: 430px;
  }
  .book-feature-copy > p:not(.kicker) {
    font-size: 14px;
  }
  .journey-inner > p:not(.kicker) {
    font-size: 14px;
  }
}
@media (min-width: 601px) {
  .hero-scene figcaption {
    bottom: 52px;
    font-size: 9px;
  }
}
@media (min-width: 851px) and (max-width: 1050px) {
  body:not(.desk-body) .desktop-nav {
    display: none;
  }
  body:not(.desk-body) .header-actions {
    margin-left: auto;
  }
  body:not(.desk-body) .mobile-menu {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    order: 4;
  }
  .mobile-menu summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
  }
  .mobile-menu summary::after {
    content: "+";
    font-size: 16px;
  }
  .mobile-menu[open] summary::after {
    content: "−";
  }
  .mobile-menu nav {
    position: absolute;
    top: 89px;
    right: 0;
    width: 100%;
    padding: 25px 6%;
    background: var(--leaf);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 17px;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-menu nav a {
    font-size: 14px;
    text-decoration: none;
  }
  .home-page .mobile-menu nav {
    background: #203124;
    color: #fff5df;
  }
}
/* Printed family-tree product, with the frame kept outside the artwork. */
.poster-feature{display:grid;grid-template-columns:.85fr 1.6fr;align-items:center;gap:8%;padding-top:70px;padding-bottom:80px;border-top:1px solid #d6d8cd}.poster-feature h2{font-size:clamp(42px,4.4vw,68px);line-height:1.03;margin:20px 0;letter-spacing:-.035em}.poster-feature p:not(.kicker){font-size:14px;line-height:1.9;max-width:330px;margin-bottom:27px}.poster-feature-print{padding:5px;background:#514b40;box-shadow:0 20px 35px -10px #2c352033;display:block;transform:rotate(-1deg);transition:transform .3s}.poster-feature-print:hover{transform:rotate(0)}.poster-feature-print img{display:block;width:100%;height:auto;background:#fff}.source-reference{cursor:default}.source-reference.button{background:none;color:inherit;padding:0;border:0}.order-pair[hidden]{display:none}@media(max-width:700px){.poster-feature{grid-template-columns:1fr;padding-top:40px;padding-bottom:50px;gap:35px}.poster-feature h2{font-size:46px}.poster-feature p:not(.kicker){max-width:none}.poster-feature-print{transform:none}}@media(prefers-reduced-motion:reduce){.poster-feature-print{transition:none;transform:none}}

.poster-feature-caption{grid-column:2;font:10px/1.5 var(--sans);letter-spacing:.08em;margin:-20px 0 0;color:#697265;text-align:right}
@media(max-width:700px){.poster-feature-caption{grid-column:auto;margin:-12px 0 0}}
