/* ============================================================
   hamburger shortlist — Editorial Web Design
   Modern, narrow, mobile-first.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #faf6f0;
  --bg-2: #f3ede4;
  --ink: #1a1614;
  --ink-2: #4a423d;
  --ink-3: #7a716a;
  --line: #e5dccf;
  --line-2: #d7c9b6;
  --accent: #8a3a3a;          /* tiefes Burgundy für Titel-Akzente */
  --accent-soft: #b76060;
  --rose: #f3d6d2;             /* Termine-Hintergrund */
  --rose-deep: #d99b94;
  --rose-tint: #fbe9e7;
  --gold: #b08a4a;
  --shadow-sm: 0 1px 2px rgba(26,22,20,0.04), 0 2px 8px rgba(26,22,20,0.04);
  --shadow-md: 0 6px 24px rgba(26,22,20,0.08), 0 2px 6px rgba(26,22,20,0.05);
  --shadow-lg: 0 18px 50px rgba(26,22,20,0.12), 0 6px 18px rgba(26,22,20,0.06);
  --radius: 4px;
  --radius-lg: 10px;
  --serif: 'Newsreader', 'Iowan Old Style', 'Georgia', serif;
  --sans: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --max: 760px;
  --max-wide: 920px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: 'kern', 'liga', 'onum';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--rose); color: var(--ink); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 16px;
}

.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .b-1 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-3); font-family: var(--sans); font-weight: 500; }
.brand .b-2 { font-size: 19px; font-style: italic; font-weight: 500; }

.nav-list {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-list a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-list a:hover { color: var(--accent); }
.nav-list a.active { color: var(--ink); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero / Rotator ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 22px 36px;
  text-align: left;
  position: relative;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 600;
}

.rotator {
  position: relative;
  min-height: 220px;
}
.rotator-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;
}
.rotator-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.rotator h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 18px;
}
.rotator h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.rotator p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.rotator .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap .25s ease, color .2s ease;
}
.rotator .btn-link:hover { gap: 14px; color: var(--accent-soft); }
.rotator .btn-link::after { content: "→"; font-family: var(--serif); }

.rotator-nav {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  align-items: center;
}
.rotator-dot {
  width: 28px;
  height: 3px;
  background: var(--line-2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.rotator-dot.active { background: var(--accent); width: 44px; }
.rotator-counter {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
  margin-left: 14px;
}

/* ---------- Intro / Block ---------- */
.intro-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 22px 50px;
  border-top: 1px solid var(--line);
}

.intro-block .lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  margin: 36px 0 14px;
  max-width: 580px;
}

.intro-block p { color: var(--ink-2); margin-bottom: 14px; max-width: 600px; }

/* ---------- Books List ---------- */
.section-label {
  max-width: var(--max);
  margin: 60px auto 24px;
  padding: 0 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.section-label h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.012em;
  line-height: 1.1;
}
.section-label .sl-meta {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 600;
}

.books {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 60px;
}

.book {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.book:first-child { padding-top: 8px; }
.book:last-child { border-bottom: none; }

.book-head {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: start;
}

.book-cover {
  position: relative;
  display: block;
  background: var(--bg-2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .4s ease, box-shadow .4s ease;
  aspect-ratio: 2 / 3;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}
.book-cover:hover { transform: translateY(-3px) rotate(-0.4deg); box-shadow: var(--shadow-lg); }

.book-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.book-rank {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-rank .num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0;
}

.book-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ink);
}

.book-meta {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.book-meta .sep { opacity: 0.5; }
.book-meta .author { color: var(--ink-2); font-weight: 500; }

.book-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-top: 2px;
}
.book-rating .stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}

.book-teaser {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 6px;
}

.book-body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-top: 16px;
  max-width: 100%;
}

/* ---------- Page intros ---------- */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 22px 30px;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.page-hero .lead {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 600px;
}

/* ---------- Cards / Collection grid ---------- */
.collection-grid {
  max-width: var(--max);
  margin: 30px auto 60px;
  padding: 0 22px;
  display: grid;
  gap: 18px;
}
.collection-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.collection-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}
.collection-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.collection-card:hover::before { transform: scaleY(1); }
.collection-card .cc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 52px;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.collection-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.collection-card p {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 16px;
}
.collection-card .cc-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

/* ---------- Termine (rosé) ---------- */
.termine-hero {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-tint) 100%);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  max-width: var(--max);
  margin: 30px auto 50px;
  position: relative;
  overflow: hidden;
}
.termine-hero::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--rose-deep) 0%, transparent 70%);
  opacity: 0.35;
  border-radius: 50%;
}
.termine-hero h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  position: relative;
}
.termine-hero p { color: var(--ink-2); position: relative; font-size: 15.5px; }

.termin-list {
  list-style: none;
  margin-top: 22px;
  position: relative;
}
.termin-list li {
  display: grid;
  grid-template-columns: 130px 1fr 40px;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(26,22,20,0.08);
  align-items: baseline;
  font-size: 16px;
}
.termin-list li:first-child { border-top-color: rgba(26,22,20,0.18); }
.termin-list .t-date {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}
.termin-list .t-book { color: var(--ink); line-height: 1.4; }
.termin-list .t-book em { font-style: italic; color: var(--accent); display: block; font-size: 13.5px; margin-top: 2px; font-family: var(--serif); }
.termin-list .t-pres {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-align: right;
}

