/* =========================================================
   FRIDAI — ABOUT PAGE
   Open studio + editorial team journal
   Loads after public-site.css
   ========================================================= */


/* =========================================================
   PAGE FOUNDATIONS
   ========================================================= */

.about-page {
  background: var(--paper);
}

.about-page main {
  overflow: hidden;
}

.about-page .desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.about-page .desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.about-page .mobile-nav a[aria-current="page"] {
  color: var(--brand-bright);
  border-color: rgba(29, 185, 84, 0.3);
  background: rgba(29, 185, 84, 0.08);
}

.about-section-marker {
  margin-bottom: 18px;
  color: var(--brand-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-section-marker.light-marker {
  color: var(--brand-bright);
}


/* =========================================================
   ABOUT ENTRANCE
   ========================================================= */

.about-entry {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  padding: 150px 0 98px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(29, 185, 84, 0.24),
      transparent 25%
    ),
    radial-gradient(
      circle at 12% 80%,
      rgba(29, 185, 84, 0.11),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #030b06 0%,
      #06120c 48%,
      #0c2e1a 100%
    );
}

.about-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92),
    transparent 100%
  );
}

.about-entry::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(3, 11, 6, 0.72)
  );
}

.about-entry-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-entry-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.04) 78%,
    transparent
  );
}

.about-entry-lines span:nth-child(1) {
  left: 10%;
}

.about-entry-lines span:nth-child(2) {
  left: 36%;
}

.about-entry-lines span:nth-child(3) {
  right: 36%;
}

.about-entry-lines span:nth-child(4) {
  right: 10%;
}

.about-entry-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    110px
    minmax(0, 1.15fr)
    minmax(340px, 0.72fr);
  gap: 66px;
  align-items: center;
}

.about-entry-index {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 34px 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-entry-index span,
.about-entry-index strong {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-entry-index span {
  color: var(--brand-bright);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.about-entry-index strong {
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.about-entry-copy {
  max-width: 720px;
}

.about-entry-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.2vw, 6.5rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.about-entry-copy h1 em {
  display: block;
  margin-top: 0.1em;
  color: var(--brand-bright);
  font-style: italic;
  line-height: 1.05;
  text-shadow: 0 0 45px rgba(29, 185, 84, 0.2);
}

.about-entry-lead {
  max-width: 670px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.81);
  font-size: clamp(1.08rem, 1.55vw, 1.27rem);
  line-height: 1.74;
}

.about-entry-support {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.97rem;
  line-height: 1.78;
}

.about-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.about-entry-link span {
  color: var(--brand-bright);
  transition: transform 0.2s ease;
}

.about-entry-link:hover span {
  transform: translateY(5px);
}

.about-entry-link:focus-visible {
  outline: 3px solid rgba(29, 185, 84, 0.42);
  outline-offset: 5px;
}


/* =========================================================
   FIELD NOTE
   ========================================================= */

.about-entry-note {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--ink);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(239, 231, 216, 0.99)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.4),
    11px 11px 0 rgba(29, 185, 84, 0.07);
  transform: rotate(1deg);
}

.about-entry-note::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(25, 20, 20, 0.08);
}

.about-note-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 22px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--deep-green);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-entry-note blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 64px 38px 56px;
}

.about-entry-note blockquote::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 30px;
  color: rgba(29, 185, 84, 0.18);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}

.about-entry-note blockquote p {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.25;
  font-style: italic;
}

.about-note-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 17px 20px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--deep-green);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.about-note-footer span + span::before {
  content: "◇";
  margin-right: 18px;
  color: var(--brand-bright);
}


/* =========================================================
   WHO WE ARE
   ========================================================= */

.about-story {
  padding: 128px 0;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(29, 185, 84, 0.07),
      transparent 24%
    ),
    var(--paper);
}

.about-story-layout {
  display: grid;
  grid-template-columns:
    120px
    minmax(0, 1.02fr)
    minmax(340px, 0.72fr);
  gap: 66px;
  align-items: start;
}

.about-story-marker {
  padding-top: 5px;
}

.about-story-marker span {
  display: block;
  margin-bottom: 26px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.about-story-marker p {
  color: var(--brand-deep);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-story-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 1.03;
  font-weight: 500;
}

.about-story-copy {
  max-width: 620px;
  padding-top: 5px;
}

.about-story-copy p {
  color: var(--muted);
  line-height: 1.82;
}

.about-story-copy .about-story-lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.48;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   MISSION
   ========================================================= */

.about-mission {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    var(--deep-green);
  background-size: 44px 44px;
}

.about-mission-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-mission-background span {
  position: absolute;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.5rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.about-mission-background span:nth-child(1) {
  top: 5%;
  left: -3%;
}

.about-mission-background span:nth-child(2) {
  top: 43%;
  right: -4%;
}

.about-mission-background span:nth-child(3) {
  bottom: 1%;
  left: 15%;
}

.about-mission-layout {
  position: relative;
  z-index: 1;
}

.about-mission-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 910px;
  margin-bottom: 38px;
}

.about-mission-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.1vw, 5.3rem);
  line-height: 1.01;
  font-weight: 500;
}

