.site-header nav a[aria-current="page"] {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.about-main {
  overflow: hidden;
}

.about-intro {
  min-height: calc(100vh - 53px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.about-copy {
  max-width: 760px;
}

.about-copy h1 {
  font-size: clamp(48px, 7vw, 82px);
  margin-bottom: 30px;
}

.about-copy p:not(.eyebrow) {
  color: #34495e;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
  margin-bottom: 18px;
}

.about-copy em {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.founder-photo {
  margin: 0;
}

.founder-photo img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.origin-video {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 246, 0.82);
  border-block: 1px solid var(--line);
}

.video-heading,
.video-frame {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.video-heading {
  text-align: center;
  margin-bottom: 32px;
}

.video-heading h2 {
  max-width: 850px;
  margin-inline: auto;
}

.video-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-cta {
  text-align: center;
  padding: clamp(72px, 10vw, 128px) 20px;
}

.about-cta h2 {
  max-width: 700px;
  margin: 0 auto 28px;
}

.about-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(22, 116, 111, 0.24);
}

.about-button:hover,
.about-button:focus-visible {
  background: #105e5a;
}

@media (max-width: 860px) {
  .about-intro {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: min(100%, 560px);
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header nav {
    width: auto;
    gap: 16px;
    font-size: 13px;
  }

  .about-copy h1 {
    font-size: 46px;
  }
}
/* Readability background for founder photo caption */
.founder-photo figcaption {
  display: inline-block;
  background: rgba(255, 253, 246, 0.58);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.12em 0.38em;
  border-radius: 0.28em;
  line-height: 1.5;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 253, 246, 0.85);
}
