.fp-nav {
  position: fixed;
  top: 20px;
  right: 28px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fp-nav-trigger {
  cursor: pointer;
  width: 90px;
  height: 90px;
  position: relative;
}

.fp-nav-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.fp-nav-default {
  opacity: 1;
}

.fp-nav-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.fp-nav-trigger:hover .fp-nav-default {
  opacity: 0;
}

.fp-nav-trigger:hover .fp-nav-hover {
  opacity: 1;
}

.fp-nav-dropdown {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  margin-top: 14px;
}

.fp-nav-dropdown.open {
  display: flex;
}

.fp-nav-link {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  text-align: right;
  padding: 3px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.fp-nav-link:hover {
  color: #FF0000;
  opacity: 1;
}

.fp-nav-link.active {
  color: #FF0000;
  opacity: 1;
  pointer-events: none;
}

.about-page {
  width: 100%;
  min-height: 100vh;
  padding: 120px 250px 250px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-name-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-bio p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.7;
  color: var(--text);
}

.about-cv {
  margin-top: 12px;
}

.cv-link {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cv-link:hover {
  color: #FF0000;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-photo {
  width: 100%;
}

.headshot-img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-links h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  padding-bottom: 8px;
}

.social-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  color: #FF0000;
  opacity: 1;
}

/* ── Tablet (769–1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .fp-nav-trigger {
    width: 46px;
    height: 46px;
  }

  .about-page {
    padding: 100px 40px 60px;
  }
}

/* ── Bottom fingerprint (mobile only) ── */
.about-fp-bottom {
  display: none;
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .about-page {
    padding: 72px 24px 40px;
  }

  /* Flatten the two-column grid into a single vertical flex flow */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* display:contents lets about-left's children become direct flex items */
  .about-left {
    display: contents;
  }

  /* Ordering: name → photo+links → bio → cv */
  .about-name  { order: 1; margin-bottom: 24px; }
  .about-right { order: 2; margin-bottom: 28px; }
  .about-bio   { order: 3; margin-bottom: 20px; }
  .about-cv    { order: 4; }

  .about-name-img {
    height: 72px;
    margin: 0;
  }

  /* Photo + links side by side */
  .about-right {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .about-photo {
    flex: 0 0 44%;
    width: 44%;
  }

  .headshot-img {
    width: 100%;
    height: auto;
  }

  .about-links {
    flex: 1;
    gap: 7px;
  }

  /* Hide "Connect" heading — links speak for themselves */
  .about-links h3 {
    display: none;
  }

  .social-link {
    font-size: 0.65rem;
  }

  .about-bio p {
    font-size: 0.68rem;
    text-align: justify;
  }

  /* Mobile fingerprint at page bottom */
  .about-fp-bottom {
    display: flex;
    justify-content: center;
    padding: 40px 0 20px;
  }

  .about-fp-img {
    width: 90px;
    height: auto;
    opacity: 0.85;
  }

  .fp-nav-trigger {
    width: 40px;
    height: 40px;
  }
}
