/* ============================================================
   Dana Velle — Design System
   Light editorial, cover-forward, mobile-first
   ============================================================ */

:root {
  /* Palette */
  --ink: #1a1414;
  --ink-soft: #3a2f2f;
  --ink-muted: #6b5e5e;
  --ink-faint: #a29999;

  --cream: #f7f2ec;
  --cream-deep: #efe6dc;
  --paper: #ffffff;

  --plum: #4a1f2e;
  --plum-deep: #321421;
  --plum-light: #6a2d41;

  --gold: #a88a4a;
  --gold-bright: #c9a85f;
  --gold-soft: rgba(168, 138, 74, 0.12);

  --rose: #c4766a;
  --sage: #6b7a5a;

  /* Type */
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max: 1200px;
  --max-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ------------------------ Reset ------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ------------------------ Base ------------------------ */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0.02em; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

a { color: var(--plum); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--plum-light); }

::selection { background: var(--plum); color: var(--cream); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.italic-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ------------------------ Layout ------------------------ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.bg-paper { background: var(--paper); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-plum { background: var(--plum); color: var(--cream); }
.bg-plum h1, .bg-plum h2, .bg-plum h3 { color: var(--cream); }
.bg-plum p { color: rgba(247, 242, 236, 0.85); }
.bg-plum .eyebrow { color: var(--gold-bright); }

/* ------------------------ Skip link ------------------------ */
.skip-link {
  position: absolute; top: -50px; left: 1rem;
  background: var(--plum); color: var(--cream);
  padding: 0.5rem 1rem; border-radius: 4px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; color: var(--cream); }

/* ------------------------ Header ------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(26, 20, 20, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand:hover { color: var(--plum); }
.brand span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-top: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--plum);
}
.nav-cta {
  background: var(--plum);
  color: var(--cream) !important;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  transition: background 200ms var(--ease);
}
.nav-cta:hover { background: var(--plum-deep); color: var(--cream) !important; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav-toggle span {
  display: block; position: absolute; left: 4px; right: 4px; height: 2px;
  background: var(--ink); transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 2.5rem var(--gutter);
    transform: translateY(-110%);
    transition: transform 300ms var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(26,20,20,0.08); }
  .nav-links a { display: block; padding: 1.25rem 0; font-size: 1.05rem; letter-spacing: 0.08em; }
  .nav-cta { background: transparent; color: var(--plum) !important; padding: 1.25rem 0; border-radius: 0; }
  .nav-cta:hover { background: transparent; color: var(--plum-deep) !important; }
}

/* ------------------------ Buttons ------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 220ms var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--plum);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--plum-deep);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  padding: 0.75rem 0;
}
.btn-ghost::after {
  content: "→";
  margin-left: 0.4rem;
  transition: transform 200ms var(--ease);
}
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-small { padding: 0.7rem 1.25rem; font-size: 0.78rem; }

/* ------------------------ Hero ------------------------ */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 1.25rem;
}
.hero-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 32ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-cover {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.hero-cover img {
  width: 100%;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 20px 40px -15px rgba(50, 20, 33, 0.35);
  transition: transform 500ms var(--ease);
}
.hero-cover:hover img { transform: translateY(-4px); }
.hero-cover-tag {
  position: absolute;
  top: 1rem; left: -0.5rem;
  background: var(--plum);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-cover { max-width: 280px; margin-top: 2rem; }
  .hero-lede { max-width: none; }
}

/* ------------------------ Section heading ------------------------ */
.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head .eyebrow { margin-bottom: 0.75rem; display: inline-block; }
.section-head p { max-width: 56ch; margin: 1rem auto 0; color: var(--ink-muted); }

/* ------------------------ Book cards ------------------------ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}
.books-grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.book-card {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.book-card a.cover-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 2 / 3;
  margin-bottom: 1rem;
}
.book-card a.cover-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.book-card a.cover-link:hover img { transform: scale(1.04); }
.book-card .badge {
  position: absolute;
  top: 0.75rem; left: 0;
  background: var(--plum);
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  font-weight: 600;
  z-index: 2;
}
.book-card .badge.soon { background: var(--gold); }
.book-card .badge.new { background: var(--rose); }

.book-card .series-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.book-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.book-card h3 a { color: var(--ink); }
.book-card h3 a:hover { color: var(--plum); }
.book-card .tagline {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

/* ------------------------ Series intro block ------------------------ */
.series-block {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(26,20,20,0.08);
}
.series-block + .series-block { border-top: 1px solid rgba(26,20,20,0.08); }
.series-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.series-header .eyebrow { margin-bottom: 0.5rem; display: block; }
.series-header h2 { margin-bottom: 0.75rem; }

/* ------------------------ Book detail page ------------------------ */
.book-hero {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--paper);
  border-bottom: 1px solid rgba(26,20,20,0.06);
}
.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.book-hero-cover img {
  width: 100%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 25px 50px -20px rgba(50,20,33,0.4);
}
.book-hero-meta .series-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.book-hero-meta h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.book-hero-meta .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.book-hero-meta .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pill {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  border: 1px solid rgba(74, 31, 46, 0.3);
  background: rgba(74, 31, 46, 0.04);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.book-hero-meta .buy-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

@media (max-width: 720px) {
  .book-hero-grid { grid-template-columns: 1fr; }
  .book-hero-cover { max-width: 300px; margin: 0 auto; }
}

.book-body {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.book-body .prose {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.book-body .prose p { margin-bottom: 1.3em; }
.book-body .prose p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  float: left;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  color: var(--plum);
}

/* ------------------------ Next/prev nav ------------------------ */
.book-nav {
  border-top: 1px solid rgba(26,20,20,0.1);
  padding: 2.5rem 0;
}
.book-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.book-nav-link {
  display: block;
  padding: 1.25rem;
  border: 1px solid rgba(26,20,20,0.1);
  color: var(--ink);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.book-nav-link:hover { border-color: var(--plum); background: var(--paper); color: var(--ink); }
.book-nav-link .eyebrow { display: block; margin-bottom: 0.4rem; }
.book-nav-link .title { font-family: var(--font-serif); font-size: 1.1rem; }
.book-nav-link.next { text-align: right; }

@media (max-width: 560px) {
  .book-nav-grid { grid-template-columns: 1fr; }
  .book-nav-link.next { text-align: left; }
}

/* ------------------------ Newsletter ------------------------ */
.newsletter {
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.newsletter.dark { background: var(--plum); color: var(--cream); }
.newsletter.dark h2 { color: var(--cream); }
.newsletter.dark p { color: rgba(247, 242, 236, 0.85); }
.newsletter.dark .eyebrow { color: var(--gold-bright); }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(247,242,236,0.25);
  background: rgba(247,242,236,0.08);
  color: var(--cream);
  border-radius: 2px;
  font-size: 0.95rem;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(247,242,236,0.55); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold-bright); background: rgba(247,242,236,0.12); }
.newsletter-form button {
  padding: 0.95rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 200ms var(--ease);
}
.newsletter-form button:hover { background: var(--gold-bright); }
.newsletter .fine-print { font-size: 0.78rem; color: rgba(247,242,236,0.6); margin-top: 1rem; }

/* Light variant */
.newsletter.light .newsletter-form input[type="email"] {
  background: var(--paper);
  border-color: rgba(26,20,20,0.15);
  color: var(--ink);
}
.newsletter.light .newsletter-form input[type="email"]::placeholder { color: var(--ink-faint); }
.newsletter.light .newsletter-form button { background: var(--plum); color: var(--cream); }
.newsletter.light .newsletter-form button:hover { background: var(--plum-deep); }

/* ------------------------ About page ------------------------ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.about-hero img {
  width: 100%;
  max-width: 420px;
  border-radius: 2px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.25);
}
@media (max-width: 820px) {
  .about-hero { grid-template-columns: 1fr; }
}

/* ------------------------ Footer ------------------------ */
.site-footer {
  background: var(--ink);
  color: rgba(247, 242, 236, 0.7);
  padding: 4rem 0 2rem;
}
.site-footer a { color: rgba(247, 242, 236, 0.85); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-brand span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-family: var(--font-sans);
  margin-top: 3px;
  font-weight: 600;
}
.footer-tag { font-size: 0.9rem; max-width: 32ch; color: rgba(247,242,236,0.6); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; }

.footer-legal {
  border-top: 1px solid rgba(247,242,236,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.8rem;
  color: rgba(247,242,236,0.5);
}
.footer-legal p { color: rgba(247,242,236,0.5); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ------------------------ Utilities ------------------------ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.divider {
  height: 1px;
  background: rgba(26, 20, 20, 0.1);
  margin: 0 auto;
  max-width: 120px;
}

/* Start-here callout */
.start-here-callout {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(74, 31, 46, 0.05);
  border-radius: 4px;
  font-size: 0.95rem;
}
.start-here-callout a {
  color: var(--plum);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.start-here-callout a:hover { color: var(--ink); }

/* News list */
.news-list { display: flex; flex-direction: column; gap: 1.5rem; }
.news-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 20, 20, 0.08);
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 0.3rem;
}
.news-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.news-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.news-item a { color: var(--plum); text-decoration: underline; text-underline-offset: 2px; }
.news-item a:hover { color: var(--ink); }

/* Follow buttons */
.follow-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.follow-btn {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 200ms ease;
}
.follow-goodreads {
  background: #372213;
  color: #f7f2ec;
}
.follow-goodreads:hover { background: #4a2e1a; }
.follow-bookbub {
  background: #c4302b;
  color: #fff;
}
.follow-bookbub:hover { background: #a8261f; }
.follow-ig {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(26, 20, 20, 0.15);
}
.follow-ig:hover { color: var(--ink); border-color: rgba(26, 20, 20, 0.3); }
.follow-tt {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(26, 20, 20, 0.15);
}
.follow-tt:hover { color: var(--ink); border-color: rgba(26, 20, 20, 0.3); }

/* Review ask */
.review-ask {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26, 20, 20, 0.08);
  border-bottom: 1px solid rgba(26, 20, 20, 0.08);
}
.review-ask-text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
}

/* Reading order list */
.ro-list { list-style: none; padding: 0; margin: 0; }
.ro-list > li { counter-increment: none; }
ol.ro-list { counter-reset: ro; }
ol.ro-list > li::before { content: none; }
.ro-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(26, 20, 20, 0.08);
}
.ro-row:last-child { border-bottom: none; }
.ro-cover { flex-shrink: 0; }
.ro-cover img {
  width: 60px;
  height: 90px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(26, 20, 20, 0.12);
}
.ro-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.15rem;
}
.ro-info a { color: var(--ink); text-decoration: none; }
.ro-info a:hover { color: var(--plum); }
.ro-tag {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
