.catalogue-hero {
  background: linear-gradient(145deg, var(--garden-deep), var(--garden-dark));
  color: var(--parchment);
  padding: 5.5rem clamp(1.5rem, 5vw, 5rem);
  text-align: center;
}

.catalogue-kicker {
  color: var(--gold-on-dark-soft);
  font-family: "Cormorant SC", serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  margin-bottom: 1.4rem;
}

.catalogue-hero h1 {
  font-family: "Cormorant", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.catalogue-hero p:last-child {
  color: rgba(245, 237, 216, 0.7);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 620px;
}

.catalogue-content {
  background: var(--parchment2);
  min-height: 50vh;
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 5rem;
}

.catalogue-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 2rem;
  max-width: 1080px;
}

#catalogueCount,
.catalogue-back {
  color: var(--gold-on-light);
  font-family: "Cormorant SC", serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.catalogue-back {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
}

.product-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1080px;
}

.placeholder-product {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(154, 116, 36, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 1.6rem;
}

.placeholder-image {
  align-items: center;
  background: linear-gradient(145deg, rgba(154, 116, 36, 0.11), rgba(255, 255, 255, 0.45));
  color: var(--gold-on-light);
  display: flex;
  flex: 1;
  font-family: "Cormorant", serif;
  font-size: 1.3rem;
  font-style: italic;
  justify-content: center;
  margin-bottom: 1.4rem;
  min-height: 165px;
}

.placeholder-product h2 {
  color: var(--garden-deep);
  font-family: "Cormorant", serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.placeholder-product p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.product-status {
  color: var(--gold-on-light) !important;
  font-family: "Cormorant SC", serif;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em;
  margin-top: 1rem;
}

.catalogue-note {
  color: var(--muted);
  font-family: "Cormorant", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin: 3rem auto 0;
  max-width: 680px;
  text-align: center;
}

.site-footer {
  align-items: center;
  background: var(--garden-deep);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
}

@media (max-width: 700px) {
  .product-grid { grid-template-columns: 1fr; }
  .catalogue-toolbar { align-items: flex-start; flex-direction: column; gap: 1rem; }
}
