:root {
  --black: #11100e;
  --black-soft: #24201c;

  --blue: #1677ff;
  --blue-dark: #0754c9;
  --blue-light: #4b9aff;

  --orange: #e84923;
  --orange-light: #ff633a;

  --cream: #fffaf4;
  --cream-2: #fff3e6;

  --white: #ffffff;

  --text: #17120f;
  --muted: #6f6258;

  --border: rgba(17,16,14,.11);

  --shadow:
    0 20px 60px rgba(50,30,15,.10);

  --font:
    "Outfit",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


/* ============================================================
   RESET
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}


/* ============================================================
   HEADER
   ============================================================ */

.founder-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,244,.90);
  border-bottom: 1px solid var(--border);

  /* HEADER GLASS ONLY */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), 1180px);
  min-height: 70px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.founder-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.founder-logo span {
  color: #15120f;
}

.founder-logo b {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: .82rem;
  font-weight: 700;
  color: #65594f;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  padding: 10px 17px;
  border-radius: 8px;
  background: var(--black);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  transition: transform .2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
}

.menu-btn {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(17,16,14,.25);
  border-radius: 9px;

  background: white;

  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);

  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu {
  padding-bottom: 12px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}


/* ============================================================
   HERO
   ============================================================ */

.founder-hero {
  position: relative;

  min-height:
    calc(100svh - 70px);

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(22,119,255,.10),
      transparent 30%
    ),

    radial-gradient(
      circle at 15% 80%,
      rgba(232,73,35,.07),
      transparent 28%
    ),

    linear-gradient(
      135deg,
      #fffaf4,
      #fff3e6
    );
}

.hero-glow {
  position: absolute;

  width: 600px;
  height: 600px;

  right: -220px;
  top: -150px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(22,119,255,.11),
      transparent 68%
    );

  pointer-events: none;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    minmax(350px,.75fr);

  align-items: center;

  gap: 70px;

  padding: 80px 0;
}


/* ============================================================
   HERO COPY
   ============================================================ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  color: var(--blue);

  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow-line {
  width: 35px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--orange)
    );
}

.hero-copy h1 {
  max-width: 720px;

  margin: 0;

  font-size:
    clamp(
      3.2rem,
      6.4vw,
      6.8rem
    );

  line-height: .90;
  letter-spacing: -.065em;
  font-weight: 800;
}

.hero-copy h1 span {
  display: block;
  color: var(--blue);
}

.hero-copy h2 {
  max-width: 600px;

  margin: 28px 0 0;

  font-size:
    clamp(
      1.5rem,
      2.4vw,
      2.5rem
    );

  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 600;
}

.hero-copy h2 strong {
  color: var(--orange);
}

.hero-description {
  max-width: 620px;

  margin: 23px 0 0;

  color: var(--muted);

  font-size:
    clamp(
      .98rem,
      1.3vw,
      1.08rem
    );

  line-height: 1.75;
}

.hero-description strong {
  color: var(--black);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span {
  padding: 7px 11px;

  border:
    1px solid rgba(22,119,255,.16);

  border-radius: 999px;

  background:
    rgba(22,119,255,.06);

  color: #145fca;

  font-size: .68rem;
  font-weight: 700;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  margin-top: 28px;

  padding:
    13px 17px 13px 19px;

  border-radius: 9px;

  background: var(--black);
  color: white;

  font-size: .85rem;
  font-weight: 800;

  box-shadow:
    0 5px 0 #000;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.hero-button span {
  display: grid;
  place-items: center;

  width: 28px;
  height: 28px;

  border-radius: 7px;

  background: var(--blue);

  font-size: 1rem;
}

.hero-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 0 #000;
}


/* ============================================================
   HERO PHOTO
   ============================================================ */

.hero-photo {
  position: relative;

  justify-self: center;

  width: min(100%,460px);
}

.photo-frame {
  position: relative;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #e9e0d6,
      #cfc5ba
    );

  box-shadow:
    0 30px 70px rgba(45,30,20,.18);
}

.photo-frame::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      145deg,
      rgba(22,119,255,.08),
      transparent 40%
    );

  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;

  right: -20px;
  bottom: 25px;

  max-width: 240px;

  padding: 15px 18px;

  border-radius: 10px;

  background:
    rgba(17,16,14,.94);

  color: white;

  box-shadow:
    0 15px 35px rgba(0,0,0,.20);
}

