/* =========================================================
   ABOUT US — FOUNDERS
   ========================================================= */
.about { padding: 20px 0 90px; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto 36px;
}
.founder-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.founder-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
}
.founder-photo-1 { border-color: #FF6F61; }
.founder-photo-2 { border-color: #3EC6E0; }

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.founder-role {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.founders-quote {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  text-align: center;
  position: relative;
}
.quote-mark {
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.25;
  line-height: 1;
}
.founders-quote h3 { font-size: 1.1rem; }
.founders-quote p {
  font-size: 1.02rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.motto-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.motto-badge {
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
}
