/* ─── CARD ────────────────────────────────────────────────────── */
.card {
  background: var(--bg2); border: 1px solid var(--border2);
  padding: 40px; transition: all var(--transition);
}
.card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.card--center { text-align: center; }
.card--center h4 { margin-bottom: 10px; }
.card--center p  { font-size: 0.88rem; }

.card__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.card__icon svg { color: var(--gold); }
.card--center .card__icon { margin-left: auto; margin-right: auto; margin-bottom: 20px; }

/* ─── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-bar__item {
  text-align: center; padding: 0 40px;
  border-right: 1px solid var(--border2);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stats-bar__label {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-sub); margin-top: 8px;
}

/* ─── MINI STATS ──────────────────────────────────────────────── */
.mini-stats { display: flex; gap: 40px; margin-top: 40px; align-items: center; }
.mini-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.mini-stat__label {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-sub); margin-top: 6px;
}
.mini-stats__sep { width: 1px; align-self: stretch; background: var(--border2); }

/* ─── TESTIMONIAL ─────────────────────────────────────────────── */
.testimonial {
  background: var(--bg2); border: 1px solid var(--border2);
  padding: 40px; position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); opacity: 0.3;
  position: absolute; top: 10px; left: 30px; line-height: 1;
}
.testimonial__text   { font-size: 1rem; color: var(--text-sub); line-height: 1.8; margin-top: 20px; font-style: italic; }
.testimonial__author { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold);
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testimonial__role { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.05em; }
.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 4px; }

/* ─── TEAM PREVIEW GRID ───────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.team-card {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border2); padding: 40px;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--border); }
.team-card__photo {
  width: 100px; height: 120px; flex-shrink: 0;
  background: var(--bg4);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); font-style: italic;
}
.team-card .eyebrow { font-size: 0.65rem; }
.team-card__name  { margin-top: 4px; font-size: 1.2rem; }
.team-card__oab   { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-dim); margin-top: 4px; }
.team-card__bio   { font-size: 0.88rem; margin-top: 10px; line-height: 1.7; }

@media (max-width: 600px) {
  .team-card { flex-direction: column; padding: 28px; gap: 20px; }
}

/* ─── TEAM FULL PROFILE ───────────────────────────────────────── */
.team-full {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 60px; align-items: start;
  padding: 50px; background: var(--bg2); border: 1px solid var(--border2);
}
.team-full + .team-full { margin-top: 24px; }
.team-full .eyebrow  { font-size: 0.65rem; }
.team-full .divider  { margin: 16px 0; }
.team-full__name     { font-size: 2rem; }
.team-full__photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.team-full__initial {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); font-style: italic; opacity: 0.5;
}
.team-full__meta  { display: flex; flex-direction: column; gap: 6px; }
.team-full__oab   { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.team-full__tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.team-full__stats { margin-top: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team-full__stat  { padding: 16px; background: var(--bg3); border: 1px solid var(--border2); }
.team-full__stat-num   { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); display: flex; align-items: flex-start; }
.team-full__stat-label { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.08em; margin-top: 4px; }

/* ─── HISTORY IMAGE PLACEHOLDER ───────────────────────────────── */
.history-img {
  background: var(--bg2); border: 1px solid var(--border);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.history-img__pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(200,169,110,0.02) 20px,rgba(200,169,110,0.02) 21px);
}
.history-img__label {
  text-align: center; padding: 40px; position: relative;
  font-family: monospace; font-size: 0.65rem; color: var(--text-dim);
  letter-spacing: 0.08em; line-height: 2;
}
.history-img__fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--bg2), transparent); height: 60px;
}
