:root {
  --paper: #f3f0e9;
  --paper-deep: #e8e3d9;
  --ink: #171918;
  --muted: #666861;
  --navy: #17243d;
  --navy-soft: #253653;
  --white: #fffdf8;
  --line: rgba(23, 25, 24, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --shadow: 0 24px 60px rgba(23, 25, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--navy);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: var(--navy);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 13px;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.brand-role {
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.header-socials {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.header-socials a {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  transition: transform 180ms ease, filter 180ms ease;
}

.header-socials a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.header-socials img {
  width: 100%;
  height: 100%;
}

.site-nav a {
  position: relative;
  padding: 34px 0 32px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.045em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-5px) rotate(-45deg);
}

.eyebrow,
.section-kicker,
.meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--navy-soft);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 49%, rgba(23, 36, 61, 0.82) 67%, rgba(23, 36, 61, 0.18) 100%),
    var(--navy);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: 52% 48%;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 88px 0 112px;
}

.hero .eyebrow {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.hero-lead {
  max-width: 560px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: var(--navy-soft);
  background: var(--navy-soft);
}

.button-light {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.37);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  color: var(--navy);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
}

.hero-portrait {
  position: absolute;
  z-index: 2;
  right: max(-30px, calc((100vw - 1240px) / 2 - 80px));
  bottom: 0;
  width: min(52vw, 700px);
  height: calc(100% - 18px);
  object-fit: contain;
  object-position: bottom right;
  filter: saturate(0.78) contrast(1.04);
}

.hero-number {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-grid {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1.65fr repeat(3, 0.55fr);
}

.intro-quote {
  display: flex;
  align-items: center;
  padding: 32px 58px 32px 0;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.34;
}

.fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.fact span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 82px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 54px;
}

.section-head-copy {
  max-width: 760px;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
}

.section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.56);
}

.section-title,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-title {
  font-size: clamp(48px, 6vw, 82px);
}

.page-title {
  max-width: 960px;
  font-size: clamp(64px, 9vw, 128px);
}

.section-description {
  max-width: 580px;
  margin: 23px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.67);
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  font-size: 16px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-dark .text-link {
  color: var(--white);
}

