/* ═══ PAGE INTRO ═══ */
.page-intro {
  padding: 2.5rem 0 1rem;
  animation: fade-in 0.5s ease-out;
}

.page-label {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.page-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--text-bright);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 560px;
}

/* ═══ ABOUT SECTIONS ═══ */
.about-section {
  padding: 0.5rem 0;
  animation: fade-in 0.6s ease-out;
}

.about-body {
  max-width: 660px;
  margin: 0 auto;
}

.about-body p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-pullquote {
  border-left: 2px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.55;
  background: rgba(197, 151, 62, 0.05);
}

/* ═══ TEAM CARD ═══ */
.team-card {
  max-width: 660px;
  margin: 1.5rem auto 0;
  border: 1px solid var(--gold);
  transition: transform 0.15s;
}

.team-card:hover {
  transform: translateY(-2px);
}

.team-card-inner {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--crimson);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

.team-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.team-desc {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 700px) {
  .about-body {
    max-width: 100%;
  }

  .team-card-inner {
    padding: 12px 14px;
  }
}

@media (max-width: 560px) {
  .about-pullquote {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
  }
}
