:root {
  --founder-green: #286a42;
  --founder-deep: #174d31;
  --founder-sage: #e8f1e9;
  --founder-cream: #fbfaf5;
  --founder-yellow: #f3be3f;
  --founder-ink: #173226;
  --founder-muted: #607369;
}

.founder-page {
  color: var(--founder-ink);
  background: #fff;
}

.founder-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.founder-hero {
  background: var(--founder-green);
  color: #fff;
  overflow: hidden;
}

.founder-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, .97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-top: 64px;
}

.founder-intro {
  padding: 56px 0 72px;
}

.founder-kicker,
.section-heading > span,
.story-heading > span,
.founder-cta-inner > div > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.founder-kicker::before,
.story-heading > span::before,
.founder-cta-inner > div > span::before {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 99px;
  background: var(--founder-yellow);
}

.founder-intro h1 {
  margin: 24px 0 8px;
  color: #fff;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}

.founder-role {
  margin: 0;
  color: #d9eedf;
  font-size: clamp(20px, 2.3vw, 29px);
  font-weight: 700;
}

.founder-lead {
  max-width: 600px;
  margin: 38px 0 0;
  color: #edf7f0;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.75;
}

.founder-photo-frame {
  align-self: end;
  margin: 0;
  position: relative;
}

.founder-photo-frame::before {
  content: "";
  position: absolute;
  inset: 32px -34px -34px 34px;
  border: 2px solid rgba(255, 255, 255, .24);
  border-radius: 30px 30px 0 0;
}

.founder-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center top;
  position: relative;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 28px 80px rgba(3, 35, 19, .24);
}

.founder-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  text-align: center;
  margin: 0 auto 48px;
}

.section-heading > span,
.story-heading > span {
  color: var(--founder-green);
}

.section-heading h2,
.story-heading h2,
.founder-cta h2 {
  margin: 15px 0 0;
  color: var(--founder-ink);
  font-size: clamp(33px, 4.2vw, 52px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.credential-card {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid #dfe9e1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 36px rgba(28, 71, 45, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

@media (hover: hover) {
  .credential-card:hover {
    transform: translateY(-2px);
    border-color: #cddfd1;
    box-shadow: 0 16px 42px rgba(28, 71, 45, .09);
  }
}

.credential-card > .material-symbols-rounded {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  color: var(--founder-green);
  border-radius: 15px;
  background: var(--founder-sage);
  font-size: 29px;
}

.credential-card strong,
.credential-card small {
  display: block;
}

.credential-card strong {
  color: var(--founder-ink);
  font-size: 18px;
  line-height: 1.4;
}

.credential-card small {
  margin-top: 5px;
  color: var(--founder-muted);
  font-size: 14px;
  line-height: 1.5;
}

.founder-story {
  background: var(--founder-cream);
}

.story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.story-copy {
  padding-top: 3px;
}

.story-copy p {
  margin: 0 0 25px;
  color: #415b4d;
  font-size: 19px;
  line-height: 1.9;
}

.promise-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.promise-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 42px;
  padding: 38px 44px;
  border-radius: 22px;
  background: var(--founder-sage);
}

.promise-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--founder-green);
}

.promise-label .material-symbols-rounded {
  font-size: 34px;
}

.promise-label strong {
  font-size: 17px;
}

.promise-panel blockquote {
  margin: 0;
  color: var(--founder-deep);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 750;
  line-height: 1.55;
}

.founder-cta {
  padding: 72px 0;
  background: var(--founder-deep);
  color: #fff;
}

.founder-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.founder-cta h2 {
  color: #fff;
  font-size: clamp(30px, 3.8vw, 47px);
}

.founder-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 29px;
  color: var(--founder-deep);
  border-radius: 999px;
  background: var(--founder-yellow);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.founder-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.founder-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .founder-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .founder-intro {
    padding: 62px 0 48px;
  }

  .founder-lead {
    margin-top: 28px;
  }

  .founder-photo-frame {
    width: min(520px, 100%);
    justify-self: center;
  }

  .founder-photo-frame::before {
    display: none;
  }

  .founder-photo-frame img {
    aspect-ratio: 1 / 1.03;
  }

  .credential-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 35px;
  }

  .promise-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .founder-wrap {
    width: min(100% - 32px, 1160px);
  }

  .founder-intro {
    padding: 48px 0 38px;
  }

  .founder-kicker,
  .section-heading > span,
  .story-heading > span,
  .founder-cta-inner > div > span {
    gap: 10px;
    font-size: 11.5px;
    line-height: 1.4;
    letter-spacing: .14em;
  }

  .founder-kicker::before,
  .story-heading > span::before,
  .founder-cta-inner > div > span::before {
    width: 32px;
  }

  .founder-intro h1 {
    margin-top: 20px;
    font-size: 44px;
    line-height: 1.02;
  }

  .founder-role {
    font-size: 18px;
  }

  .founder-lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.7;
  }

  .founder-photo-frame img {
    border-radius: 24px 24px 0 0;
  }

  .founder-section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 30px;
  }

  .credential-card {
    min-height: 0;
    align-items: flex-start;
    padding: 22px;
  }

  .story-copy p {
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.82;
  }

  .promise-section {
    padding: 48px 0;
  }

  .promise-panel {
    width: min(100% - 32px, 1160px);
    padding: 28px 24px;
  }

  .founder-cta {
    padding: 58px 0;
  }

  .founder-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-button,
  .credential-card {
    transition: none;
  }
}
