@import url("./service-purchase.css");

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-overview {
  padding: 6rem 4rem;
  background: #fff;
}
.team-overview-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start;
}
.team-points { display: grid; gap: 1rem; }
.team-point {
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
}
.team-point h3 {
  font-family: var(--serif); font-size: 1rem; color: var(--navy);
  margin-bottom: 0.5rem; letter-spacing: 0.03em;
}
.team-point p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.85; }

.staff-section {
  padding: 6rem 4rem;
  background: var(--ivory);
}
.staff-section-inner { max-width: 1100px; margin: 0 auto; }
.staff-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 3rem;
}
.staff-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.staff-photo {
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, #f4efe8 0%, #ebe2d7 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.staff-body { padding: 1.8rem; }
.staff-role {
  font-size: 0.7rem; letter-spacing: 0.16em;
  color: var(--gold); margin-bottom: 0.6rem;
}
.staff-card h3 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--navy);
  margin-bottom: 0.7rem; letter-spacing: 0.03em;
}
.staff-copy {
  font-size: 0.88rem; line-height: 1.9; color: var(--text);
  margin-bottom: 1.2rem;
}
.staff-meta {
  display: grid; grid-template-columns: 96px 1fr; gap: 0.45rem 1rem;
  padding: 1rem 0; margin-bottom: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.staff-meta dt {
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-light);
}
.staff-meta dd {
  font-size: 0.8rem; color: var(--text-mid); line-height: 1.8;
}
.staff-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.9; }

.support-area {
  padding: 6rem 4rem;
  background: #fff;
}
.support-area-inner { max-width: 1100px; margin: 0 auto; }
.support-rows {
  display: grid; gap: 1rem;
  margin-top: 3rem;
}
.support-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 2rem;
  align-items: start;
  padding: 1.6rem 1.8rem;
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
}
.support-row h3 {
  font-family: var(--serif); font-size: 1rem; color: var(--navy);
  letter-spacing: 0.03em;
}
.support-row p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.9; }

@media (max-width: 900px) {
  .team-overview,
  .staff-section,
  .support-area { padding: 4rem 1.5rem; }
  .team-overview-inner,
  .staff-grid { grid-template-columns: 1fr; gap: 2rem; }
  .support-row { grid-template-columns: 1fr; gap: 0.8rem; }
}
