:root {
  --paper: #F8F4ED;
  --paper-deep: #F3EEE4;
  --card: #FFFDF9;
  --ink: #22262B;
  --ink-70: #3A3E44;
  --ink-55: #5A5550;
  --ink-45: #6B6560;
  --ink-30: #9A948C;
  --gold: #C9A961;
  --gold-deep: #8A6A2F;
  --gold-light: #E6D3A3;
  --teal: #1F4A52;
  --hairline: rgba(34, 38, 43, 0.09);
  --hairline-strong: rgba(34, 38, 43, 0.12);

  --display: Archivo, Helvetica, Arial, sans-serif;
  --body: Newsreader, Georgia, serif;
  --mono: ui-monospace, Menlo, monospace;

  --content: 1180px;
  --gutter: 40px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--gold-light); }

img { max-width: 100%; }
p { text-wrap: pretty; }

.wrap {
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  z-index: 40;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--paper); }

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.byline {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.lead {
  font-family: var(--body);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-70);
}

.page-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}

.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--gold-deep); color: var(--paper); }

.btn--outline { border-color: rgba(34, 38, 43, 0.35); color: var(--ink); background: none; }
.btn--outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn--on-ink { border-color: rgba(248, 244, 237, 0.5); color: var(--paper); background: none; }
.btn--on-ink:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Stands in for a purchase link that does not exist yet. */
.btn--pending {
  border-color: var(--hairline-strong);
  color: var(--ink-30);
  cursor: default;
}

.btn--text {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.btn--text:hover { color: var(--gold-deep); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.site-header .wrap {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lockup { display: flex; align-items: center; gap: 12px; }
/* The mark is an inline SVG; colour comes from currentColor. */
.mark { display: block; height: auto; color: var(--gold); }
.mark--header { width: 44px; }
.mark--footer { width: 52px; }
.mark--mission { width: 190px; }
.mark--card { width: 132px; }

.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  line-height: 1.08;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.wordmark span { display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav .nav-links { display: flex; align-items: center; gap: 36px; }

.site-nav a {
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { border-bottom-color: var(--gold); }

.site-nav .btn--header {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: 2px;
  border-bottom: 0;
}
.site-nav .btn--header:hover { background: var(--gold-deep); color: var(--paper); border-bottom: 0; }

.nav-toggle { display: none; }

/* ---------- bands ---------- */

.band--deep { background: var(--paper-deep); border-top: 1px solid var(--hairline); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--rule { border-top: 1px solid var(--hairline); }

.band--deep .eyebrow,
.band--ink .eyebrow { color: var(--gold-deep); }
.band--ink .eyebrow { color: var(--gold); }

/* ---------- home: hero ---------- */

.hero {
  padding-top: 96px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 80px;
  align-items: center;
}

.hero .eyebrow { display: block; margin-bottom: 28px; }

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 76px;
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}

.hero .byline { display: block; margin-bottom: 30px; }
.hero .lead { margin: 0 0 38px; max-width: 44ch; }

.hero-actions { display: flex; align-items: center; gap: 20px; }

.cover-frame { position: relative; }

.cover-frame::before {
  content: "";
  position: absolute;
  inset: auto -6% -8% -6%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.22), rgba(248, 244, 237, 0) 70%);
}

.cover-frame img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 40px 80px -30px rgba(34, 38, 43, 0.45), 0 2px 6px rgba(34, 38, 43, 0.12);
}

/* ---------- home: mission ---------- */

.mission {
  padding-top: 104px;
  padding-bottom: 104px;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-mark {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}


.ripple {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 200px;
  height: 130px;
  margin-left: -100px;
  border: 1.5px solid rgba(201, 169, 97, 0.5);
  border-radius: 50%;
  animation: ripple 7s ease-out infinite;
}
.ripple--delayed { animation-delay: 2.4s; }

@keyframes ripple {
  0% { transform: scale(0.35); opacity: 0; }
  18% { opacity: 0.55; }
  100% { transform: scale(1.5); opacity: 0; }
}

.mission .eyebrow { display: block; margin-bottom: 26px; }

.mission-statement {
  font-family: var(--body);
  font-weight: 300;
  font-size: 27px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 24px;
}

.mission-followon {
  font-family: var(--body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-55);
  margin: 0;
  max-width: 56ch;
}

.studio-link { border-bottom: 1px solid rgba(201, 169, 97, 0.6); }

/* ---------- praise ---------- */

.praise { padding-top: 104px; padding-bottom: 104px; }
.praise blockquote { margin: 0; max-width: 70ch; }
.praise .eyebrow { display: block; margin-bottom: 28px; }

.praise p {
  font-family: var(--body);
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 26px;
}

.praise footer,
.praise-band footer {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.praise-band { padding-top: 88px; padding-bottom: 88px; }
.praise-band blockquote { margin: 0; max-width: 74ch; }

.praise-band p {
  font-family: var(--body);
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 24px;
}

/* ---------- author strip ---------- */

.author-strip {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.author-strip img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Author portraits only — cover art is always reproduced unfiltered. */
.portrait { filter: grayscale(1) sepia(.36) saturate(.88) contrast(1.04) brightness(1.01); }

.author-strip .eyebrow { display: block; margin-bottom: 20px; }

.author-strip h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.author-strip p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.62;
  color: var(--ink-70);
  margin: 0;
  max-width: 56ch;
}

.author-strip--compact { grid-template-columns: 260px 1fr; gap: 56px; padding-top: 88px; padding-bottom: 88px; }
.author-strip--compact img { width: 260px; height: 260px; }
.author-strip--compact .eyebrow { margin-bottom: 18px; }
.author-strip--compact p { max-width: 58ch; }

/* ---------- submissions CTA ---------- */

.cta {
  padding-top: 88px;
  padding-bottom: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta .eyebrow { display: block; color: var(--gold); margin-bottom: 18px; }

.cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.72);
  margin: 0;
  max-width: 52ch;
}

/* ---------- book page ---------- */

.book {
  padding-top: 80px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 72px;
  align-items: start;
}

.book-rail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 40px 80px -30px rgba(34, 38, 43, 0.45);
}

.book-buy { margin-top: 28px; display: grid; gap: 12px; }
.book-buy .btn { text-align: center; padding: 16px 24px; }

.book-facts {
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-strong);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  font-family: var(--display);
  font-size: 12.5px;
}

.book-facts dt {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.book-facts dd { margin: 0; color: var(--ink-70); }
.book-facts dd.is-tk { color: var(--ink-30); }

.book-main .eyebrow { display: block; margin-bottom: 24px; }

.book-main h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 62px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.book-main .byline { display: block; margin-bottom: 36px; }

.synopsis-lead {
  font-family: var(--body);
  font-weight: 300;
  font-size: 21px;
  line-height: 1.62;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 62ch;
}

.synopsis {
  font-family: var(--body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.68;
  color: var(--ink-70);
  margin: 0 0 22px;
  max-width: 62ch;
}
.synopsis:last-of-type { margin-bottom: 48px; }

/* hairline-separated rows: 1px grid gaps over a hairline background */
.rows {
  display: grid;
  gap: 1px;
  background: var(--hairline-strong);
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}

.rows > * { background: var(--paper); padding: 26px 0; }

.row-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.row-body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-55);
  max-width: 58ch;
}

.book-closer {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold-deep);
  margin: 40px 0 0;
}

