/* ─── FOUNDER ─────────────────────────────────────────────── */
/* Mobile: text → image → footer (quote) */
.founder__inner {
  display: flex; flex-direction: column; gap: 40px;
}
/* Desktop: image left (spans rows), text + footer stacked right */
@media (min-width: 1024px) {
  .founder__inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-areas: "img text" "img footer";
    column-gap: 96px;
    row-gap: 40px;
    align-items: start;
  }
  .founder__image { grid-area: img; }
  .founder__text  { grid-area: text; }
  .founder__footer { grid-area: footer; }
}
.founder__image {
  width: 100%; max-width: 420px;
  aspect-ratio: 4/5; object-fit: cover;
}
.founder__name {
  font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.12;
  color: var(--text-on-light); margin: 16px 0 8px;
}
.founder__title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(var(--color-midnight-rgb), 0.45); margin-bottom: 32px;
}
.founder__bio {
  font-size: var(--text-body); font-weight: 300; line-height: 1.8;
  color: rgba(var(--color-midnight-rgb), 0.65);
}
.founder__bio p + p { margin-top: 20px; }
.founder__quote {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 600;
  line-height: 1.3; color: var(--text-on-light);
}

/* ─── VALUES ──────────────────────────────────────────────── */
.values { text-align: left; }
.values > .container > .label { display: block; }
.values__heading { color: var(--text-on-dark); margin-bottom: 48px; }
.values__grid {
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 768px) { .values__grid { flex-direction: row; gap: 24px; } }
.value-card {
  flex: 1; display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
}
.value-card__header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.value-card__icon {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--accent);
}
.value-card__title {
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-on-dark); margin: 0;
}
.value-card__body {
  font-size: var(--text-body); font-weight: 300; line-height: 1.75;
  color: var(--text-muted-dark);
}

/* .founder-quote uses standard .label + .section-heading — no custom CSS needed */

/* ─── WHERE WE WORK ──────────────────────────────────────── */
.service-areas { text-align: left; }
.service-areas > .container > .label { display: block; }
.service-areas__heading { color: var(--text-on-light); margin-bottom: 24px; }
.service-areas__body {
  font-size: var(--text-body); font-weight: 300; line-height: 1.75;
  color: rgba(var(--color-midnight-rgb), 0.65); max-width: 600px;
}
@media (min-width: 1024px) {
  .service-areas__body { max-width: none; }
}
.service-areas__cols {
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 768px) { .service-areas__cols { flex-direction: row; gap: 0; } }
.area-col {
  flex: 1; padding: 0 32px;
}
@media (min-width: 768px) {
  .area-col + .area-col { border-left: 1px solid rgba(var(--color-midnight-rgb), 0.15); }
}
.area-col__title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 20px;
}
.area-col__areas {
  font-size: var(--text-body); font-weight: 300; color: rgba(var(--color-midnight-rgb), 0.65);
  line-height: 2;
}
.area-col__areas span + span::before { content: ' · '; color: var(--accent); }
.service-areas__note {
  font-size: 13px; font-weight: 300; color: var(--accent);
  margin-top: 40px; display: block;
}
