.pageSection {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: var(--rail);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 760px;
}

/* Matches the homepage .subtitle treatment: plain rose text, no chip. */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.title {
  margin: 16px 0 0;
  font-size: clamp(34px, 7.3vw, 60px);
  line-height: 1.04;
}

.description {
  margin: 18px 0 0;
  color: var(--text-body);
  line-height: 1.72;
  font-size: 17px;
}

.grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 16px;
}

.ctaBand {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-default);
  background: rgba(8, 8, 11, 0.85);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.ctaEyebrow {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-body);
}

.ctaBand h2 {
  margin: 10px 0 0;
  font-size: clamp(23px, 3.8vw, 32px);
  line-height: 1.16;
}

.ctaBand p {
  margin: 12px 0 0;
  color: var(--text-body);
  max-width: 620px;
  line-height: 1.7;
}

/* Orange text only — no fill, border or radius, matching the CTA treatment
   used across the rest of the site. */
.primaryButton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: 0;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: var(--speed-base);
}

.primaryButton:hover {
  color: var(--amber);
  gap: 11px;
}

@media (max-width: 991px) {
  .pageSection {
    padding: var(--section-y) 0;
  }

  .ctaBand {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: clamp(31px, 10vw, 46px);
  }

  .description {
    font-size: 16px;
  }

  .ctaBand {
    padding: 22px;
  }
}
