body {
  font-family: 'Lora', serif;
  background: #fdfcf9;
  color: #111;
  margin: 0;
  padding: 0;
}
a {
  color: #b46840;
  text-decoration: underline;
  text-decoration-color: rgba(180, 104, 64, 0.5);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover,
a:focus {
  color: #213c4d;
  text-decoration-color: rgba(33, 60, 77, 0.65);
}
a:active {
  color: #111;
  text-decoration-color: rgba(17, 17, 17, 0.6);
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
header.catalog-hero {
  background: linear-gradient(135deg, rgba(33, 60, 77, 0.08), rgba(180, 104, 64, 0.08));
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
header.catalog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
header.catalog-hero p.lede {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(20, 20, 20, 0.78);
}
.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.catalog-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.07);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.catalog-paragraph {
  line-height: 1.75;
  font-size: 1.02rem;
  text-align: justify;
}
.catalog-paragraph + .catalog-paragraph {
  margin-top: 1.5rem;
}
.catalog-mention {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-right: 1.2rem;
  margin-bottom: 0.8rem;
  vertical-align: top;
  max-width: 22rem;
}
.catalog-mention-text {
  display: inline;
}
.catalog-cover img {
  width: 70px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
@media (max-width: 720px) {
  .catalog-mention {
    display: block;
    max-width: none;
  }
  .catalog-cover img {
    width: 90px;
    margin-bottom: 0.5rem;
  }
}
.catalog-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.catalog-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(15, 32, 45, 0.08);
  border: 1px solid rgba(15, 32, 45, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.catalog-card__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.catalog-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
}
.catalog-card__body p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.8);
}