.photo-caption span {
  display: block;

  margin-bottom: 5px;

  color: #72aaff;

  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.photo-caption strong {
  font-size: .85rem;
  line-height: 1.2;
}


/* ============================================================
   COMMON SECTIONS
   ============================================================ */

section {
  position: relative;
}

.story-section,
.name-section,
.recognition-section {
  padding: 110px 0;
}

.section-heading {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 20px;

  margin-bottom: 65px;
}

.section-heading.centered {
  display: block;

  max-width: 750px;

  margin-inline: auto;

  text-align: center;
}

.section-number {
  color: var(--blue);

  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.section-heading small,
.problem-heading small,
.leadership-heading small {
  display: block;

  margin-bottom: 12px;

  color: #8a7c70;

  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.section-heading h2 {
  max-width: 800px;

  margin: 0;

  font-size:
    clamp(
      2.1rem,
      4vw,
      4rem
    );

  line-height: 1;
  letter-spacing: -.055em;
}

.section-heading.centered p {
  margin: 22px auto 0;

  color: var(--muted);

  line-height: 1.7;
}


/* ============================================================
   STORY
   ============================================================ */

.story-section {
  background: white;
}

.story-grid {
  display: grid;

  grid-template-columns:
    .8fr
    1.2fr;

  gap: 90px;
}

.big-text {
  margin: 0;

  font-size:
    clamp(
      1.7rem,
      3vw,
      2.8rem
    );

  line-height: 1.2;

  letter-spacing: -.04em;
  font-weight: 700;
}

.story-body p {
  margin: 0 0 23px;

  color: var(--muted);

  line-height: 1.8;
  font-size: 1rem;
}


/* ============================================================
   NAME
   ============================================================ */

.name-section {
  background: var(--cream);
}

.name-story-grid {
  display: grid;

  grid-template-columns:
    .85fr
    1.15fr;

  gap: 80px;

  align-items: center;
}

.name-display {
  padding: 45px 35px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #15130f,
      #29231d
    );

  color: white;

  box-shadow: var(--shadow);
}

.name-big {
  font-size:
    clamp(
      3rem,
      6vw,
      6rem
    );

  font-weight: 800;

  line-height: .9;

  letter-spacing: -.07em;
}

.name-big span {
  color: white;
}

.name-big b {
  color: var(--blue);
}

.name-line {
  width: 70px;
  height: 3px;

  margin:
    25px 0 15px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--orange)
    );
}

.name-display p {
  margin: 0;

  color: #bfb7ae;

  font-size: .85rem;
}

.name-content p {
  margin: 0 0 22px;

  color: var(--muted);

  line-height: 1.8;
}

.name-content strong {
  color: var(--black);
}

.legacy-box {
  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 20px;

  margin-top: 55px;

  padding: 30px;

  border:
    1px solid rgba(22,119,255,.15);

  border-radius: 15px;

  background:
    rgba(22,119,255,.045);
}

.legacy-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--blue);

  color: white;

  font-size: 1.3rem;
}

