:root {
  --ink: #241a15;
  --ink-soft: #55463d;
  --paper: #f5efe5;
  --paper-2: #ede1d2;
  --white: #fffdf9;
  --brown: #6d3f2a;
  --brown-dark: #2f231c;
  --gold: #c59b55;
  --rust: #9b4a34;
  --green: #4e6653;
  --line: rgba(36, 26, 21, 0.14);
  --shadow: 0 24px 70px rgba(47, 35, 28, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 22px;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  padding-block: 10px;
  background: rgba(245, 239, 229, .94);
  box-shadow: 0 8px 32px rgba(36, 26, 21, .08);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(var(--max), 100%);
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
}

.brand-mark span {
  position: absolute;
  width: 28px;
  height: 34px;
  border: 2px solid var(--brown-dark);
  border-radius: 3px 7px 7px 3px;
  background: var(--paper);
}

.brand-mark span:nth-child(1) { transform: translateX(-6px) rotate(-8deg); }
.brand-mark span:nth-child(2) { transform: translateX(1px); background: var(--gold); }
.brand-mark span:nth-child(3) { transform: translateX(7px) rotate(7deg); }

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  letter-spacing: .02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--brown);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  position: relative;
  padding: 10px 13px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 700;
}

.main-nav a::after {
  content: '';
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s 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); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 130px 22px 92px;
  overflow: hidden;
  background:
    linear-gradient(rgba(87, 62, 45, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 62, 45, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.8%, rgba(36,26,21,.08) 50%, transparent 50.2%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .7;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  top: -160px;
  left: -120px;
  background: rgba(197, 155, 85, .18);
}

.hero-glow-two {
  width: 460px;
  height: 460px;
  right: -190px;
  bottom: -180px;
  background: rgba(155, 74, 52, .14);
}

.hero-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 8.7vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .78;
}

.hero h1 em {
  display: inline-block;
  color: var(--brown);
  font-size: .57em;
  font-weight: 400;
  letter-spacing: -.03em;
  transform: translateX(.7em);
}

.hero-lead {
  max-width: 630px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brown-dark);
  box-shadow: 0 14px 30px rgba(47,35,28,.18);
}

.button-primary:hover {
  background: var(--brown);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.35);
}

.button-ghost:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,.75);
}

.topic-line {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-line span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.33);
  font-size: .72rem;
}

.hero-art {
  min-height: 570px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.reading-card {
  width: min(330px, 73vw);
  aspect-ratio: .72;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 32px;
  border-radius: 8px 18px 18px 8px;
  color: #f5e8d4;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 45%),
    var(--brown-dark);
  box-shadow: -18px 28px 60px rgba(36, 26, 21, .25), inset -9px 0 rgba(0,0,0,.11);
  transform: rotate(3deg) translateY(-20px);
}

.reading-card::before,
.reading-card::after {
  content: '';
  position: absolute;
  left: 18px;
  width: 3px;
  height: 43%;
  background: var(--gold);
}

.reading-card::before { top: 0; }
.reading-card::after { bottom: 0; }

.reading-card-label {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.reading-card-title {
  max-width: 205px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  line-height: 1.08;
}

.reading-card-rule {
  width: 55px;
  height: 1px;
  background: var(--gold);
}

.reading-card-number {
  align-self: flex-end;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.2rem;
}

.book {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 50%;
  height: 64px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  border-radius: 5px 12px 12px 5px;
  color: rgba(255,255,255,.86);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  letter-spacing: .08em;
  box-shadow: 0 18px 38px rgba(36,26,21,.2), inset 0 -7px rgba(0,0,0,.08);
  transform-origin: left center;
}

.book::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 14px;
  width: 2px;
  background: rgba(255,255,255,.4);
}

.book-back {
  width: 330px;
  background: var(--green);
  transform: translateX(-52%) rotate(-4deg);
}

.book-middle {
  width: 380px;
  bottom: 91px;
  background: var(--rust);
  transform: translateX(-48%) rotate(3deg);
}

.book-front {
  width: 345px;
  bottom: 143px;
  background: var(--gold);
  color: var(--ink);
  transform: translateX(-55%) rotate(-2deg);
}

.bookmark {
  position: absolute;
  z-index: 5;
  top: 76px;
  right: 18%;
  width: 24px;
  height: 155px;
  background: var(--rust);
  box-shadow: 0 15px 25px rgba(36,26,21,.18);
  transform: rotate(7deg);
}

.bookmark::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  border-right: 12px solid transparent;
  border-bottom: 16px solid var(--paper);
  border-left: 12px solid transparent;
}