.termine-archiv {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 40px;
}
.year-jump {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 12px 0 40px;
  padding: 14px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  justify-content: center;
}
.year-jump a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background .2s ease, color .2s ease;
}
.year-jump a:hover { background: var(--rose); color: var(--accent); }

.year-block {
  margin-bottom: 50px;
  scroll-margin-top: 90px;
}
.year-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.year-block .y-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.year-block ul { list-style: none; }
.year-block li {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.year-block li:first-child { border-top: none; }
.year-block .t-date { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-3); }
.year-block .t-book { color: var(--ink); font-size: 16px; line-height: 1.4; }
.year-block .t-pres { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.08em; text-align: right; }

/* ---------- Über uns ---------- */
.faq-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 22px 60px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.faq-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--accent);
  margin-bottom: 10px;
}
.faq-item p { color: var(--ink-2); margin-bottom: 10px; }
.faq-item p:last-child { margin-bottom: 0; }
.faq-item strong { color: var(--ink); font-weight: 600; }

.principles {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 40px 0;
}
.principles h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 18px;
}
.principles ol {
  counter-reset: prinz;
  list-style: none;
}
.principles ol li {
  counter-increment: prinz;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 10px 0;
  align-items: baseline;
}
.principles ol li::before {
  content: counter(prinz, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
}

/* ---------- Authoren A-Z ---------- */
.az-jump {
  max-width: var(--max);
  margin: 16px auto 30px;
  padding: 16px 22px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
}
.az-jump a {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background .15s ease, color .15s ease;
}
.az-jump a:hover { background: var(--accent); color: #fff; }
.az-jump a.disabled { opacity: 0.25; pointer-events: none; }

.az-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 30px;
}
.az-letter {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.az-letter:first-child { border-top: none; }
.az-letter .l {
  font-family: var(--serif);
  font-style: italic;
  font-size: 54px;
  font-weight: 500;
  color: var(--accent);
  line-height: 0.9;
}
.az-letter ul { list-style: none; }
.az-letter li {
  padding: 6px 0;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}
.az-letter .a-name { font-weight: 500; color: var(--ink); }
.az-letter .a-title { font-style: italic; color: var(--ink-2); }
.az-letter .a-rating {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 22px 40px;
  margin-top: 80px;
}
.foot-wrap {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.foot-wrap h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 600;
  color: rgba(250,246,240,0.5);
  margin-bottom: 14px;
}
.foot-wrap p { font-size: 15px; color: rgba(250,246,240,0.7); line-height: 1.55; }
.foot-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 8px; }
.foot-links a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(250,246,240,0.7);
  text-decoration: none;
  transition: color .2s ease;
}
.foot-links a:hover { color: var(--rose-tint); }
.foot-bottom {
  max-width: var(--max-wide);
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(250,246,240,0.1);
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250,246,240,0.4);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.js .reveal:not(.in) { opacity: 0; transform: translateY(20px); }
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal:not(.in) { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav-list {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 12px 22px 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.2,.7,.3,1);
    box-shadow: var(--shadow-md);
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list li { border-top: 1px solid var(--line); }
  .nav-list a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
  .nav-list a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-wrap { padding: 16px 18px; min-height: 62px; }
  .brand { gap: 0; line-height: 1.05; }
  .brand .b-1 { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 1px; }
  .brand .b-2 { font-size: 18px; }

  .hero { padding: 36px 18px 24px; }
  .rotator { min-height: 260px; }
  .rotator h1 { font-size: 32px; }
  .rotator p { font-size: 16px; }

  .intro-block { padding: 24px 18px 36px; }
  .intro-block .lead { font-size: 18px; }

  .section-label { padding: 28px 18px 0; margin-top: 36px; }
  .books { padding: 0 18px 40px; }

  .book-head {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
  .book-title { font-size: 19px; }
  .book-teaser { font-size: 15px; }
  .book-body { font-size: 15.5px; }

  .termine-hero { padding: 26px 20px; margin: 22px 18px 30px; }
  .termin-list li { grid-template-columns: 100px 1fr; gap: 12px; }
  .termin-list .t-pres { grid-column: 1 / -1; text-align: left; padding-left: 0; }

  .year-block li { grid-template-columns: 90px 1fr; gap: 10px; }
  .year-block .t-pres { grid-column: 1 / -1; text-align: left; padding-left: 0; }

  .page-hero { padding: 36px 18px 20px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero .lead { font-size: 16.5px; }

  .collection-grid { padding: 0 18px; }
  .collection-card { padding: 22px 20px; }
  .collection-card .cc-num { font-size: 42px; }

  .faq-block { padding: 14px 18px 40px; }
  .faq-item h3 { font-size: 18px; }

  .principles { padding: 24px 20px; margin: 30px 0; }

  .foot-wrap { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 44px 20px 28px; }

  .az-letter { grid-template-columns: 44px 1fr; gap: 14px; }
  .az-letter .l { font-size: 40px; }
}

@media (max-width: 380px) {
  body { font-size: 16px; }
  .book-head { grid-template-columns: 70px 1fr; gap: 12px; }
  .book-title { font-size: 17px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .rotator-nav, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  .book { break-inside: avoid; }
}
