/**
 * Brochure CTA section — Homepage
 */

.section-brochure-cta {
  position: relative;
  background-color: #0D1B2A;
  padding-block: var(--space-section);
  overflow: hidden;
}

/* Subtle warm radial glow from the top centre — adds depth without noise */
.section-brochure-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(184, 150, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Thin gold rule at the top edge */
.section-brochure-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.45;
}

.brochure-cta__inner {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

/* Eyebrow label */
.brochure-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

/* Heading */
.brochure-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-ivory);
  margin-bottom: var(--space-6);
}

.brochure-cta__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

/* Body copy */
.brochure-cta__text {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: var(--leading-loose);
  color: rgba(247, 244, 239, 0.70);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* Button centred */
.brochure-cta__btn {
  display: inline-flex;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .brochure-cta__title {
    font-size: var(--text-3xl);
  }

  .brochure-cta__text {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }

  .brochure-cta__btn {
    width: 100%;
    justify-content: center;
  }
}