.hero-bottom {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-soft);
  font-size: .67rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-bottom i {
  width: 46px;
  height: 1px;
  position: relative;
  display: block;
  background: var(--ink-soft);
  overflow: hidden;
}

.hero-bottom i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper);
  animation: scrollLine 2.2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.section-pad {
  padding: 112px 22px;
}

.section-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
}

.section-heading h2,
.experience h2,
.closing h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--ink-soft);
}

.intro-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.editorial-note {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  align-items: center;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.note-icon {
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: .7;
}

.editorial-note p {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.18rem;
  line-height: 1.45;
}

.categories {
  position: relative;
  background: var(--paper);
}

.categories::before {
  content: '';
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: var(--line);
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,253,249,.68);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.category-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-card::after {
  content: '';
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.category-index {
  color: var(--brown);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.category-icon {
  width: 64px;
  height: 64px;
  margin-top: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brown);
  background: var(--paper-2);
}

.category-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card h3 {
  margin: 26px 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.58rem;
  line-height: 1.15;
}

.category-card p {
  max-width: 290px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.category-card-accent {
  color: #f7eadb;
  border-color: transparent;
  background: var(--brown-dark);
}

.category-card-accent .category-index,
.category-card-accent .category-icon {
  color: var(--gold);
}

.category-card-accent .category-icon {
  background: rgba(255,255,255,.08);
}

.category-card-accent p {
  color: rgba(255,255,255,.7);
}

.category-card-accent:hover {
  background: var(--brown-dark);
}

.experience {
  padding: 110px 22px;
  color: #f8eee1;
  background: var(--brown-dark);
  overflow: hidden;
}

.experience-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.section-kicker.light {
  color: var(--gold);
}

.experience-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
}

.experience-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.experience-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  font-size: .75rem;
}

.shelf-visual {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 35px 0;
}

.shelf {
  min-height: 178px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-inline: 26px;
  border-bottom: 15px solid #6d4935;
  box-shadow: 0 15px 0 #1b1410, 0 31px 28px rgba(0,0,0,.2);
}

.spine {
  position: relative;
  display: block;
  border-radius: 3px 7px 3px 3px;
  box-shadow: inset -7px 0 rgba(0,0,0,.13), inset 2px 0 rgba(255,255,255,.12);
}

.spine::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: rgba(255,255,255,.35);
}