/* ---------- about ---------- */

.about-hero { padding-top: 96px; padding-bottom: 64px; }
.about-hero .eyebrow { display: block; margin-bottom: 26px; }
.about-hero h1 { margin-bottom: 36px; max-width: 22ch; }

.about-hero .mission-statement { font-size: 26px; line-height: 1.52; max-width: 62ch; }

.about-hero .mission-followon {
  font-size: 20px;
  line-height: 1.68;
  color: var(--ink-70);
  max-width: 62ch;
}

.values {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.values .rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 22px; }

.values h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.values p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-55);
  margin: 0;
}

.catalogue { padding-top: 88px; padding-bottom: 88px; }
.catalogue .eyebrow { display: block; margin-bottom: 32px; }

.catalogue-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--hairline-strong);
  color: inherit;
}
.catalogue-row:last-child { border-bottom: 1px solid var(--hairline-strong); }
.catalogue-row:hover { color: inherit; }

.catalogue-row img {
  width: 150px;
  height: auto;
  display: block;
  box-shadow: 0 14px 30px -14px rgba(34, 38, 43, 0.4);
}

.catalogue-row h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.catalogue-meta {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 14px;
}

.catalogue-row p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-55);
  margin: 0;
  max-width: 56ch;
}

.catalogue-view {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- submissions ---------- */

.subs-hero { padding-top: 96px; padding-bottom: 56px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(201, 169, 97, 0.7);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 30px;
}

.subs-hero h1 { margin-bottom: 28px; max-width: 20ch; }

.subs-hero p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}

.subs-cols {
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.subs-cols h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-strong);
}

.subs-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  font-family: var(--body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-70);
}

.subs-send {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-strong);
}

/* ---------- contact ---------- */

