/* ============ FOUNDER ============ */
.founder {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.founder-blob-1 {
  width: 280px; height: 280px;
  background: var(--ice);
  top: 8%; left: -120px;
  opacity: 0.7;
  animation: morph 16s ease-in-out infinite;
}
.founder-blob-2 {
  width: 200px; height: 200px;
  background: #ffe2d6;
  bottom: 6%; right: -80px;
  opacity: 0.65;
  animation: morph 14s ease-in-out infinite reverse;
}

.founder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: flex-start;
}

/* --- founder card (left) --- */
.founder-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 18px 44px rgba(11,31,90,0.08);
  position: sticky;
  top: 100px;
  transform: rotate(-1.5deg);
}
.founder-card::before {
  content: "";
  position: absolute;
  top: -14px; left: 36px;
  width: 64px; height: 22px;
  background: var(--sun);
  border-radius: 4px;
  opacity: 0.85;
  transform: rotate(-3deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.founder-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-blob);
  background: var(--ice);
  animation: morph 14s ease-in-out infinite;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-mono {
  font-family: var(--blobby);
  font-size: 96px;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.founder-photo-label {
  position: absolute;
  bottom: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  z-index: 1;
}

.founder-id { margin-top: 22px; text-align: center; }
.founder-name {
  font-family: var(--blobby);
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.1;
}
.founder-role {
  margin-top: 6px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--royal);
  font-size: 12px;
}

.founder-contact {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.founder-contact a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  background: var(--paper);
  border-radius: var(--r-md);
  transition: background 0.2s, transform 0.2s;
}
.founder-contact a:hover { background: var(--ice); transform: translateX(2px); }
.founder-contact span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-soft);
}
.founder-contact strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

/* --- founder body (right) --- */
.founder-body h2 {
  margin-top: 16px;
  max-width: 16ch;
}
.founder-body h2 .ital { color: var(--royal); font-family: inherit; font-style: normal; font-weight: inherit; }
.founder-lead {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.6;
  max-width: 60ch;
  color: var(--ink-soft);
  font-weight: 400;
}
.founder-lead strong { color: var(--ink); font-weight: 700; }

.founder-blocks {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.founder-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11,31,90,0.08);
}
.founder-block:nth-child(1) { border-left: 6px solid var(--royal); }
.founder-block:nth-child(2) { border-left: 6px solid var(--coral); }
.founder-block:nth-child(3) { border-left: 6px solid var(--sun); }

.founder-block-tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--royal);
  margin-bottom: 12px;
}
.founder-block:nth-child(2) .founder-block-tag { background: #ffe2d6; color: #c34b1f; }
.founder-block:nth-child(3) .founder-block-tag { background: #fff1c2; color: #8a6500; }

.founder-block h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.founder-block p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.founder-block strong {
  color: var(--ink);
  font-weight: 600;
}

.founder-sign {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--royal);
}

@media (max-width: 960px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-card { position: static; max-width: 360px; margin: 0 auto; }
}
