/* Founder profile card — placed between hero and main content */
.founder-profile {
  max-width: 720px;
  margin: clamp(32px, 5vh, 48px) auto 0;
  padding: clamp(28px, 4vw, 36px) clamp(28px, 4vw, 40px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  text-align: left;
}
.founder-profile-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.founder-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-profile-info { display: flex; flex-direction: column; gap: 16px; }
.founder-profile-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.founder-profile-name .jp {
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--fg);
}
.founder-profile-name .en {
  font-family: var(--font-en);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.founder-profile-roles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.founder-profile-roles li {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding-left: 16px;
  position: relative;
}
.founder-profile-roles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
@media (max-width: 600px) {
  .founder-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(28px, 6vw, 32px);
  }
  .founder-profile-avatar { max-width: 140px; margin: 0 auto; }
  .founder-profile-name { justify-content: center; }
  .founder-profile-roles { text-align: left; }
}

/* Body content */
.page-section {
  padding: clamp(64px, 10vh, 96px) var(--pad-x) clamp(80px, 12vh, 128px);
}
.page-content {
  max-width: 720px; margin: 0 auto;
}
.page-content > p {
  font-family: var(--font-jp);
  color: var(--muted);
  font-size: 16px;
  line-height: 2.1;
  margin-bottom: 14px;
  font-weight: 500;
}

.page-content section {
  margin-top: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.page-content section:first-of-type { margin-top: 8px; }
.page-content section:last-of-type {
  border-bottom: none; padding-bottom: 0;
}
.page-content section .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-content section .label::before {
  content: ""; width: 24px; height: 1px;
  background: var(--accent);
}
.page-content section h2 {
  font-family: var(--font-heading);
  font-feature-settings: normal;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.page-content section p {
  font-family: var(--font-jp);
  color: var(--muted);
  font-size: 16px;
  line-height: 2.1;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Placeholder note */
.placeholder-note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
  font-family: var(--font-jp);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.founder-signature {
  margin-top: 32px;
  color: var(--fg);
  font-weight: 600;
  text-align: right;
}
