:root {
  --ink: #3F4E3E;
  --ink-deep: #2C2A28;
  --green: #596B57;
  --green-soft: #596B57;
  --gold: #A47E3B;
  --gold-light: #D8C49A;
  --cream: #F4EFE5;
  --cream-deep: #E6DECF;
  --paper: #FBF8F1;
  --blue: #596B57;
  --clay: #B98272;
  --text: #2C2A28;
  --muted: #65605B;
  --line: rgba(63, 78, 62, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --display: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 240ms ease, height 240ms ease, box-shadow 240ms ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(44, 42, 40, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
}
.brand { display: inline-flex; gap: 0.72rem; align-items: center; text-decoration: none; }
.brand-mark { width: 50px; height: 50px; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { display: grid; line-height: 1.02; letter-spacing: 0.015em; }
.brand-name strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; }
.brand-name small { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; margin-top: 0.22rem; }
.site-nav { display: flex; align-items: center; gap: 2rem; font-size: 0.84rem; font-weight: 500; }
.site-nav a { text-decoration: none; opacity: 0.86; transition: opacity 180ms ease, color 180ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { opacity: 1; color: var(--gold-light); }
.site-nav .nav-cta { border: 1px solid rgba(255,255,255,0.42); border-radius: 999px; padding: 0.58rem 1rem; opacity: 1; }
.menu-toggle { display: none; }

.hero {
  min-height: 780px;
  height: min(920px, 100svh);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding: 160px max(24px, calc((100vw - 1180px) / 2)) 92px;
  color: var(--cream);
  background:
    radial-gradient(circle at 74% 20%, rgba(164, 126, 59, 0.24), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(185, 130, 114, 0.18), transparent 34%),
    linear-gradient(138deg, #596B57 0%, #3F4E3E 50%, #2C2A28 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-glow {
  position: absolute;
  width: min(50vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  right: -10%;
  top: -18%;
  border: 1px solid rgba(164, 126, 59, 0.36);
  box-shadow: 0 0 0 70px rgba(164, 126, 59, 0.045), 0 0 0 150px rgba(185, 130, 114, 0.035);
}
.hero-path {
  position: absolute;
  width: 850px;
  height: 160px;
  border-top: 1px solid rgba(216, 196, 154, 0.52);
  border-radius: 50%;
  bottom: -54px;
  right: -80px;
  transform: rotate(-8deg);
}
.hero-copy, .hero-note { position: relative; z-index: 2; }
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.03; }
h1 { margin-bottom: 1.65rem; font-size: clamp(4rem, 7.8vw, 7.6rem); letter-spacing: -0.045em; }
h1 em { color: var(--gold-light); font-family: var(--serif); font-weight: 400; }
.hero-lede { max-width: 680px; margin-bottom: 2.4rem; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.55; color: rgba(244, 239, 229, 0.84); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0.72rem 1.35rem; border-radius: 999px; text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.button-primary { background: var(--gold-light); color: var(--ink-deep); border: 1px solid var(--gold-light); transition: transform 180ms ease, background 180ms ease; }
.button-primary:hover, .button-primary:focus-visible { background: var(--cream); transform: translateY(-2px); }
.text-link { font-size: 0.83rem; font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 0.35rem; }
.text-link span { color: var(--gold-light); margin-left: 0.25rem; }
.hero-note { align-self: center; margin-bottom: -40px; border-left: 1px solid rgba(164, 126, 59, 0.58); padding: 1.2rem 0 1.2rem 2rem; }
.note-number { color: var(--gold-light); font-size: 0.66rem; letter-spacing: 0.2em; }
.hero-note p { margin: 1.3rem 0; max-width: 300px; font-family: var(--serif); font-size: 1.5rem; line-height: 1.45; }
.hero-note small { color: rgba(244, 239, 229, 0.64); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.note-rule { width: 120px; height: 1px; margin: 1.5rem 0; background: rgba(255,255,255,0.15); }
.note-rule span { display: block; width: 36%; height: 1px; background: var(--gold-light); }

.release-band { display: grid; place-items: center; min-height: 72px; padding: 1rem 24px; background: var(--gold); color: var(--ink-deep); text-align: center; }
.release-band p { margin: 0; font-family: var(--serif); font-size: 1.2rem; }
.release-band span { display: inline-block; padding: 0.3rem 0.65rem; margin-right: 1rem; color: var(--cream); background: var(--ink-deep); border-radius: 999px; font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

.section-shell { width: var(--shell); margin-inline: auto; }
.books-section { padding: 130px 0 150px; }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 5rem; align-items: end; margin-bottom: 90px; }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -3.8rem; }
.section-intro h2, .journey-heading h2, .mission-copy h2, .connect-section h2, .about-copy h2 { margin-bottom: 0; font-size: clamp(3rem, 5.5vw, 5.5rem); letter-spacing: -0.035em; }
.section-intro > p:last-child { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 1.25rem; line-height: 1.65; }

.book-feature { position: relative; display: grid; grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr); gap: clamp(3.5rem, 8vw, 8rem); align-items: center; padding: 82px clamp(28px, 6vw, 80px); margin-bottom: 42px; border-radius: 28px; }
.book-index { position: absolute; top: 28px; right: 34px; font-family: var(--serif); font-style: italic; font-size: 0.92rem; color: rgba(255,255,255,0.45); }
.book-feature-primary { color: var(--cream); background: var(--ink); overflow: hidden; }
.book-feature-primary::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(164,126,59,0.3); border-radius: 50%; left: -240px; bottom: -300px; box-shadow: 0 0 0 72px rgba(164,126,59,0.04); }
.book-title-art { min-width: 0; min-height: 500px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 2.25rem; border: 1px solid rgba(216, 196, 154, 0.52); border-radius: 18px; background: linear-gradient(150deg, rgba(244,239,229,0.09), transparent 58%); }
.book-kicker, .book-author, .book-subtitle { display: block; }
.book-kicker { margin-bottom: auto; color: var(--gold-light); font-size: 0.61rem; letter-spacing: 0.18em; text-transform: uppercase; }
.display-title { max-width: 100%; margin: 4rem 0 2rem; font-family: var(--display); font-size: clamp(3.4rem, 5vw, 5.8rem); line-height: 0.88; letter-spacing: -0.05em; }
.display-title em { display: block; max-width: 100%; color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.95rem, 3.4vw, 2.45rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.045em; white-space: nowrap; }
.book-subtitle { max-width: 300px; padding-top: 1.3rem; border-top: 1px solid rgba(216,196,154,0.5); font-family: var(--serif); font-size: 1.06rem; line-height: 1.4; color: rgba(244,239,229,0.8); }
.book-author { margin-top: 1.8rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.book-copy { position: relative; z-index: 1; max-width: 560px; }
.book-copy h3 { margin-bottom: 1.8rem; font-size: clamp(2.4rem, 4.2vw, 4.3rem); letter-spacing: -0.03em; }
.book-copy > p:not(.eyebrow) { font-family: var(--serif); font-size: 1.15rem; line-height: 1.65; }
.book-feature-primary .book-copy > p:not(.eyebrow) { color: rgba(244,239,229,0.8); }
.availability { display: inline-block; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid currentColor; color: var(--gold-light); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }

.book-feature-companion { background: linear-gradient(145deg, var(--cream), #FBF8F1); }
.book-feature-companion .book-index { color: rgba(63,78,62,0.46); }
.cover-wrap { margin: 0 auto; width: min(100%, 390px); filter: drop-shadow(0 22px 34px rgba(63,78,62,0.2)); transform: none; }
.cover-wrap img { width: 100%; height: auto; }
.book-feature-companion .availability { color: var(--green); }
.quiet-list { list-style: none; padding: 0; margin: 2rem 0 0; border-top: 1px solid var(--line); }
.quiet-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.02rem; }
.quiet-list li::before { content: "✦"; color: var(--gold); font-size: 0.65rem; margin-right: 0.7rem; }

.journey-section { padding: 125px 0 0; color: var(--cream); background: linear-gradient(150deg, var(--ink-deep), var(--ink)); }
.journey-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; padding-bottom: 78px; }
.journey-heading .eyebrow { align-self: start; white-space: nowrap; color: var(--gold-light); }
.journey-heading h2 { max-width: 790px; text-align: right; }
.journey-steps { display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,0.14); }
.journey-steps li { min-height: 275px; padding: 2rem clamp(1.2rem, 2.5vw, 2.5rem); border-right: 1px solid rgba(255,255,255,0.14); transition: background 220ms ease, color 220ms ease; }
.journey-steps li:last-child { border-right: 0; }
.journey-steps li:hover { color: var(--ink-deep); background: var(--cream); }
.journey-steps span { display: block; margin-bottom: 3.8rem; color: var(--gold-light); font-size: 0.67rem; letter-spacing: 0.16em; }
.journey-steps li:hover span { color: var(--green); }
.journey-steps strong { display: block; font-family: var(--display); font-size: clamp(1.65rem, 2.6vw, 2.6rem); font-weight: 400; }
.journey-steps p { margin: 0.45rem 0 0; font-family: var(--serif); color: rgba(244,239,229,0.68); line-height: 1.4; }
.journey-steps li:hover p { color: rgba(44,42,40,0.8); }

.about-section { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(4rem, 10vw, 10rem); padding-top: 150px; padding-bottom: 150px; align-items: center; }
.about-portrait { position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem; color: var(--cream); border-radius: 28px; background: radial-gradient(circle at 68% 22%, rgba(185,130,114,0.3), transparent 28%), linear-gradient(160deg, #596B57, #3F4E3E 68%, #2C2A28); overflow: hidden; }
.about-portrait::after { content: ""; position: absolute; inset: 30px; border: 1px solid rgba(216,196,154,0.46); border-radius: 18px; }
.portrait-initials { position: relative; z-index: 1; font-family: var(--display); font-size: clamp(5rem, 9vw, 9rem); line-height: 0.85; color: var(--gold-light); }
.about-portrait p { position: relative; z-index: 1; margin: 1.8rem 0 0; font-size: 0.68rem; letter-spacing: 0.15em; line-height: 1.7; text-transform: uppercase; color: rgba(244,239,229,0.78); }
.about-copy { max-width: 650px; }
.about-copy h2 { margin-bottom: 2rem; }
.about-lede { font-family: var(--serif); font-size: 1.45rem; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.about-lede) { color: var(--muted); }
blockquote { margin: 2.8rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line); font-family: var(--serif); font-style: italic; font-size: 1.28rem; color: var(--green); }

.mission-section { padding: 150px 0; color: var(--cream); text-align: center; background: var(--blue); }
.mission-copy { max-width: 940px; }
.mission-copy .eyebrow { color: var(--gold-light); }
.mission-copy h2 { margin-bottom: 2rem; }
.mission-copy > p:last-child { max-width: 760px; margin: 0 auto; font-family: var(--serif); font-size: 1.35rem; line-height: 1.7; color: rgba(244,239,229,0.82); }

.connect-section { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 5rem; align-items: end; padding-top: 115px; padding-bottom: 115px; }
.connect-copy { border-left: 1px solid var(--line); padding-left: 3rem; }
.connect-copy > p:first-child { font-family: var(--serif); font-size: 1.25rem; }
.connect-note { margin-bottom: 0; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

.site-footer { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding: 50px max(24px, calc((100vw - 1180px) / 2)); color: var(--cream); background: var(--ink-deep); }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand p, .footer-meta p { margin: 0; }
.footer-brand strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.footer-brand span { color: rgba(244,239,229,0.58); font-size: 0.75rem; }
.footer-meta { text-align: right; font-size: 0.68rem; color: rgba(244,239,229,0.56); }
.footer-meta a { display: inline-block; margin-bottom: 0.6rem; color: var(--gold-light); text-decoration: none; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .site-header { height: 72px; padding-inline: 20px; }
  .menu-toggle { position: relative; z-index: 2; display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; color: var(--cream); border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.8rem; background: var(--ink-deep); font-family: var(--display); font-size: 2.2rem; transform: translateX(100%); visibility: hidden; transition: transform 260ms ease, visibility 260ms ease; }
  .site-nav.open { transform: translateX(0); visibility: visible; }
  .site-nav .nav-cta { font-family: var(--sans); font-size: 0.74rem; }
  .hero { min-height: 760px; height: auto; grid-template-columns: 1fr; align-content: end; gap: 4rem; padding: 145px 24px 72px; }
  .hero-note { display: none; }
  h1 { font-size: clamp(3.6rem, 14vw, 6.4rem); }
  .section-intro { grid-template-columns: 1fr; gap: 2rem; }
  .section-intro .eyebrow { grid-column: auto; margin-bottom: 0; }
  .book-feature { grid-template-columns: 1fr; padding: 64px 28px; }
  .book-title-art { min-height: 480px; }
  .cover-wrap { width: min(78%, 390px); }
  .journey-heading { display: block; }
  .journey-heading h2 { text-align: left; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps li { min-height: auto; display: grid; grid-template-columns: 55px 1fr; padding: 1.5rem 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .journey-steps span { grid-row: 1 / 3; margin: 0; }
  .journey-steps strong { font-size: 2rem; }
  .journey-steps p { grid-column: 2; }
  .about-section, .connect-section { grid-template-columns: 1fr; gap: 4rem; }
  .about-portrait { min-height: 480px; }
  .connect-copy { border-left: 0; border-top: 1px solid var(--line); padding: 2rem 0 0; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name strong { font-size: 1rem; }
  .hero { min-height: 720px; padding-inline: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .release-band span { display: block; margin: 0 0 0.2rem; }
  .books-section { padding-top: 90px; padding-bottom: 100px; }
  .section-intro { margin-bottom: 60px; }
  .section-intro h2, .journey-heading h2, .mission-copy h2, .connect-section h2, .about-copy h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .book-title-art { min-height: 410px; padding: 2rem; }
  .display-title { font-size: clamp(3rem, 17vw, 5rem); }
  .cover-wrap { width: 88%; }
  .journey-section { padding-top: 95px; }
  .journey-heading { padding-bottom: 55px; }
  .about-section { padding-top: 100px; padding-bottom: 100px; }
  .mission-section { padding: 100px 0; }
  .connect-section { padding-top: 90px; padding-bottom: 90px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
