:root {
  --paper: #f3eee3;
  --paper-light: #faf7f0;
  --ink: #22201e;
  --muted: #6c665f;
  --rule: #c8beae;
  --red: #9b3e34;
  --blue: #708a95;
  --deep: #25282a;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.25rem; }
h1, h2, h3 { margin: 0; font-weight: 400; line-height: .98; text-wrap: balance; }
h1 { font-size: clamp(3.6rem, 9vw, 8.6rem); letter-spacing: -.065em; }
h2 { font-size: clamp(2.5rem, 5.5vw, 5.5rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.45rem, 2.4vw, 2.25rem); }

.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; background: var(--ink); color: white; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.container { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; border-top: 1px solid var(--rule); }
.section-dark { background: var(--deep); color: var(--paper-light); border-color: #4a4b4b; }
.section-red { background: var(--red); color: var(--paper-light); border: 0; }
.eyebrow, .kicker, .nav-list, .button, .meta, .footer-nav, .index-number, dt {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow, .kicker { color: var(--red); margin-bottom: 1.5rem; }
.section-dark .eyebrow, .section-red .eyebrow { color: #e8b5a8; }
.measure { max-width: 720px; }
.lede { font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.45; }
.display-line { font-size: clamp(2.7rem, 7vw, 7rem); line-height: .98; letter-spacing: -.045em; max-width: 1050px; }
.rule-top { border-top: 1px solid var(--rule); padding-top: 1.25rem; }

.site-header { height: 88px; display: flex; align-items: center; border-bottom: 1px solid var(--rule); background: rgba(243,238,227,.96); position: relative; z-index: 50; }
.header-inner { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: .8rem; text-decoration: none; font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .17em; }
.brand-mark { width: 30px; height: 30px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 1rem; }
.nav-list { display: flex; align-items: center; gap: clamp(.9rem, 2.1vw, 2rem); list-style: none; padding: 0; margin: 0; letter-spacing: .1em; }
.nav-list a { text-decoration: none; padding: .8rem 0; position: relative; }
.nav-list a:not(.nav-action)::after { content: ''; position: absolute; left: 0; bottom: .55rem; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-list a:hover::after, .nav-list a[aria-current='page']::after { transform: scaleX(1); }
.nav-action { background: var(--ink); color: var(--paper-light); padding: .78rem 1rem !important; }
.menu-button { display: none; width: 48px; height: 48px; border: 1px solid var(--ink); background: transparent; color: var(--ink); padding: 0; }
.menu-button span, .menu-button::before, .menu-button::after { content: ''; display: block; width: 21px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded='true'] span { opacity: 0; }
.menu-button[aria-expanded='true']::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded='true']::after { transform: translateY(-6px) rotate(-45deg); }

.hero { min-height: calc(100svh - 88px); display: grid; align-items: center; padding: 4rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: center; gap: clamp(2rem, 6vw, 7rem); }
.hero-title { margin-left: -.08em; }
.hero-book-title { font-size: clamp(1.6rem, 3vw, 3.2rem); font-style: italic; margin: .5rem 0 2rem; color: var(--muted); }
.hero-statement { font-size: clamp(1.65rem, 3vw, 3rem); line-height: 1.08; max-width: 650px; margin-bottom: 1.5rem; }
.hero-copy { max-width: 660px; color: #4d4944; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid var(--ink); padding: .8rem 1.25rem; text-decoration: none; line-height: 1.1; transition: background .2s, color .2s; }
.button-primary { background: var(--ink); color: var(--paper-light); }
.button:hover { background: var(--red); border-color: var(--red); color: white; }
.section-dark .button { border-color: var(--paper-light); }
.section-dark .button-primary { background: var(--paper-light); color: var(--ink); }
.cover-stage { position: relative; justify-self: center; width: min(100%, 390px); padding: 1.5rem 1.5rem 2.5rem; }
.cover-stage::before { content: ''; position: absolute; inset: 8% 0 0 18%; background: var(--blue); opacity: .28; }
.book-cover { position: relative; width: min(100%, 320px); height: auto; margin-inline: auto; box-shadow: 16px 20px 38px rgba(34,32,30,.22); }
.margin-note { position: absolute; right: 0; bottom: 0; writing-mode: vertical-rl; font-family: var(--sans); font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }

.editorial-list { margin-top: 5rem; }
.editorial-row { display: grid; grid-template-columns: 70px minmax(180px, .8fr) 1.2fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--rule); align-items: start; }
.editorial-row p { margin: 0; color: var(--muted); max-width: 580px; }
.index-number { color: var(--red); }
.heart-grid, .bio-grid, .book-grid, .contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.heart-cover { width: min(100%, 320px); height: auto; margin-inline: auto; }
.quote { font-size: clamp(2.5rem, 5.6vw, 5.8rem); line-height: .98; letter-spacing: -.045em; }
.attribution { margin-top: 2rem; color: #bab7af; font-style: italic; }
.book-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.7rem; margin: 2rem 0; color: var(--muted); }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 4rem 0 3rem; border-top: 1px solid var(--rule); }
.theme { padding: 2.25rem 2.5rem 1rem 0; border-right: 1px solid var(--rule); }
.theme + .theme { padding-left: 2.5rem; }
.theme:last-child { border-right: 0; }
.theme p { color: var(--muted); margin-top: 1.25rem; }
.portrait-frame { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1 / 1.12; }
.portrait-frame::before { content: ''; position: absolute; inset: -1.2rem 1.2rem 1.2rem -1.2rem; border: 1px solid var(--red); }
.portrait { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; filter: saturate(.72) contrast(1.05); }
.affiliations { list-style: none; padding: 0; margin: 4rem 0 2rem; border-top: 1px solid #555; }
.affiliations li { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; padding: 1.2rem 0; border-bottom: 1px solid #555; font-family: var(--sans); letter-spacing: .08em; }
.affiliations li::after { content: '—'; color: var(--red); }
.purchase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.formats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.formats span { min-height: 100px; display: grid; place-items: center; text-align: center; font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
.formats span + span { border-left: 1px solid var(--ink); }
.journal-band { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.final-cta { text-align: center; }
.final-cta .actions { justify-content: center; }

.page-hero { padding: clamp(5rem, 11vw, 10rem) 0 clamp(4rem, 8vw, 7rem); }
.page-hero h1 { max-width: 1100px; }
.page-hero .lede { margin-top: 2rem; }
.book-detail-cover { width: min(100%, 320px); height: auto; margin-inline: auto; box-shadow: 20px 24px 45px rgba(0,0,0,.18); }
.facts { margin: 2.5rem 0 0; }
.facts div { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--rule); }
.facts dd, .facts dt { margin: 0; }
.facts dd { font-size: 1rem; }
.isbn-list { list-style: none; padding: 0; margin: 2rem 0; border-top: 1px solid var(--rule); }
.isbn-list li { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--rule); }
.isbn-list strong { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.form-list { counter-reset: forms; margin-top: 4rem; }
.form-entry { counter-increment: forms; display: grid; grid-template-columns: 90px 1fr 1fr; gap: 2rem; padding: 2.5rem 0; border-top: 1px solid var(--rule); }
.form-entry::before { content: '0' counter(forms); color: var(--red); font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.form-entry p { color: var(--muted); }
.about-steps { margin-top: 4rem; }
.about-step { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem, 6vw, 6rem); padding: 2.4rem 0; border-top: 1px solid var(--rule); }
.about-step p { margin: 0; max-width: 680px; color: var(--muted); }
.topic-lanes { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); margin-top: 4rem; }
.topic-lane { min-height: 300px; padding: 2rem 2rem 2rem 0; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--rule); }
.topic-lane + .topic-lane { padding-left: 2rem; }
.topic-lane:last-child { border-right: 0; }
.topic-lane span { color: var(--red); font-size: 3rem; }
.contact-note { border-left: 1px solid var(--red); padding-left: 2rem; }

.site-footer { background: var(--ink); color: var(--paper); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.footer-name { font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: 1; }
.footer-subtitle { color: #bbb3a8; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 2rem; align-content: start; list-style: none; padding: 0; margin: 0; }
.footer-nav a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; padding: .5rem 0; text-decoration: none; }
.concept-credit { border-top: 1px solid #4f4b47; margin-top: 3rem; padding-top: 1.5rem; color: #aaa39a; font-family: var(--sans); font-size: .68rem; letter-spacing: .08em; }

@media (min-width: 681px) {
  .page-hero--quiet { padding-top: clamp(4.375rem, 9.6vw, 8.75rem); }
}

@media (max-width: 1024px) {
  body { font-size: 17px; }
  .hero-grid { grid-template-columns: 1fr .65fr; gap: 2rem; }
  .nav-list { gap: .9rem; font-size: .64rem; }
  .theme { padding-right: 1.5rem; }
  .theme + .theme { padding-left: 1.5rem; }
  .margin-note { right: 0; }
}

@media (max-width: 860px) {
  .site-header { height: 74px; }
  .menu-button { display: block; position: relative; z-index: 52; }
  .site-nav { position: fixed; inset: 0; background: var(--paper-light); z-index: 51; padding: 6.5rem 1.5rem 2rem; visibility: hidden; opacity: 0; transition: opacity .2s, visibility .2s; }
  .site-nav[data-open='true'] { visibility: visible; opacity: 1; }
  .nav-list { display: flex; flex-direction: column; align-items: stretch; gap: 0; font-size: .9rem; }
  .nav-list li { border-top: 1px solid var(--rule); }
  .nav-list a { display: flex; min-height: 58px; align-items: center; }
  .nav-action { margin-top: 1rem; justify-content: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .62fr; }
  .heart-grid, .bio-grid, .book-grid { grid-template-columns: .72fr 1.28fr; gap: 3rem; }
  .editorial-row { grid-template-columns: 55px .8fr 1.2fr; gap: 1.2rem; }
}

@media (max-width: 680px) {
  .container, .header-inner { width: min(calc(100% - 2rem), var(--max)); }
  .section { padding: 4.5rem 0; }
  h1 { font-size: clamp(3.1rem, 17vw, 5.2rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-grid, .heart-grid, .bio-grid, .book-grid, .purchase-grid, .journal-band, .contact-grid { grid-template-columns: 1fr; }
  .hero-content { display: contents; }
  .hero .eyebrow { order: 0; }
  .hero-title { order: 1; }
  .hero-book-title { order: 2; }
  .cover-stage { order: 3; width: 80%; margin: 1rem auto 2rem; }
  .hero-statement, .hero-copy, .hero .actions { order: 4; }
  .margin-note { right: 0; }
  .editorial-list { margin-top: 3rem; }
  .editorial-row { grid-template-columns: 42px 1fr; gap: .8rem 1rem; }
  .editorial-row p { grid-column: 2; }
  .heart-cover { max-width: 270px; }
  .theme-grid, .topic-lanes { grid-template-columns: 1fr; }
  .theme, .theme + .theme, .topic-lane, .topic-lane + .topic-lane { padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .topic-lane { min-height: 210px; }
  .portrait-frame { width: calc(100% - 1rem); margin-left: 1rem; }
  .purchase-grid { align-items: start; }
  .formats span { min-height: 82px; font-size: .64rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-entry { grid-template-columns: 42px 1fr; gap: 1rem; }
  .form-entry p { grid-column: 2; }
  .about-step { grid-template-columns: 1fr; gap: 1rem; }
  .facts div { grid-template-columns: 105px 1fr; }
  .isbn-list li { grid-template-columns: 105px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