.legacy-box small {
  color: var(--blue);

  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.legacy-box p {
  margin: 10px 0 0;

  color: var(--muted);

  line-height: 1.7;
}


/* ============================================================
   PROBLEM
   ============================================================ */

.problem-section {
  padding: 110px 0;

  background: #15130f;

  color: white;
}

.problem-layout {
  display: grid;

  grid-template-columns:
    .85fr
    1.15fr;

  gap: 100px;
}

.problem-heading h2 {
  margin: 0;

  font-size:
    clamp(
      2.6rem,
      5vw,
      5.2rem
    );

  line-height: .96;

  letter-spacing: -.06em;
}

.problem-heading h2 span {
  color: var(--blue-light);
}

.problem-copy p {
  margin: 0 0 24px;

  color: #bbb3ab;

  line-height: 1.8;
}

.quote-card {
  margin-top: 40px;

  padding: 30px;

  border-left:
    3px solid var(--blue);

  background:
    rgba(255,255,255,.035);
}

.quote-card > span {
  color: var(--blue-light);

  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.quote-card blockquote {
  margin: 15px 0;

  color: white;

  font-size:
    clamp(
      1.25rem,
      2vw,
      1.7rem
    );

  line-height: 1.4;

  font-weight: 600;
}

.quote-card cite {
  color: #888078;

  font-size: .75rem;
  font-style: normal;
}


/* ============================================================
   VISION
   ============================================================ */

.vision-section {
  padding: 110px 0;

  background:
    linear-gradient(
      135deg,
      #fffaf4,
      #fff0df
    );
}

.vision-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 15px;

  margin-top: 55px;
}

.vision-card {
  position: relative;

  min-height: 280px;

  padding: 28px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background: white;

  box-shadow:
    0 12px 35px rgba(60,35,15,.06);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.vision-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 22px 45px rgba(60,35,15,.11);
}

.vision-index {
  color: #aaa098;

  font-size: .65rem;
  font-weight: 800;
}

.vision-icon {
  margin-top: 40px;

  color: var(--blue);

  font-size: 2rem;
}

.vision-card h3 {
  margin: 20px 0 8px;

  font-size: 1.25rem;
}

.vision-card p {
  margin: 0;

  color: var(--muted);

  font-size: .87rem;

  line-height: 1.65;
}

.vision-statement {
  margin-top: 25px;

  padding: 35px;

  border-radius: 15px;

  background: var(--black);

  color: white;

  text-align: center;
}

.vision-statement span {
  color: var(--blue-light);

  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.vision-statement h3 {
  max-width: 750px;

  margin: 15px auto 0;

  font-size:
    clamp(
      1.3rem,
      2.3vw,
      2.2rem
    );

  line-height: 1.25;
}


/* ============================================================
   RECOGNITION
   ============================================================ */

.recognition-section {
  background: white;
}

.achievement-grid {
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 20px;
}

.achievement-card {
  padding: 35px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background: var(--cream);

  transition:
    transform .2s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;
}

.achievement-label {
  color: var(--blue);

  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.achievement-top strong {
  color: var(--orange);

  font-size: 2.4rem;

  line-height: .8;

  letter-spacing: -.05em;
}

.achievement-card h3 {
  margin: 35px 0 15px;

  font-size: 1.5rem;
}

.achievement-card p {
  color: var(--muted);

  line-height: 1.75;
}

.achievement-footer {
  margin-top: 25px;

  color: #92867b;

  font-size: .7rem;
  font-weight: 700;
}


/* ============================================================
   CERTIFICATES
   ============================================================ */

.certificates-heading {
  margin-top: 80px;
  margin-bottom: 25px;
}

.certificates-heading small {
  color: var(--blue);

  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.certificates-heading h3 {
  margin: 8px 0 0;

  font-size: 2rem;

  letter-spacing: -.04em;
}

.certificate-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 16px;
}

.certificate-card {
  margin: 0;

  overflow: hidden;

  border-radius: 13px;

  background: var(--cream);

  cursor: zoom-in;
}

.certificate-card img {
  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition:
    transform .35s ease;
}

.certificate-card:hover img {
  transform: scale(1.035);
}

.certificate-card figcaption {
  padding:
    14px 16px;

  color: var(--muted);

  font-size: .73rem;
  font-weight: 700;
}


/* ============================================================
   LEADERSHIP
   ============================================================ */

.leadership-section {
  padding: 110px 0;

  background: var(--cream);
}

.leadership-layout {
  display: grid;

  grid-template-columns:
    .9fr
    1.1fr;

  gap: 100px;
}

.leadership-heading h2 {
  margin: 0;

  font-size:
    clamp(
      2.5rem,
      4.8vw,
      5rem
    );

  line-height: .98;

  letter-spacing: -.06em;
}

.leadership-heading h2 span {
  color: var(--blue);
}

.leadership-content > p {
  margin: 0 0 35px;

  color: var(--muted);

  line-height: 1.8;
}

.leadership-card {
  padding: 35px;

  border-radius: 15px;

  background: white;

  border:
    1px solid var(--border);

  box-shadow:
    0 15px 40px rgba(60,35,15,.06);
}

.leadership-role {
  color: var(--blue);

  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.leadership-card h3 {
  margin: 13px 0 17px;

  font-size: 1.5rem;

  letter-spacing: -.035em;
}

.leadership-card p {
  color: var(--muted);

  line-height: 1.75;
}


/* ============================================================
   PHILOSOPHY
   ============================================================ */

.philosophy-section {
  padding: 120px 0;

  background:
    linear-gradient(
      135deg,
      #11100e,
      #201b17
    );

  color: white;

  text-align: center;
}

.philosophy-inner {
  max-width: 850px;

  margin: auto;
}

.philosophy-inner > span {
  color: var(--blue-light);

  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.philosophy-inner h2 {
  margin: 20px 0;

  font-size:
    clamp(
      3rem,
      6vw,
      6rem
    );

  line-height: .95;

  letter-spacing: -.065em;
}

.philosophy-inner p {
  max-width: 700px;

  margin: 0 auto;

  color: #aaa19a;

  line-height: 1.8;
}

.final-name {
  display: inline-block;

  margin-top: 45px;

  padding-top: 16px;

  border-top:
    2px solid var(--blue);

  color: white;

  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
}


/* ============================================================
   CTA
   ============================================================ */

.founder-cta-section {
  padding: 50px 0;

  background: var(--blue);

  color: white;
}

.cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;
}

.cta-inner small {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.cta-inner h2 {
  margin: 10px 0 7px;

  font-size:
    clamp(
      1.8rem,
      3vw,
      3rem
    );

  line-height: 1;

  letter-spacing: -.05em;
}

.cta-inner p {
  margin: 0;

  color: rgba(255,255,255,.75);
}

.cta-button {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  flex-shrink: 0;

  padding: 14px 18px;

  border-radius: 9px;

  background: white;

  color: var(--black);

  font-size: .82rem;
  font-weight: 800;

  transition:
    transform .2s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button span {
  color: var(--blue);

  font-size: 1.1rem;
}


/* ============================================================
   LIGHTBOX
   IMPORTANT:
   HIDDEN MUST WIN OVER DISPLAY GRID
   ============================================================ */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 1000;

  display: grid;

  place-items: center;

  padding: 25px;

  background:
    rgba(0,0,0,.90);
}

/* THIS IS THE MAIN FIX */

.lightbox[hidden],
#lightbox[hidden] {
  display: none !important;

  visibility: hidden !important;

  opacity: 0 !important;

  pointer-events: none !important;
}

/* Only visible when JS removes hidden */

.lightbox:not([hidden]) {
  display: grid;

  visibility: visible;

  opacity: 1;

  pointer-events: auto;
}

.lightbox img {
  max-width:
    min(100%,1000px);

  max-height: 90vh;

  object-fit: contain;

  border-radius: 8px;
}

.lightbox-close {
  position: absolute;

  top: 18px;
  right: 20px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: white;

  color: black;

  font-size: 1.8rem;

  line-height: 1;

  cursor: pointer;

  z-index: 1001;
}

.lightbox-close:hover {
  transform: scale(1.05);
}


/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0;

  transform:
    translateY(24px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* ============================================================
   IMAGE ERROR
   ============================================================ */

.image-error {
  opacity: .35;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns:
      1fr
      minmax(300px,.8fr);

    gap: 35px;
  }

  .hero-copy h1 {
    font-size:
      clamp(
        3rem,
        7vw,
        5rem
      );
  }

  .story-grid,
  .name-story-grid,
  .problem-layout,
  .leadership-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .vision-grid {
    grid-template-columns:
      repeat(2,1fr);
  }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 650px) {

  .container {
    width:
      min(
        calc(100% - 30px),
        550px
      );
  }

  .header-inner {
    width:
      calc(100% - 30px);
  }

  .header-cta {
    display: none;
  }

  .founder-hero {
    min-height: auto;
  }

  .hero-grid {
    display: flex;

    flex-direction: column-reverse;

    align-items: stretch;

    gap: 35px;

    padding:
      50px 0 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;

    font-size: .6rem;
  }

  .hero-copy h1 {
    font-size:
      clamp(
        2.8rem,
        13vw,
        4.2rem
      );
  }

  .hero-copy h2 {
    font-size: 1.45rem;
  }

  .hero-description {
    font-size: .93rem;
    line-height: 1.65;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-button {
    margin-top: 22px;
  }

  .hero-photo {
    width:
      min(
        100%,
        390px
      );

    margin-inline: auto;
  }

  .photo-caption {
    right: 8px;
    bottom: 12px;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 8px;

    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size:
      clamp(
        2rem,
        10vw,
        3rem
      );
  }

  .story-section,
  .name-section,
  .recognition-section,
  .leadership-section,
  .vision-section {
    padding:
      75px 0;
  }

  .problem-section {
    padding:
      75px 0;
  }

  .problem-layout {
    gap: 40px;
  }

  .problem-heading h2 {
    font-size:
      clamp(
        2.5rem,
        12vw,
        4rem
      );
  }

  .name-display {
    padding: 35px 25px;
  }

  .name-big {
    font-size:
      clamp(
        3rem,
        17vw,
        5rem
      );
  }

  .legacy-box {
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .vision-grid {
    grid-template-columns: 1fr;

    margin-top: 35px;
  }

  .vision-card {
    min-height: 220px;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-card img {
    aspect-ratio: 16 / 11;
  }

  .leadership-layout {
    gap: 40px;
  }

  .leadership-heading h2 {
    font-size:
      clamp(
        2.5rem,
        12vw,
        4rem
      );
  }

  .philosophy-section {
    padding:
      85px 0;
  }

  .philosophy-inner h2 {
    font-size:
      clamp(
        2.8rem,
        14vw,
        4.5rem
      );
  }

  .cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .cta-button {
    width: 100%;

    justify-content: center;
  }

  /* LIGHTBOX MOBILE */

  .lightbox {
    padding: 15px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 85vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;

    width: 42px;
    height: 42px;
  }
}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 390px) {

  .container {
    width:
      calc(100% - 24px);
  }

  .hero-grid {
    padding-top: 35px;
  }

  .hero-copy h1 {
    font-size:
      clamp(
        2.5rem,
        13.5vw,
        3.4rem
      );
  }

  .hero-copy h2 {
    font-size: 1.3rem;
  }

  .hero-tags span {
    font-size: .6rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .achievement-card,
  .leadership-card {
    padding: 25px;
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  * {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;
  }
}