/* ============================================
   NURAYA — founder-profile.css
   Founder profile template — single-founder page.
   Loaded only on founder-profile.html.
   ============================================ */

/* ============================================
   FOUNDER HERO
   ============================================ */
.founder-hero__back {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.founder-hero__back:hover {
  color: var(--forest);
}

.founder-hero {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.founder-hero__grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: var(--space-lg);
  align-items: center;
}

.founder-hero__photo {
  aspect-ratio: 3/4;
  background: var(--dew);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

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

.founder-hero__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--muted);
  font-size: var(--fs-caption);
  text-align: center;
  padding: 1rem;
}

.founder-hero__content {
  padding: var(--space-md) 0;
}

/* — Pull-quote in hero — */
.founder-hero__quote-mark {
  font-size: 3rem;
  font-weight: 300;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.founder-hero__quote {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* — Identity block — */
.founder-hero__name {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.founder-hero__role {
  font-size: var(--fs-lead);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.founder-hero__word {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}

.founder-hero__linkedin {
  display: block;
  font-size: var(--fs-caption);
  font-weight: 500;
  color: var(--amber);
  transition: color 0.2s ease;
}

.founder-hero__linkedin:hover {
  text-decoration: underline;
}

/* ============================================
   FOUNDER BIO
   ============================================ */
.founder-bio {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.founder-bio__narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

/* ============================================
   FOUNDER CAPABILITY
   ============================================ */
.founder-capability {
  background: var(--dew);
  padding: var(--space-xl) 0;
}

.founder-capability__narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.founder-capability__title {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.founder-capability__text {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ============================================
   FOUNDER ARTICLES
   ============================================ */
.founder-articles {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.founder-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ============================================
   OTHER FOUNDERS
   ============================================ */
.other-founders {
  background: var(--offwhite);
  padding: var(--space-lg) 0 var(--space-xl);
  border-top: 1px solid var(--rule);
}

.other-founders__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.other-founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.other-founder-card:hover {
  background: var(--dew);
}

.other-founder-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dew);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.6rem;
  flex-shrink: 0;
  overflow: hidden;
}

.other-founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.other-founder-card__name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.15rem;
}

.other-founder-card__role {
  font-size: var(--fs-caption);
  color: var(--muted);
}

/* ============================================
   RESPONSIVE — FOUNDER PROFILE
   ============================================ */
@media (max-width: 768px) {
  .founder-hero {
    padding: 7rem 0 var(--space-lg);
  }

  .founder-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .founder-hero__photo {
    aspect-ratio: 4/3;
  }

  .founder-hero__quote {
    font-size: 1.4rem;
  }

  .founder-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-founders__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .founder-hero__quote {
    font-size: 1.3rem;
  }

  .founder-articles__grid {
    grid-template-columns: 1fr;
  }

  .other-founders__grid {
    grid-template-columns: 1fr;
  }
}