.contact {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.contact .eyebrow { display: block; margin-bottom: 26px; }
.contact h1 { font-size: 60px; margin-bottom: 30px; max-width: 18ch; }

.contact .lead { margin: 0 0 40px; max-width: 48ch; line-height: 1.58; }

.contact-email {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.contact-email:hover { color: var(--gold-deep); }

.contact-where {
  margin-top: 44px;
  font-family: var(--body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-55);
}

.contact-where .eyebrow { letter-spacing: 0.18em; margin-bottom: 10px; }

.contact .row-title {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- footer ---------- */

.site-footer { background: var(--paper-deep); border-top: 1px solid var(--hairline); }

.footer-grid {
  padding-top: 64px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 64px;
  align-items: start;
}

.footer-brand .lockup { gap: 14px; }


.footer-brand .wordmark {
  font-weight: 900;
  font-size: 15px;
  line-height: 0.98;
  letter-spacing: 0.1em;
}

.footer-brand p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-55);
  margin: 22px 0 0;
  max-width: 34ch;
}

.footer-col {
  font-family: var(--display);
  font-size: 13px;
  line-height: 2;
  color: var(--ink-70);
}
.footer-col a { color: var(--ink-70); display: block; }
.footer-col a:hover { color: var(--gold-deep); }

.footer-col .eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.footer-col a.quiet { color: var(--ink-30); }

.footer-legal {
  padding-bottom: 44px;
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-30);
}

/* ---------- scroll reveal ---------- */

/* Visible is the resting state. JS opts elements out by adding .is-pending,
   so any script failure leaves a fully rendered page. */
[data-reveal] { transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
[data-reveal].is-pending { opacity: 0; transform: translateY(18px); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-pending { opacity: 1; transform: none; transition: none; }
  .ripple { animation: none; opacity: 0; }
  .btn { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav-toggle { display: none; }

  .hero { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: 52px; }
  .hero .lead { font-size: 20px; }
  .cover-frame { max-width: 420px; margin: 0 auto; width: 100%; }

  .page-title { font-size: 44px; }
  .book-main h1 { font-size: 44px; }
  .contact h1 { font-size: 44px; }

  .mission { grid-template-columns: 1fr; gap: 56px; }
  .mission-statement { font-size: 24px; }
  .about-hero .mission-statement { font-size: 22px; }
  .subs-hero p { font-size: 20px; }

  .praise p { font-size: 26px; }
  .praise-band p { font-size: 23px; }

  .author-strip,
  .author-strip--compact { grid-template-columns: 1fr; gap: 36px; }
  .author-strip img,
  .author-strip--compact img { width: 220px; height: 220px; }
  .author-strip h2 { font-size: 32px; }

  .cta h2 { font-size: 32px; }

  .book { grid-template-columns: 1fr; gap: 56px; }
  .book-rail { max-width: 420px; }

  .values { grid-template-columns: 1fr; gap: 40px; }
  .catalogue-row { grid-template-columns: 110px 1fr; gap: 28px; }
  .catalogue-row h3 { font-size: 24px; }
  .catalogue-row img { width: 110px; }
  .catalogue-view { grid-column: 2; }

  .subs-cols { grid-template-columns: 1fr; gap: 48px; }
  .contact { grid-template-columns: 1fr; gap: 56px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; }

  .site-header .wrap { gap: 16px; }

  .site-nav { gap: 16px; }
  .site-nav .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: 8px var(--gutter) 20px;
    flex-direction: column;
    gap: 18px;
    animation: fade-in 160ms linear;
  }
  .site-nav .nav-links[data-open="true"] { display: flex; }
  .site-nav .nav-links a { font-size: 12.5px; }

  .nav-toggle {
    display: inline-block;
    background: none;
    border: 0;
    padding: 8px 0;
    font-family: var(--display);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
  }

  .site-nav .btn--header { padding: 10px 14px; }

  .hero h1 { font-size: 40px; }
  .page-title { font-size: 40px; }
  .book-main h1 { font-size: 40px; }
  .contact h1 { font-size: 40px; }

  .hero .lead,
  .subs-cols ul,
  .mission-followon { font-size: 17px; }
  .mission-statement,
  .about-hero .mission-statement { font-size: 21px; }
  .subs-hero p { font-size: 19px; }
  .praise p { font-size: 22px; }
  .praise-band p { font-size: 20px; }
  .synopsis-lead { font-size: 19px; }
  .synopsis, .row-body, .catalogue-row p, .values p, .footer-brand p { font-size: 17px; }
  .author-strip p { font-size: 18px; }
  .cta h2 { font-size: 28px; }
  .cta p { font-size: 17px; }
  .contact-email { font-size: 21px; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-actions .btn,
  .book-buy .btn,
  .cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }
  .hero-actions .btn--text { text-align: center; }

  .catalogue-row { grid-template-columns: 90px 1fr; gap: 20px; }
  .catalogue-row img { width: 90px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .mark--mission { width: 150px; }
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
