.about-page {
  color: var(--text, #f4f1ea);
}

/*
 * Keep About-page layout rules scoped to .about-page so this stylesheet
 * cannot override the shared .section and button rules on other pages.
 */
.about-page .section {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.about-page .section-label {
  margin-bottom: 1.5rem;
  color: var(--accent, var(--gold, #d9b957));
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-page .about-hero h1,
.about-page .about-intro h2,
.about-page .about-definition h2,
.about-page .about-approach h2,
.about-page .about-specialism h2,
.about-page .about-proof h2,
.about-page .about-cta h2 {
  max-width: 900px;
  margin: 0 0 2rem;
  font-size: clamp(2.8rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.about-page .about-intro h2,
.about-page .about-definition h2,
.about-page .about-approach h2,
.about-page .about-specialism h2,
.about-page .about-proof h2,
.about-page .about-cta h2 {
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.about-page .lead,
.about-page .about-section-copy,
.about-page .cta-panel > p {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: var(--muted, #aaa69d);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  line-height: 1.75;
}

.about-page .about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 3rem;
}

.about-page .about-card,
.about-page .cta-panel {
  min-width: 0;
  border: 1px solid rgba(217, 185, 87, 0.25);
  border-radius: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045),
    rgba(217, 185, 87, 0.045)
  );
}

.about-page .about-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.about-page .cta-panel {
  width: min(980px, 100%);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.about-page .about-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.about-page .about-card p {
  margin: 0;
  color: var(--muted, #aaa69d);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-page .about-definition,
.about-page .about-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding-inline: 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.about-page .button-primary {
  border: 1px solid var(--accent, var(--gold, #d9b957));
  background: var(--accent, var(--gold, #d9b957));
  color: #080806;
}

.about-page .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text, #f4f1ea);
}

@media (max-width: 980px) {
  .about-page .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .about-page .section {
    width: min(100% - 1.75rem, 1180px);
    padding-block: clamp(3.5rem, 12vw, 5rem);
  }

  .about-page .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-page .about-hero h1,
  .about-page .about-intro h2,
  .about-page .about-definition h2,
  .about-page .about-approach h2,
  .about-page .about-specialism h2,
  .about-page .about-proof h2,
  .about-page .about-cta h2 {
    text-wrap: initial;
  }

  .about-page .cta-actions {
    flex-direction: column;
  }

  .about-page .button {
    width: 100%;
  }
}