/* ── FOUNDER STORY ── */
.founder-section {
  padding: 80px 80px;
  background: var(--cream);
  border-top: 1px solid var(--oat-darker);
  border-bottom: 1px solid var(--oat-darker);
  max-width: 1200px;
  margin: 0 auto;
}

.founder-inner {
  max-width: 760px;
  margin: 0 auto;
}

.founder-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.founder-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.founder-story {
  border-left: 3px solid var(--terracotta);
  padding-left: 28px;
  margin-bottom: 24px;
}

.founder-story p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.founder-story p:last-child {
  margin-bottom: 0;
}

.founder-story strong {
  font-style: normal;
  color: var(--charcoal);
  font-weight: 700;
}

details.founder-expand {
  margin-top: 16px;
}

details.founder-expand summary {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  transition: color 0.2s;
}

details.founder-expand summary:hover {
  color: var(--terracotta-dark);
}

details.founder-expand summary::marker {
  display: none;
}

details.founder-expand[open] summary {
  margin-bottom: 16px;
}

details.founder-expand .extra-story p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 14px;
  font-family: 'Lora', serif;
  font-style: italic;
}