@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   OrganicBook — main.css
   ═══════════════════════════════════════════ */

/* ── 1. Variables ───────────────────────── */
:root {
  /* Brand palette */
  --moss:   #3d5230;
  --red:    #7a3020;
  --pond:   #2a4a5e;
  --earth:  #7a5c35;
  --bark:   #221c12;

  /* Neutrals */
  --off-white: #f8f6f1;
  --cream:     #f0ece3;
  --line:      #e4ddd0;
  --muted:     #8a8278;

  /* Fonts */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Tokens */
  --gap:    32px;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(34, 28, 18, .08);
  --shadow-lg: 0 10px 48px rgba(34, 28, 18, .14);
}

/* ── 2. Reset ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--off-white);
  color: var(--bark);
  line-height: 1.8;
  font-size: 1.0625rem;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── 3. Layout ──────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.prose {
  max-width: 720px;
  margin: 0 auto;
}

/* ── 4. Navigation ──────────────────────── */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--moss);
  letter-spacing: -.01em;
}
.nav-brand span { color: var(--bark); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-family: var(--sans);
  font-size: .875rem;
}
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--moss); }

/* ── 5. Homepage Hero ───────────────────── */
.home-hero {
  background-color: var(--moss);
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 88px 24px 80px;
  text-align: center;
}
.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.home-hero p {
  font-size: 1.15rem;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto 32px;
  font-family: var(--sans);
  font-weight: 400;
}
.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-tag {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* ── 6. Section Header ──────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 56px 0 28px;
}
.section-header h2 {
  font-size: 1.25rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--bark);
}
.section-header .count {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--muted);
}

/* ── 7. Card Grid ───────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding-bottom: 80px;
}
.article-card-grid .card-category { color: var(--moss); }
.article-card-grid .card-title {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin-bottom: 10px;
}
.article-card-grid .card-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.article-card-grid .card-footer {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--muted);
}

/* ── 8. Book Card ───────────────────────── */
.book-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.book-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-cover {
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
  flex-shrink: 0;
}
.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-category {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 8px;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}
.card-author {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.card-excerpt {
  font-size: .875rem;
  color: #4a4138;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card-rating {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  color: #b07020;
  display: flex;
  align-items: center;
  gap: 3px;
}
.card-rating::before {
  content: '★';
  font-size: .92rem;
}
.editors-pick {
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--moss);
  color: #fff;
}
.editors-pick.outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--muted);
}

/* ── 9. Review Hero ─────────────────────── */
.review-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 440px;
}
.cover-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  padding: 40px;
}
.meta-panel {
  background: #fff;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.meta-category {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.meta-title,
h1.meta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px;
  color: #221c12 !important;
}
.meta-author {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px 40px;
  margin-bottom: 28px;
  width: fit-content;
}
.meta-item label {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 3px;
}
.meta-item span {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--bark);
}
.meta-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.meta-rating-badge {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: #b07020;
  display: flex;
  align-items: center;
  gap: 5px;
}
.meta-rating-badge .star { font-size: 1.05rem; }

/* ── 10. Review Content ─────────────────── */
.review-content {
  padding: 60px 24px 88px;
}
.review-content .prose h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 52px 0 16px;
  color: var(--bark);
  line-height: 1.25;
}
.review-content .prose p {
  margin-bottom: 22px;
}
.review-intro {
  font-size: 1.12rem;
  font-style: italic;
  color: #3a3028;
  line-height: 1.75;
  margin-bottom: 36px !important;
  padding-bottom: 36px;
  border-bottom: 2px solid var(--line);
}

/* ── 11. Pullquote ──────────────────────── */
.pullquote {
  border-left: 4px solid var(--moss);
  padding: 24px 32px;
  margin: 44px 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote.green { border-color: var(--moss); }
.pullquote.red   { border-color: var(--red); }
.pullquote.blue  { border-color: var(--pond); }
.pullquote p {
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 10px !important;
  color: var(--bark);
}
.pullquote cite {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  font-style: normal;
}

/* ── 12. Key Ideas ──────────────────────── */
.key-ideas {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  margin: 52px 0;
}
.key-ideas h2 {
  font-size: 1.2rem !important;
  margin: 0 0 28px !important;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--bark);
}
.ideas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.idea {
  background: #fff;
  border-radius: 8px;
  padding: 20px 22px;
}
.idea-num {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.idea-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--bark);
  line-height: 1.3;
}
.idea-desc {
  font-size: .875rem;
  line-height: 1.65;
  color: #4a4138;
  margin: 0 !important;
}

