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

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
}

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

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

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

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.about-card,
.cta-panel {
  border: 1px solid rgba(217, 185, 87, 0.25);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045),
    rgba(217, 185, 87, 0.045)
  );
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

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

.about-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

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

.cta-panel {
  max-width: 980px;
}

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

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

.button-primary {
  background: var(--accent, #d9b957);
  color: #080806;
}

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .button {
    width: 100%;
  }
}