:root {
  --bio-navy: #06183d;
  --bio-blue: #08376b;
  --bio-blue-soft: #124b87;
  --bio-gold: #ffd328;
  --bio-green: #13a65a;
  --bio-cream: #f5f1e8;
  --bio-paper: #fffdf8;
  --bio-ink: #071433;
  --bio-muted: #5e6575;
  --bio-line: rgba(7, 20, 51, 0.14);
}

html {
  scroll-behavior: smooth;
}

body.bio-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--bio-navy);
  color: #fff;
  font-family: "Satoshi", "Inter", sans-serif;
}

.bio-page *,
.bio-page *::before,
.bio-page *::after {
  box-sizing: border-box;
}

.bio-page img {
  max-width: 100%;
}

.bio-page .djnew-topnav__link[aria-current="page"] {
  background: rgba(255, 211, 40, 0.16) !important;
  color: var(--bio-gold) !important;
  -webkit-text-fill-color: var(--bio-gold) !important;
}

.bio-intro {
  position: relative;
  padding: clamp(76px, 10vw, 140px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 211, 40, 0.11), transparent 27%),
    linear-gradient(180deg, #050f2f, var(--bio-navy));
}

.bio-intro__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.bio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--bio-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bio-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.bio-intro h1 {
  max-width: 880px;
  margin: 0 0 26px;
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(3.2rem, 7.1vw, 6.9rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.bio-intro h1 strong {
  display: block;
  color: var(--bio-gold);
  font-weight: inherit;
}

.bio-intro__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.bio-intro__portrait {
  position: relative;
  width: min(100%, 390px);
  margin: 0;
  justify-self: end;
}

.bio-intro__portrait::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border-radius: 28px;
  background: var(--bio-gold);
}

.bio-intro__portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.bio-story {
  position: relative;
  padding: clamp(86px, 11vw, 150px) clamp(18px, 5vw, 70px);
  background: var(--bio-cream);
  color: var(--bio-ink);
}

.bio-story__head {
  width: min(850px, 100%);
  margin: 0 auto clamp(76px, 10vw, 130px);
  text-align: center;
}

.bio-story__head .bio-eyebrow {
  justify-content: center;
  color: #936f00;
}

.bio-story__head h2 {
  margin: 0 0 20px;
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.bio-story__head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--bio-muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.bio-timeline {
  --timeline-progress: 0%;
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.bio-timeline::before,
.bio-timeline::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.bio-timeline::before {
  bottom: 0;
  background: rgba(7, 20, 51, 0.12);
}

.bio-timeline::after {
  height: var(--timeline-progress);
  max-height: 100%;
  background: linear-gradient(180deg, var(--bio-gold), #e6ad00 78%, var(--bio-green));
  box-shadow: 0 0 22px rgba(255, 211, 40, 0.28);
}

.bio-timeline__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: start;
  min-height: 320px;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.bio-timeline__item:last-child {
  margin-bottom: 0;
}

.bio-timeline__marker {
  grid-column: 2;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding-top: 20px;
}

.bio-timeline__dot {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 6px solid var(--bio-cream);
  border-radius: 50%;
  background: var(--bio-gold);
  box-shadow: 0 0 0 3px var(--bio-ink), 0 8px 18px rgba(7, 20, 51, 0.22);
}

.bio-timeline__year {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--bio-ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.bio-milestone {
  grid-column: 1;
  overflow: hidden;
  border: 1px solid var(--bio-line);
  border-radius: 26px;
  background: var(--bio-paper);
  box-shadow: 0 24px 55px rgba(7, 20, 51, 0.1);
}

.bio-timeline__item:nth-child(even) .bio-milestone {
  grid-column: 3;
}

.bio-milestone__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--bio-blue);
}

.bio-milestone__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bio-milestone__media img.bio-milestone__photo--contain {
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.bio-milestone:hover .bio-milestone__media img {
  transform: scale(1.025);
}

.bio-milestone__media figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(4, 18, 47, 0.78);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.bio-milestone__media figcaption a {
  color: #fff;
}

.bio-milestone__body {
  padding: clamp(25px, 3.4vw, 42px);
}

.bio-milestone__kicker {
  display: block;
  margin-bottom: 12px;
  color: #8c6800;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bio-milestone h3 {
  margin: 0 0 18px;
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.bio-milestone p {
  margin: 0 0 15px;
  color: #4d5567;
  font-size: 0.98rem;
  line-height: 1.7;
}

.bio-milestone p:last-child {
  margin-bottom: 0;
}

.bio-milestone blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--bio-gold);
  background: #f4efdF;
  color: var(--bio-ink);
  font-weight: 800;
  line-height: 1.55;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.bio-stat {
  padding: 15px;
  border-radius: 14px;
  background: var(--bio-ink);
  color: #fff;
}

.bio-stat strong,
.bio-stat span {
  display: block;
}

.bio-stat strong {
  color: var(--bio-gold);
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.bio-stat span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.bio-causes {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 211, 40, 0.11), transparent 25%),
    linear-gradient(150deg, #06183d, #082e5c);
}

.bio-causes__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bio-causes__head {
  max-width: 900px;
  margin-bottom: clamp(42px, 6vw, 68px);
}

.bio-causes__head h2 {
  margin: 0 0 18px;
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.bio-causes__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.7;
}

.bio-causes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.bio-cause {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.bio-cause:not(.bio-cause--video):hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 40, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.bio-cause__number {
  display: block;
  color: var(--bio-gold);
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.bio-cause__theme {
  display: block;
  margin-top: 20px;
  color: rgba(255, 211, 40, 0.82);
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bio-cause h3 {
  margin: 10px 0 14px;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.bio-cause p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.6;
}

.bio-cause--video {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  width: min(1080px, 100%);
  min-height: 0;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 211, 40, 0.24);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 211, 40, 0.12), transparent 34%),
    rgba(2, 15, 45, 0.54);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.07);
}

.bio-cause__copy {
  align-self: center;
  padding: clamp(34px, 5vw, 58px);
}

.bio-cause--video-reverse .bio-cause__copy {
  order: 2;
}

.bio-cause--video-reverse {
  grid-template-columns: 350px minmax(0, 1fr);
}

.bio-cause--video-reverse .bio-cause__video-shell {
  order: 1;
}

.bio-cause__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.bio-cause__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 211, 40, 0.27);
  border-radius: 999px;
  color: var(--bio-gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bio-cause--video h3 {
  margin: 12px 0 20px;
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.92;
}

.bio-cause--video p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.72;
}

.bio-cause--video .bio-cause__video-intro {
  margin-top: 18px;
  color: #fff;
  font-weight: 700;
}

.bio-cause__instagram-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--bio-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.bio-cause__video-shell {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.bio-cause__video-viewport {
  width: 326px;
  max-width: calc(100% - 24px);
  aspect-ratio: 620 / 900;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.bio-cause__video-viewport iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.bio-finale {
  padding: clamp(90px, 12vw, 170px) clamp(20px, 6vw, 92px);
  background: var(--bio-gold);
  color: var(--bio-ink);
  text-align: center;
}

.bio-finale__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.bio-finale__tag {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bio-finale h2 {
  margin: 0 0 24px;
  font-family: "Big Shoulders Display Local", "Big Shoulders Display", Impact, sans-serif;
  font-size: clamp(3.7rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.bio-finale p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
  font-weight: 600;
  line-height: 1.7;
}

.bio-finale__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bio-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 2px solid var(--bio-ink);
  border-radius: 999px;
  background: var(--bio-ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bio-action--ghost {
  background: transparent;
  color: var(--bio-ink);
}

.bio-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(7, 20, 51, 0.2);
}

.bio-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.bio-footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bio-footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 211, 40, 0.5);
}

.bio-footer-socials img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.bio-footer-socials a:hover img {
  opacity: 1;
}

.bio-page footer {
  background: #04122f;
}

.bio-page .foot-meta a {
  color: inherit;
}

.bio-page .foot-meta a:hover {
  color: var(--bio-gold);
}

@media (prefers-reduced-motion: no-preference) {
  .bio-timeline__item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .bio-timeline__item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .bio-causes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .bio-intro__inner {
    grid-template-columns: 1fr;
  }

  .bio-cause--video {
    grid-template-columns: 1fr;
  }

  .bio-cause--video-reverse {
    grid-template-columns: 1fr;
  }

  .bio-cause--video-reverse .bio-cause__copy {
    order: 1;
  }

  .bio-cause--video-reverse .bio-cause__video-shell {
    order: 2;
  }

  .bio-cause__copy {
    padding: clamp(34px, 8vw, 56px);
  }

  .bio-cause__topline {
    margin-bottom: 42px;
  }

  .bio-intro__portrait {
    width: min(390px, calc(100% - 18px));
    margin: 0 auto;
    justify-self: center;
  }

  .bio-timeline::before,
  .bio-timeline::after {
    left: 15px;
    transform: none;
  }

  .bio-timeline__item {
    display: block;
    min-height: 0;
    margin-bottom: 58px;
    padding-left: 48px;
  }

  .bio-timeline__marker {
    position: absolute;
    z-index: 3;
    top: 15px;
    left: 2px;
    padding: 0;
  }

  .bio-timeline__year {
    position: absolute;
    z-index: 4;
    top: 34px;
    left: -2px;
    box-shadow: 0 7px 16px rgba(7, 20, 51, 0.22);
  }

  .bio-milestone,
  .bio-timeline__item:nth-child(even) .bio-milestone {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .bio-intro {
    padding-top: 72px;
  }

  .bio-intro h1 {
    font-size: clamp(3.05rem, 16vw, 4.5rem);
    line-height: 0.99;
  }

  .bio-story {
    padding-inline: 14px;
  }

  .bio-story__head {
    padding-inline: 10px;
  }

  .bio-timeline__item {
    padding-left: 41px;
  }

  .bio-timeline::before,
  .bio-timeline::after {
    left: 12px;
  }

  .bio-timeline__marker {
    left: -1px;
  }

  .bio-timeline__dot {
    width: 24px;
    height: 24px;
  }

  .bio-timeline__year {
    left: -4px;
    font-size: 0.58rem;
  }

  .bio-milestone {
    border-radius: 20px;
  }

  .bio-milestone__body {
    padding: 24px 20px 27px;
  }

  .bio-milestone h3 {
    font-size: 2.28rem;
  }

  .bio-stats {
    grid-template-columns: 1fr;
  }

  .bio-causes__grid {
    grid-template-columns: 1fr;
  }

  .bio-cause {
    min-height: 0;
  }

  .bio-cause__copy {
    padding: 30px 22px 34px;
  }

  .bio-cause__topline {
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .bio-cause__type {
    max-width: 132px;
    justify-content: center;
    text-align: center;
  }

  .bio-cause__video-shell {
    padding: 0;
  }

  .bio-cause__video-viewport {
    border-radius: 12px;
  }

  .bio-cause h3 {
    margin-top: 20px;
  }

  .bio-finale__actions {
    flex-direction: column;
  }

  .bio-action {
    width: 100%;
  }
}