/* ── 13. Who Should Read ────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 44px 0;
}
.who-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.who-label {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--moss);
  margin-bottom: 8px;
}
.who-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: #4a4138;
  margin: 0 !important;
}

/* ── 14. Verdict ────────────────────────── */
.verdict {
  border-radius: var(--radius);
  padding: 40px;
  margin: 52px 0 0;
  background: var(--moss);
  color: #fff;
}
.verdict.green { background: var(--moss); }
.verdict.red   { background: var(--red); }
.verdict.blue  { background: var(--pond); }
.verdict h2 {
  font-size: 1.2rem !important;
  margin: 0 0 16px !important;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
}
.verdict-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.verdict-stars svg {
  width: 22px;
  height: 22px;
  fill: #f5d060;
}
.verdict p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: .92;
  margin-bottom: 26px !important;
  color: #fff;
}
.buy-btn {
  display: inline-block;
  background: rgba(255, 255, 255, .92);
  color: var(--bark);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .88rem;
  padding: 12px 26px;
  border-radius: 6px;
  transition: background .2s;
  letter-spacing: .01em;
}
.buy-btn:hover { background: #fff; }

/* ── 15. About Page ─────────────────────── */
.about-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.about-page h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-page .about-sub {
  font-family: var(--sans);
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.about-page h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 44px 0 14px;
}
.about-page p {
  margin-bottom: 20px;
  color: #3a3028;
}
.about-page ul {
  padding-left: 22px;
  margin-bottom: 20px;
}
.about-page li {
  margin-bottom: 8px;
  color: #3a3028;
  line-height: 1.7;
}
.palette-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px 0 32px;
}
.swatch {
  border-radius: 8px;
  padding: 16px 10px 12px;
  text-align: center;
  color: #fff;
  font-family: var(--sans);
}
.swatch .swatch-name { font-size: .78rem; font-weight: 700; }
.swatch .swatch-hex  { font-size: .7rem; opacity: .75; margin-top: 2px; }

/* ── 16. Footer ─────────────────────────── */
.site-footer {
  background: var(--bark);
  color: rgba(255, 255, 255, .55);
  padding: 52px 24px;
  text-align: center;
  font-family: var(--sans);
  font-size: .85rem;
}
.site-footer a { color: rgba(255, 255, 255, .75); transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-brand {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 14px 0;
  list-style: none;
  flex-wrap: wrap;
}
.footer-tagline {
  margin-top: 14px;
  opacity: .45;
  font-size: .78rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  opacity: .45;
  font-size: .78rem;
}
.footer-x {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  opacity: .25;
  transition: opacity .2s;
}
.footer-x:hover {
  opacity: .7;
  color: var(--cream);
}

/* ── 17. Responsive ─────────────────────── */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .review-hero { grid-template-columns: 1fr; }
  .cover-panel { height: 200px; font-size: 5rem; }
  .meta-panel { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; gap: 20px; }
  .ideas-grid { grid-template-columns: 1fr; }
  .who-grid   { grid-template-columns: 1fr; }
  .meta-grid  { grid-template-columns: 1fr 1fr; }
  .key-ideas  { padding: 28px 20px; }
  .verdict    { padding: 28px 20px; }
  .palette-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 18. See-All & Pagination ───────────── */
.section-see-all {
  text-align: center;
  padding: 0 0 72px;
}
.see-all-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  color: var(--moss);
  border: 2px solid var(--moss);
  padding: 11px 28px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.see-all-btn:hover {
  background: var(--moss);
  color: #fff;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 72px;
  border-top: 1px solid var(--line);
}
.pagination-link {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  color: var(--moss);
}
.pagination-link.disabled {
  color: var(--muted);
  cursor: default;
}
.pagination-info {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--muted);
}

/* ── 19. Review Prev/Next Nav ───────────── */
.review-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  max-width: 820px;
  margin: 64px auto 80px;
  padding: 0 40px;
  border-top: 1px solid rgba(34,28,18,0.1);
  padding-top: 40px;
}
.review-nav-prev,
.review-nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--bark);
  max-width: 45%;
  transition: opacity 0.2s;
}
.review-nav-prev { align-items: flex-start; }
.review-nav-next { align-items: flex-end; text-align: right; }
.review-nav-prev:hover,
.review-nav-next:hover { opacity: 0.6; }
.nav-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}
.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .review-nav { padding: 32px 24px 0; flex-direction: column; }
  .review-nav-next { align-items: flex-start; text-align: left; }
}

