/* ─── Page Header (about) ─── */
.page-header {
  padding: 140px 0 72px;
  background: var(--neutral);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 12px; }

/* ─── Founder Section ─── */
.founder-section {
  padding: 80px 0;
}

.founder-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Fixed height so image is fully visible */
  height: 560px;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.founder-text h2 { margin-top: 8px; }

.about-intro {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.founder-text p { font-size: 0.95rem; color: var(--text-body); }

/* ─── Why Exist ─── */
.why-exist { }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-inner--text-only {
  grid-template-columns: 1fr;
}

.why-text--wide {
  max-width: 680px;
  margin: 0 auto;
}

.why-text h2 { margin-top: 8px; }
.why-bold { font-weight: 600; color: var(--text-dark); margin-top: 20px; margin-bottom: 12px; font-size: 0.9rem; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-list li {
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.why-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ─── Where Now ─── */
.where-now { }

.where-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.where-inner--text-only {
  grid-template-columns: 1fr;
}

.where-text--wide {
  max-width: 680px;
  margin: 0 auto;
}

.where-text h2 { margin-top: 8px; }

/* ─── Stylist ─── */
.stylist-section { }

.stylist-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stylist-inner h2 { margin-top: 8px; }

.stylist-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-image { height: 320px; }
  .why-inner, .where-inner { grid-template-columns: 1fr; gap: 40px; }
}