.about-mission-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  max-width: 950px;
  margin-bottom: 74px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-mission-statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.mission-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.mission-principles article {
  min-height: 330px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.24s ease,
    background 0.24s ease;
}

.mission-principles article:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  background: rgba(29, 185, 84, 0.08);
}

.mission-principles article > span {
  display: block;
  margin-bottom: 80px;
  color: var(--brand-bright);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.mission-principles h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 500;
}

.mission-principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.88rem;
  line-height: 1.72;
}


/* =========================================================
   TEAM INTRODUCTION
   ========================================================= */

.team-introduction {
  padding: 118px 0 86px;
  background: var(--paper-warm);
}

.team-introduction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  gap: 90px;
  align-items: end;
}

.team-introduction h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  line-height: 1.04;
  font-weight: 500;
}

.team-introduction-layout > p {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.8;
}


/* =========================================================
   TEAM PROFILES
   ========================================================= */

.team-profile {
  position: relative;
  padding: 124px 0;
}

.team-profile-light {
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(29, 185, 84, 0.07),
      transparent 24%
    ),
    var(--paper);
}

.team-profile-warm {
  background:
    radial-gradient(
      circle at 10% 14%,
      rgba(29, 185, 84, 0.07),
      transparent 26%
    ),
    var(--paper-warm);
}

.team-profile-dark {
  color: var(--white);
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    var(--deep-green);
  background-size: 44px 44px;
}

.team-profile-layout {
  display: grid;
  grid-template-columns:
    minmax(340px, 0.82fr)
    minmax(0, 1.18fr);
  gap: 100px;
  align-items: center;
}

.team-profile-reversed .team-portrait {
  grid-column: 2;
  grid-row: 1;
}

.team-profile-reversed .team-profile-copy {
  grid-column: 1;
  grid-row: 1;
}

.team-portrait {
  max-width: 500px;
  margin: 0;
}

.team-profile-reversed .team-portrait {
  margin-left: auto;
}

.team-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
}

.team-portrait-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  border-top: 2px solid var(--brand);
  border-left: 2px solid var(--brand);
  pointer-events: none;
}

.team-portrait-frame::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  pointer-events: none;
}

.team-portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper-deep);
  filter: saturate(0.88) contrast(1.02);
}

.team-profile-dark .team-portrait-frame {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.team-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px 0;
  color: var(--brand-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.team-profile-dark .team-portrait figcaption {
  color: var(--brand-bright);
}

.team-profile-copy {
  max-width: 700px;
}

.team-profile-role {
  margin-bottom: 15px;
  color: var(--brand-deep);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.team-profile-dark .team-profile-role {
  color: var(--brand-bright);
}

.team-profile-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 500;
}

.team-profile-introduction {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.42;
}

.team-profile-dark .team-profile-introduction {
  color: rgba(255, 255, 255, 0.82);
}

.team-profile-biography {
  max-width: 650px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.team-profile-biography p {
  color: var(--muted);
  line-height: 1.82;
}

.team-profile-biography p:last-child {
  margin-bottom: 0;
}

.team-profile-dark .team-profile-biography {
  border-color: rgba(255, 255, 255, 0.14);
}

.team-profile-dark .team-profile-biography p {
  color: rgba(255, 255, 255, 0.59);
}

.team-profile-quote {
  max-width: 660px;
  margin: 38px 0 0;
  padding: 28px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--brand);
}

.team-profile-quote p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
}

.team-profile-dark .team-profile-quote {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.team-profile-dark .team-profile-quote p {
  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   HOW WE WORK
   ========================================================= */

.about-approach {
  padding: 126px 0;
  background: var(--paper);
}

.about-approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: start;
}

.about-approach-heading {
  position: sticky;
  top: 120px;
}

.about-approach-heading h2 {
  max-width: 600px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
  line-height: 1.04;
  font-weight: 500;
}

.about-approach-steps {
  border-top: 1px solid var(--line);
}

.about-approach-steps article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 38px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.about-approach-steps span {
  color: var(--brand-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.about-approach-steps p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
}


/* =========================================================
   CLOSING INVITATION
   ========================================================= */

.about-invitation {
  padding: 46px 0 110px;
  background: var(--paper);
}

.about-invitation-card {
  position: relative;
  display: grid;
  grid-template-columns:
    170px
    minmax(0, 1fr)
    minmax(230px, auto);
  gap: 58px;
  align-items: center;
  min-height: 430px;
  padding: 68px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(29, 185, 84, 0.3),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #041008,
      #0d311b
    );
  box-shadow: var(--shadow-md);
}

.about-invitation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
}

.about-invitation-card::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -260px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.023),
    0 0 0 140px rgba(255, 255, 255, 0.016);
}

.about-invitation-mark,
.about-invitation-copy,
.about-invitation-actions {
  position: relative;
  z-index: 1;
}

.about-invitation-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(29, 185, 84, 0.4);
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.08);
  box-shadow:
    0 0 0 16px rgba(29, 185, 84, 0.035),
    0 0 0 32px rgba(29, 185, 84, 0.018);
}

.about-invitation-mark img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.about-invitation-copy {
  max-width: 690px;
}

