#brochure-body { background: var(--white); }

.brochure-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.brochure-text h2 { margin-bottom: 1rem; }
.brochure-text p  { margin-bottom: 1rem; font-size: 0.95rem; }
.brochure-text a  { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

.brochure-download { margin: 2rem 0; }
.brochure-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: none;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}
.social-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  text-decoration: none;
}

.brochure-cover {
  position: relative;
  overflow: hidden;
}
.brochure-cover img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.brochure-cover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.brochure-cover-label p {
  color: rgba(255,255,255,0.8);
  font-family: var(--serif);
  font-size: 1rem;
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .brochure-layout { grid-template-columns: 1fr; gap: 3rem; }
  .brochure-cover img { aspect-ratio: 16/9; }
}