/* Search bar — reviews page */
.search-bar {
  margin: 0 0 32px;
}
.search-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--bark);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s;
}
.search-input:focus {
  border-color: var(--moss);
}
.search-input::placeholder {
  color: var(--muted);
}
.search-no-results {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--muted);
  padding: 48px 0 72px;
  text-align: center;
}

/* ── 20. Articles ───────────────────────── */

/* Articles index page */
.articles-page {
  padding: 80px 0 120px;
}
.articles-header {
  margin-bottom: 56px;
}
.articles-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 10px;
}
.articles-subheading {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--muted);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 32px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--bark);
  transition: box-shadow .2s, border-color .2s;
}
.article-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--moss);
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-card-category {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(61,82,48,.08);
  padding: 3px 8px;
  border-radius: 4px;
}
.article-card-date {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--muted);
}
.article-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bark);
}
.article-card-excerpt {
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
}
.article-card-cta {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--moss);
  margin-top: 4px;
}

/* Article page */
.article-page {
  padding-bottom: 120px;
}
.article-header {
  background: #fff;
  border-bottom: 1.5px solid var(--line);
  padding: 56px 0 48px;
  margin-bottom: 64px;
}
.article-back {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--moss);
  margin-bottom: 20px;
  transition: opacity .2s;
}
.article-back:hover { opacity: .65; }
.article-category-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(61,82,48,.08);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bark);
  margin-bottom: 12px;
  max-width: 760px;
}
.article-subtitle {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.article-meta {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--muted);
}
.article-read-time {
  margin-left: 2px;
}

/* Article prose overrides */
.article-prose h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bark);
  margin: 48px 0 14px;
}
.article-prose h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bark);
  margin: 32px 0 10px;
}
.article-prose p {
  margin-bottom: 1.4em;
  line-height: 1.85;
}
.article-prose ul,
.article-prose ol {
  margin: 0 0 1.4em 1.5em;
  line-height: 1.85;
}
.article-prose li {
  margin-bottom: .4em;
}
.article-prose a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-prose a:hover { opacity: .75; }

/* Article book-list component */
.book-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0 48px;
}
.book-entry {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}
.book-entry-num {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--moss);
  opacity: .3;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  padding-top: 3px;
}
.book-entry-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--bark);
}
.book-entry-body .book-entry-author {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 10px;
}
.book-entry-body p {
  font-size: .95rem;
  margin: 0;
  line-height: 1.7;
}
.book-entry-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  color: var(--moss);
}

@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article-header { padding: 40px 0 36px; }
  .book-entry { flex-direction: column; gap: 12px; }
}

/* FAQ */
.faq { margin: 48px 0; }
.faq-item { border-top: 1px solid rgba(34,28,18,0.1); padding: 20px 0; }
.faq-item h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 10px; }
.faq-item p { font-size: 15px; line-height: 1.7; color: rgba(34,28,18,0.75); margin: 0; }

/* Affiliate disclosure */
.affiliate-disclosure {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--cream);
  opacity: 0.2;
  text-align: center;
  margin-bottom: 12px;
}

/* Book cover images */
.book-cover-img {
  width: 180px;
  border-radius: 3px 8px 8px 3px;
  box-shadow: -4px 0 0 rgba(0,0,0,0.3),
              12px 20px 50px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.book-cover-img:hover { transform: rotate(0deg) scale(1.03); }

/* Text-based book cover fallback */
.cover-text-fallback {
  width: 180px;
  aspect-ratio: 2/3;
  border-radius: 3px 8px 8px 3px;
  box-shadow: -4px 0 0 rgba(0,0,0,0.3), 12px 20px 50px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #f0ece3;
  border: 1px solid rgba(34,28,18,0.12);
}
.cover-text-fallback:hover { transform: rotate(0deg) scale(1.03); }
.cover-text-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: #3d5230;
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.cover-text-author {
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  color: #b5966e;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

/* Hamburger menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(246,241,233,0.98);
    backdrop-filter: blur(12px);
    padding: 24px 32px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(34,28,18,0.08);
    z-index: 999;
  }
  .nav-links.open li a {
    font-size: 14px;
    opacity: 1;
    letter-spacing: 0.15em;
  }
}
