/* About Page Styles */
.pg-hero {
  padding: 8rem 0 5rem;
  background: var(--n900);
  background-image: radial-gradient(circle, rgba(29,158,117,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  text-align: center;
}
.pg-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.pg-hero__h {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.035em; word-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.pg-hero__sub {
  font-family: var(--fb);
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0 auto;
}
.title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--t300) 0%, var(--t400) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Vision & Mission */
.vimi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vimi-card {
  background: var(--wh);
  border: 1px solid var(--g200);
  border-radius: var(--r2xl);
  padding: 3rem;
  transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.vimi-card:hover {
  transform: translateY(-6px);
  border-color: var(--t200);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(29, 158, 117, 0.05);
}
.vimi-ico {
  width: 56px;
  height: 56px;
  background: var(--t400);
  border-radius: var(--rlg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--wh);
}
.vimi-h {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.vimi-p {
  font-size: 1.05rem;
  color: var(--g600);
}

/* Section Headers */
.sec-hd {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.sec-hd h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.sec-hd p {
  font-size: 1.1rem;
  color: var(--g600);
}

/* Pillars */
.bg-cream {
  background: var(--cream);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--wh);
  border: 1px solid var(--g200);
  border-radius: var(--r2xl);
  padding: 2rem 1.5rem;
  transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--t200);
}
.pc-ico {
  width: 48px;
  height: 48px;
  background: var(--t50);
  border-radius: var(--rlg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t600);
  margin-bottom: 1.25rem;
}
.pc-ttl {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--n900);
  margin-bottom: 0.75rem;
}
.pc-bod {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--g600);
  line-height: 1.6;
}

.team-hd {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.team-hd-left {
  max-width: 600px;
}
.team-hd-left h2 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-family: var(--fd);
  font-weight: 800;
  color: var(--n900);
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.team-hd-left .sub {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: var(--fb);
  font-weight: 400;
  color: var(--g600);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.team-hd-left p {
  font-size: 1.1rem;
  color: var(--g600);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: left;
}
.tc-img {
  aspect-ratio: 1;
  background: var(--g200);
  margin-bottom: 1rem;
  overflow: hidden;
}
.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc-nm {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--n900);
  margin-bottom: 0.2rem;
}
.tc-role {
  font-family: var(--fb);
  font-size: 0.95rem;
  color: var(--g600);
  font-weight: 500;
}

@media (max-width: 960px) {
  .vimi-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