.spine-1 { width: 58px; height: 146px; background: #8d4a36; transform: rotate(-3deg); }
.spine-2 { width: 70px; height: 162px; background: #d0aa66; }
.spine-3 { width: 48px; height: 134px; background: #5b705f; transform: rotate(2deg); }
.spine-4 { width: 82px; height: 157px; background: #7b5d4a; }
.spine-5 { width: 52px; height: 125px; background: #9a6651; transform: rotate(4deg); }
.spine-6 { width: 74px; height: 152px; background: #52665b; transform: rotate(-2deg); }
.spine-7 { width: 49px; height: 129px; background: #a15a43; }
.spine-8 { width: 88px; height: 165px; background: #c09855; transform: rotate(2deg); }
.spine-9 { width: 55px; height: 142px; background: #6c5140; }
.spine-10 { width: 66px; height: 119px; background: #7f4435; transform: rotate(3deg); }

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.gallery-card {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(36,26,21,.08);
}

.image-open {
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--paper-2);
  cursor: zoom-in;
  overflow: hidden;
}

.image-open::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(36,26,21,.18));
  opacity: 0;
  transition: opacity .3s ease;
}

.image-open:hover::after {
  opacity: 1;
}

.image-open img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .45s ease;
}

.image-open:hover img {
  transform: scale(1.015);
}

.zoom-badge {
  width: 52px;
  height: 52px;
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(36,26,21,.86);
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.image-open:hover .zoom-badge,
.image-open:focus-visible .zoom-badge {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 10px 7px;
}

.gallery-card figcaption span {
  color: var(--brown);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.gallery-card figcaption p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
}

.closing {
  position: relative;
  padding: 115px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(197,155,85,.16), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(155,74,52,.12), transparent 30%),
    var(--paper);
  overflow: hidden;
}

.closing::before,
.closing::after {
  content: '';
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.closing::before {
  width: 320px;
  height: 320px;
  top: -230px;
  left: 8%;
}

.closing::after {
  width: 450px;
  height: 450px;
  right: -310px;
  bottom: -280px;
}

.closing-shell {
  width: min(900px, 100%);
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.closing-symbol {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--brown-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  box-shadow: 0 14px 30px rgba(47,35,28,.17);
}

.closing h2 {
  margin-inline: auto;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
}

.button-dark {
  margin-top: 34px;
  color: #fff;
  background: var(--brown-dark);
}

.site-footer {
  padding: 30px 22px;
  color: rgba(255,255,255,.72);
  background: #1c1511;
}

.footer-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: grid;
}

.footer-brand strong {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.16rem;
}

.footer-brand span,
.site-footer p {
  margin: 4px 0 0;
  font-size: .75rem;
}

.lightbox {
  width: min(980px, calc(100% - 30px));
  max-height: calc(100svh - 30px);
  padding: 54px 16px 16px;
  border: 0;
  border-radius: 20px;
  background: #15100d;
  box-shadow: 0 32px 100px rgba(0,0,0,.48);
}

.lightbox::backdrop {
  background: rgba(14,10,8,.86);
  backdrop-filter: blur(7px);
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100svh - 100px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 1.8rem;
  cursor: pointer;
}

.back-to-top {
  width: 46px;
  height: 46px;
  position: fixed;
  z-index: 800;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--brown-dark);
  box-shadow: 0 12px 28px rgba(36,26,21,.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card:nth-child(2),
.gallery-card:nth-child(2) { transition-delay: .08s; }
.category-card:nth-child(3) { transition-delay: .16s; }
.category-card:nth-child(4) { transition-delay: .05s; }
.category-card:nth-child(5) { transition-delay: .13s; }
.category-card:nth-child(6) { transition-delay: .21s; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-shell,
  .intro-grid,
  .experience-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 15vw, 7.5rem);
  }

  .hero-art {
    min-height: 530px;
  }

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

  .experience-shell {
    gap: 50px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-shell {
    min-height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(330px, 86vw);
    height: 100svh;
    padding: 105px 26px 30px;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
    box-shadow: -30px 0 70px rgba(36,26,21,.18);
    transform: translateX(110%);
    transition: transform .3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.32rem;
  }

  .hero {
    padding: 118px 16px 80px;
  }

  .hero::before,
  .hero-bottom {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 19vw, 6rem);
    line-height: .83;
  }

  .hero h1 em {
    transform: translateX(.35em);
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-art {
    min-height: 440px;
  }

  .reading-card {
    width: min(268px, 70vw);
    padding: 27px 26px;
  }

  .reading-card-title {
    font-size: 2rem;
  }

  .book {
    height: 54px;
  }

  .book-back { width: 280px; bottom: 22px; }
  .book-middle { width: 315px; bottom: 68px; }
  .book-front { width: 292px; bottom: 113px; }

  .bookmark {
    top: 60px;
    right: 8%;
  }

  .section-pad,
  .experience,
  .closing {
    padding: 82px 16px;
  }

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

  .category-card {
    min-height: 280px;
  }

  .gallery-grid {
    gap: 20px;
  }

  .shelf {
    gap: 8px;
    padding-inline: 10px;
    transform: scale(.9);
  }

  .site-footer {
    padding-inline: 16px;
  }
}

@media (max-width: 460px) {
  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: .58rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark span {
    width: 24px;
    height: 30px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .topic-line {
    gap: 6px;
  }

  .topic-line span {
    font-size: .66rem;
  }

  .hero-art {
    min-height: 390px;
    margin-inline: -20px;
  }

  .reading-card {
    width: 236px;
  }

  .book-back { width: 245px; }
  .book-middle { width: 275px; }
  .book-front { width: 255px; }

  .category-card {
    padding: 25px;
  }

  .editorial-note {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .note-icon {
    font-size: 4rem;
  }

  .gallery-card {
    padding: 9px;
    border-radius: 20px;
  }

  .image-open {
    border-radius: 14px;
  }

  .closing-symbol {
    width: 66px;
    height: 66px;
  }
}

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

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