/* ============================================
   WICFLOW — Founder / About Section
   ============================================ */

/* Local variables (mirrors base design tokens) */
:root {
  --bg-alt: #eeeee9;
  --text-primary: #111113;
  --text-muted: #626b7a;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Section */
.founder {
  background-color: var(--bg-alt);
}

/* Two-column grid */
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* ---- Photo column ---- */
.founder__photo-wrap {
  display: flex;
  justify-content: flex-start;
}

.founder__photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.75rem;
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* ---- Bio column ---- */
.founder__bio {
  display: flex;
  flex-direction: column;
}

.founder__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.founder__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.founder__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.25rem 0 0;
}

.founder__divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  width: 3rem;
  margin: 1.5rem 0;
}

.founder__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.7;
  max-width: 45ch;
  margin: 0;
}

.founder__location {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .founder__photo {
    max-width: 320px;
  }

  .founder__grid {
    gap: 3rem;
  }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder__photo-wrap {
    justify-content: center;
  }

  .founder__photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .founder__headline {
    font-size: 2rem;
  }
}