.about-invitation-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.04;
  font-weight: 500;
}

.about-invitation-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

.about-invitation-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}

.about-library-link {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  font-weight: 800;
}

.about-library-link span {
  color: var(--brand-bright);
  transition: transform 0.2s ease;
}

.about-library-link:hover {
  color: var(--white);
}

.about-library-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .about-entry-layout {
    grid-template-columns:
      80px
      minmax(0, 1.1fr)
      minmax(320px, 0.8fr);
    gap: 46px;
  }

  .about-entry-copy h1 {
    font-size: clamp(3.4rem, 5.8vw, 5.7rem);
  }

  .about-story-layout {
    grid-template-columns: 90px 1fr;
  }

  .about-story-copy {
    grid-column: 2;
    max-width: 760px;
  }

  .mission-principles {
    grid-template-columns: 1fr 1fr;
  }

  .team-profile-layout {
    gap: 70px;
  }

  .about-approach-layout {
    gap: 70px;
  }

  .about-invitation-card {
    grid-template-columns: 130px 1fr;
  }

  .about-invitation-actions {
    grid-column: 2;
    align-items: flex-start;
  }
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {
  .about-entry {
    min-height: auto;
  }

  .about-entry-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-entry-index {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-entry-index span,
  .about-entry-index strong {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .about-entry-index strong {
    font-size: 2.2rem;
  }

  .about-entry-copy {
    max-width: 780px;
  }

  .about-entry-note {
    width: min(100%, 580px);
    max-width: none;
    margin: 0;
    transform: none;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story-marker {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about-story-marker span {
    margin-bottom: 0;
  }

  .about-story-marker p {
    margin: 0;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .about-story-copy {
    grid-column: auto;
  }

  .about-mission-statement,
  .team-introduction-layout,
  .about-approach-layout {
    grid-template-columns: 1fr;
  }

  .team-introduction-layout {
    gap: 30px;
  }

  .team-introduction-layout > p {
    max-width: 700px;
  }

  .team-profile-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .team-profile-reversed .team-portrait,
  .team-profile-reversed .team-profile-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .team-profile-reversed .team-portrait {
    margin-left: 0;
  }

  .team-portrait {
    width: min(100%, 520px);
  }

  .team-profile-copy {
    max-width: 760px;
  }

  .about-approach-heading {
    position: static;
    max-width: 700px;
  }

  .about-invitation-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-invitation-actions {
    grid-column: auto;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .about-entry {
    padding: 120px 0 76px;
  }

  .about-entry-lines span:nth-child(2),
  .about-entry-lines span:nth-child(3) {
    display: none;
  }

  .about-entry-copy h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .about-entry-lead {
    font-size: 1rem;
  }

  .about-entry-index strong {
    font-size: 1.7rem;
  }

  .about-entry-note blockquote {
    padding: 58px 26px 46px;
  }

  .about-entry-note blockquote p {
    font-size: 1.7rem;
  }

  .about-note-footer span + span::before {
    display: none;
  }

  .about-story,
  .about-mission,
  .team-profile,
  .about-approach {
    padding: 82px 0;
  }

  .team-introduction {
    padding: 82px 0 62px;
  }

  .about-story-heading h2,
  .about-mission-heading h2,
  .team-introduction h2,
  .team-profile-copy h2,
  .about-approach-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .about-mission-statement {
    gap: 22px;
    margin-bottom: 54px;
  }

  .mission-principles {
    grid-template-columns: 1fr;
  }

  .mission-principles article {
    min-height: auto;
  }

  .mission-principles article > span {
    margin-bottom: 42px;
  }

  .team-portrait-frame {
    padding: 10px;
  }

  .team-portrait-frame::before,
  .team-portrait-frame::after {
    width: 65px;
    height: 65px;
  }

  .team-profile-introduction {
    font-size: 1.35rem;
  }

  .team-profile-quote {
    padding-left: 20px;
  }

  .team-profile-quote p {
    font-size: 1.12rem;
  }

  .about-approach-steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-approach-steps p {
    font-size: 1.25rem;
  }

  .about-invitation {
    padding: 26px 0 80px;
  }

  .about-invitation-card {
    min-height: auto;
    padding: 46px 24px;
    border-radius: 24px;
  }

  .about-invitation-mark {
    width: 110px;
    height: 110px;
  }

  .about-invitation-mark img {
    width: 58px;
    height: 58px;
  }

  .about-invitation-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .about-invitation-actions {
    align-items: stretch;
  }

  .about-invitation-actions .button {
    width: 100%;
  }
}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 420px) {
  .about-entry-copy h1 {
    font-size: 2.8rem;
  }

  .about-note-header {
    flex-direction: column;
    gap: 5px;
  }

  .about-note-footer {
    flex-direction: column;
    align-items: center;
  }

  .about-entry-note blockquote {
    padding-left: 22px;
    padding-right: 22px;
  }

  .team-profile-copy h2 {
    font-size: 2.75rem;
  }

  .about-invitation-mark {
    width: 96px;
    height: 96px;
  }

  .about-invitation-mark img {
    width: 50px;
    height: 50px;
  }
}