.featured-books {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.book-card {
  min-width: 0;
}

.book-cover {
  position: relative;
  aspect-ratio: 0.706;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: 0 16px 40px rgba(23, 25, 24, 0.12);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.book-card:hover .book-cover img {
  transform: scale(1.025);
}

.book-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(23, 36, 61, 0.88);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.book-info {
  padding-top: 20px;
}

.book-type {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-title {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
}

.book-summary {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.book-actions a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.book-actions a:hover {
  color: var(--white);
  background: var(--navy);
}

.book-downloads {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.book-downloads > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.book-downloads > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.book-downloads a {
  padding: 8px 9px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.book-downloads a:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.book-litres {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 11px 12px;
  color: var(--white);
  background: #ff5a36;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.book-litres:hover {
  background: #e84727;
}

.quote-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.quote-photo {
  min-height: 670px;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(0.14) saturate(0.78);
}

.quote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(46px, 7vw, 110px);
  color: var(--white);
  background: var(--navy);
}

.quote-mark {
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.55;
}

blockquote {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 53px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.quote-caption {
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audio-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.audio-title {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.audio-credit {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.audio-player {
  width: min(520px, 45vw);
  filter: grayscale(1) contrast(0.9);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.music-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.music-cover {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.music-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 44px);
}

.music-card .meta {
  color: rgba(255, 255, 255, 0.5);
}

.music-title {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.music-card .audio-player {
  width: 100%;
  margin-top: 34px;
}

.chronicle-list {
  border-top: 1px solid var(--line);
}

.chronicle-item {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.chronicle-date {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronicle-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 400;
  line-height: 1.12;
}

.chronicle-text {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.chronicle-arrow {
  color: var(--muted);
  font-size: 24px;
}

.page-hero {
  padding: 105px 0 112px;
  color: var(--white);
  background: var(--navy);
}

.page-hero .eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.57);
}

.page-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.48;
}

.author-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.author-portrait {
  position: sticky;
  top: 28px;
}

.author-portrait img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.73);
}

.prose {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.72;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 70px 0 22px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.prose p {
  margin: 0 0 24px;
}

.prose .lead {
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.34;
}

.prose-note {
  margin: 45px 0;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--navy);
  color: var(--navy);
  font-size: 26px;
  line-height: 1.42;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.milestone {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.milestone-year {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 39px;
}

.milestone p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-auto-rows: 310px;
  gap: 15px;
}

.gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.gallery figure:nth-child(1) {
  grid-row: span 2;
}

.gallery figure:nth-child(4) {
  grid-column: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 300ms ease, transform 500ms ease;
}

.gallery figure:hover img {
  filter: saturate(0.95);
  transform: scale(1.02);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px 25px;
}

.books-grid .book-card[hidden] {
  display: none;
}

.poetry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.poem {
  padding: clamp(35px, 5vw, 64px);
  background: var(--white);
}

.poem h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.poem-text {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.68;
}

.poem-text p {
  margin: 0 0 1.1em;
}

.poem-date {
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.archive-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 42px;
  padding: 28px 31px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-card {
  display: grid;
  min-height: 460px;
  grid-template-columns: 1.35fr 0.65fr;
  background: var(--white);
}

.contact-main {
  padding: clamp(46px, 8vw, 105px);
}

.contact-main h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-main p {
  max-width: 650px;
  margin: 29px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 50px;
}

.contact-link {
  position: relative;
  display: grid;
  min-height: 240px;
  grid-template-rows: auto 1fr auto;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  transition: color 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.contact-icon {
  display: block;
  width: 58px;
  height: 58px;
}

.contact-icon img {
  width: 100%;
  height: 100%;
}

.contact-copy {
  align-self: end;
  margin-top: 28px;
}

.contact-copy small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-copy strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-copy em {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.contact-link > i {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--muted);
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-link:hover {
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(23, 25, 24, 0.13);
  transform: translateY(-5px);
}

.contact-link:hover > i {
  transform: translate(3px, -3px);
}

.contact-link-vk {
  border-top: 4px solid #2787f5;
}

.contact-link-litres {
  border-top: 4px solid #ff5a36;
}

.contact-link-mail {
  border-top: 4px solid #b68a52;
}

.contact-link-mail .contact-copy strong {
  font-size: clamp(16px, 1.45vw, 21px);
  overflow-wrap: anywhere;
}

.contact-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  color: var(--white);
  background: var(--navy);
}

.contact-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.contact-placeholder {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 24px;
}

.site-footer {
  padding: 70px 0 28px;
  color: var(--white);
  background: #101a2d;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 0.65fr);
  gap: 50px;
  padding-bottom: 62px;
}

.footer-title {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  :root {
    --container: min(100% - 44px, 920px);
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    grid-template-columns: 60% 40%;
  }

  .hero-portrait {
    right: -90px;
    width: 60vw;
    opacity: 0.82;
  }

  .intro-grid {
    grid-template-columns: 1.5fr repeat(3, 0.65fr);
  }

  .featured-books,
  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-feature {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .audio-panel {
    grid-template-columns: 1fr;
  }

  .audio-player {
    width: 100%;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
  }

  .site-nav {
    gap: 19px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-link {
    min-height: 155px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 74px;
    gap: 8px;
  }

  .brand-role {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    order: 3;
  }

  .header-socials {
    margin-left: auto;
    gap: 5px;
    order: 2;
  }

  .header-socials a {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 16px;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 400;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    display: block;
    min-height: 760px;
  }

  .hero-copy {
    max-width: none;
    padding: 30px 0 80px;
  }

  .hero h1 {
    width: calc(100% - clamp(124px, 33vw, 162px));
    margin-left: clamp(124px, 33vw, 162px);
    font-size: clamp(49px, 13.5vw, 68px);
    line-height: 0.84;
  }

  .hero-portrait {
    position: absolute;
    top: 84px;
    right: auto;
    bottom: auto;
    left: clamp(-120px, -27vw, -85px);
    z-index: 2;
    width: clamp(285px, 82vw, 370px);
    height: auto;
    margin: 0;
    opacity: 0.94;
    object-fit: contain;
    object-position: top left;
  }

  .hero .eyebrow {
    position: relative;
    z-index: 4;
    margin-bottom: 25px;
    text-align: center;
  }

  .hero-lead {
    position: relative;
    z-index: 4;
    width: calc(100% - clamp(132px, 35vw, 170px));
    margin: 25px 0 0 clamp(132px, 35vw, 170px);
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.46;
  }

  .hero-actions {
    position: relative;
    z-index: 4;
    width: calc(100% - clamp(158px, 42vw, 195px));
    margin: 27px 0 0 clamp(158px, 42vw, 195px);
    gap: 9px;
  }

  .hero-actions .button {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 8px;
    letter-spacing: 0.055em;
  }

  .hero-number {
    display: none;
  }

  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-quote {
    grid-column: 1 / -1;
    padding: 31px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact {
    padding: 22px 12px 22px 0;
  }

  .fact strong {
    font-size: 30px;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 28px;
  }

  .featured-books,
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-feature {
    grid-template-columns: 1fr;
  }

  .quote-photo {
    min-height: 480px;
  }

  .quote-copy {
    padding: 62px 32px;
  }

  .chronicle-item {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .chronicle-arrow {
    display: none;
  }

  .author-intro {
    grid-template-columns: 1fr;
  }

  .author-portrait {
    position: static;
    max-width: 520px;
  }

  .milestones {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .gallery figure:nth-child(1) {
    grid-row: span 1;
  }

  .gallery figure:nth-child(4) {
    grid-column: span 1;
  }

  .poetry-grid {
    grid-template-columns: 1fr;
  }

  .music-card {
    grid-template-columns: minmax(160px, 0.62fr) minmax(0, 1fr);
  }

  .music-cover {
    min-height: 310px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 22px;
  }

  .header-socials a {
    width: 27px;
    height: 27px;
  }

  .hero-inner {
    min-height: 735px;
  }

  .hero-copy {
    padding-top: 27px;
  }

  .hero-portrait {
    top: 86px;
    left: clamp(-110px, -27vw, -82px);
    width: clamp(270px, 82vw, 330px);
  }

  .hero-lead {
    font-size: clamp(13px, 3.65vw, 16px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-books,
  .books-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .book-card {
    max-width: 360px;
  }

  .music-card {
    grid-template-columns: 1fr;
  }

  .music-cover {
    min-height: 0;
    aspect-ratio: 1;
  }

  .music-card-body {
    padding: 26px 22px 30px;
  }

  .music-card .audio-player {
    margin-top: 25px;
  }

  .page-hero {
    padding: 72px 0 78px;
  }

  .section-title {
    font-size: 46px;
  }

  .page-title {
    font-size: clamp(48px, 13vw, 68px);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .archive-note {
    grid-template-columns: 1fr;
  }

  .contact-link {
    min-height: 168px;
    padding: 17px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-copy {
    margin-top: 18px;
  }

  .contact-copy strong {
    font-size: 23px;
    overflow-wrap: anywhere;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
