/* About page styles */
.grid-2 { gap: 4rem; }
.about-image { border-radius: 2px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

.content-block p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; }
.content-block p:last-child { margin-bottom: 0; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.team-card__photo { width: 100%; aspect-ratio: 3/4; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.team-card__photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; color: var(--text-muted); }
.team-card__photo-placeholder svg { opacity: 0.35; }
.team-card__photo-placeholder span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.team-card__body { padding: 1.75rem; }
.team-card__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--navy); margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.team-card__bio { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }
.team-card__bio p { margin-bottom: 0.5rem; }
.team-card__bio p:last-child { margin-bottom: 0; }
.team-placeholder-note { margin-top: 2.5rem; padding: 1.25rem 1.5rem; background: var(--cream); border-left: 3px solid var(--accent); border-radius: 2px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  justify-content: start;
}
.about-hero-stats .stat__num { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.about-hero-stats .stat__num em { color: var(--accent); font-style: normal; }
.about-hero-stats .stat__label { font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); margin-top: 3rem; }
.value-card { padding: 2.75rem 2.5rem; background: var(--bg); display: flex; flex-direction: column; gap: 0; }
.value-card__icon-wrap { margin-bottom: 1.25rem; flex-shrink: 0; }
.value-card__icon-wrap svg { width: 40px; height: 40px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; display: block; }
.value-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--navy); font-weight: 400; line-height: 1.2; }
.value-card p { font-size: 0.92rem; line-height: 1.75; color: var(--text-muted); margin: 0; }

.about-testimonial {
  background: var(--navy);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 160px;
  background-repeat: repeat;
  opacity: 0.07;
  pointer-events: none;
}
.about-testimonial > * { position: relative; z-index: 1; }
.about-testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 1.75rem;
  letter-spacing: -0.01em;
}
.about-testimonial blockquote em { color: var(--accent); font-style: italic; }
.about-testimonial__attr { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.about-testimonial__stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; }

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-stats { grid-template-columns: repeat(2, auto); gap: 1.5rem; }
  .about-testimonial { padding: 3.5rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
}
