.about-page #about.about-page-intro {
  padding-top: 170px;
  padding-bottom: 30px;
  text-align: center;
  background: var(--section);
}

.about-eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-page #about.about-page-intro .about-container {
  width: min(840px, calc(100% - 48px));
  margin: 0 auto;
  align-self: auto;
  flex: none;
}

.about-page #about.about-page-intro h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 28px;
  font-weight: 300;
}

.about-page #about.about-page-intro .about-container p {
  color: var(--muted);
  font-size: 0.96875rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 68ch;
  margin: 0 auto;
}

.about-page #about.about-page-intro .about-container p + p {
  margin-top: 18px;
}

/* Highlights band */
.about-highlights {
  padding: 0 8%;
  background: linear-gradient(to bottom, var(--section) 0 50%, var(--bg) 50% 100%);
}

.about-highlights-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 64px;
}

.about-highlights .card-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-highlights .about-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(28,26,22,0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  justify-content: center;
  text-align: center;
}

.about-highlights .about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(28,26,22,0.13);
  border-color: var(--accent);
}

.about-highlights .about-card-text h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
  margin-bottom: 8px;
  font-weight: 400;
}

.about-highlights .about-card-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Clients */
.about-clients {
  padding: 64px 8% 80px;
  background: var(--bg);
}

.about-clients-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.about-clients .about-eyebrow {
  margin-bottom: 12px;
}

.about-clients h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin-bottom: 36px;
  font-weight: 300;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.client-list span {
  padding: 9px 18px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font-size: 0.84375rem;
  font-weight: 400;
  transition: border-color 200ms, color 200ms;
}

.client-list span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* CTA panel */
.about-cta-panel {
  padding: 80px 8%;
  text-align: center;
  background: var(--section);
}

.about-cta-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 300;
  margin-bottom: 16px;
}

.about-cta-panel p {
  max-width: 52ch;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 300;
}

.about-cta-panel .btn {
  background: var(--text);
  border: 1px solid var(--text);
  color: var(--bg);
  padding: 13px 28px;
  text-decoration: none;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  transition: background 200ms, border-color 200ms, color 200ms, transform 200ms, box-shadow 200ms;
}

.about-cta-panel .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,26,22,0.12);
}

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

  .about-highlights .card-container .about-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-page #about.about-page-intro {
    padding-bottom: 60px;
  }

  .about-highlights,
  .about-clients,
  .about-cta-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-highlights .card-container {
    grid-template-columns: 1fr;
  }

  .about-highlights .card-container .about-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}
