/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Archivo, Helvetica, Arial, sans-serif; color: #111; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Utility ── */
.mono { font-family: 'IBM Plex Mono', monospace; }
.content-wrap {
  max-width: 1120px;
  margin-inline: auto;
  width: 100%;
}

/* ── Nav ── */
.site-nav {
  background: #111;
  color: #fff;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}
.site-nav__wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav__links a:hover { opacity: 0.65; }
.site-nav__cta {
  border: 1px solid #F7F76B;
  color: #F7F76B;
  padding: 9px 16px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.site-nav__cta:hover {
  background: #F7F76B;
  color: #111;
  opacity: 1;
}
.site-nav__mobile-right {
  display: none;
  align-items: center;
  gap: 14px;
}
.site-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 0;
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.site-nav__hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ── Mobile menu overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 200;
  flex-direction: column;
  padding: 20px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 12px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.mobile-menu__links a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid #333;
}

/* ── Hero ── */
.hero {
  background: #111;
  color: #fff;
}
.hero__inner {
  padding: 96px 48px 0;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8C877E;
}
.hero__heading {
  margin-top: 32px;
  font-size: 96px;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #F7F76B;
  max-width: 900px;
}
.hero__body {
  margin-top: 32px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
  color: #D6D2C9;
}
.hero__ctas {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.hero__cta-primary {
  background: #F7F76B;
  color: #111;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s;
}
.hero__cta-primary:hover { background: #fff; opacity: 1; }
.hero__cta-secondary {
  border: 1px solid #555;
  color: #fff;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.15s;
}
.hero__cta-secondary:hover { border-color: #fff; opacity: 1; }

/* ── Stat strip ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #333;
  margin-top: 80px;
}
.stats__item { padding: 28px 48px; }
.stats__item:not(:last-child) { border-right: 1px solid #333; }
.stats__number { font-size: 38px; font-weight: 700; }
.stats__number--yellow { color: #F7F76B; }
.stats__number--blue { color: #86CFFF; }
.stats__number--coral { color: #FA8080; }
.stats__label { font-size: 13px; color: #8C877E; margin-top: 4px; }

/* ── Philosophy ── */
.philosophy {
  border-bottom: 2px solid #111;
}
.philosophy .content-wrap {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
.philosophy__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B665E;
}
.philosophy__content { display: flex; flex-direction: column; gap: 24px; }
.philosophy__quote {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.philosophy__highlight { background: #F7F76B; padding: 0 8px; }
.philosophy__body {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
  color: #43403A;
}

/* ── Services ── */
.services .content-wrap { padding: 72px 48px; }
.services__heading {
  margin-bottom: 36px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 280px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 2px solid #111;
  align-items: baseline;
}
.service-row:last-child { border-bottom: 2px solid #111; }
.service-row__number { font-size: 13px; }
.service-row__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-bottom: 4px solid currentColor;
  align-self: start;
  padding-bottom: 4px;
  width: fit-content;
}
.service-row__name--yellow { color: #111; border-color: #F7F76B; }
.service-row__name--blue { color: #111; border-color: #86CFFF; }
.service-row__name--coral { color: #111; border-color: #FA8080; }
.service-row__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #43403A;
}

/* ── Incubation ── */
.incubation {
  background: #86CFFF;
  border-top: 2px solid #111;
}
.incubation .content-wrap {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.incubation__pitch { display: flex; flex-direction: column; gap: 22px; }
.incubation__heading {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.incubation__body {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
}
.incubation__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.incubation__bullet {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.incubation__bullet-arrow { font-size: 12px; }

/* ── Spotlight card ── */
.spotlight {
  background: #fff;
  border: 2px solid #111;
  box-shadow: 8px 8px 0 #111;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.spotlight__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spotlight__tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #F7F76B;
  padding: 5px 10px;
}
.spotlight__logo { height: 40px; width: auto; }
.spotlight__name {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.spotlight__tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4703F;
  margin-top: -10px;
}
.spotlight__body {
  font-size: 15px;
  line-height: 1.55;
  color: #43403A;
}
.spotlight__link {
  border-top: 2px solid #111;
  padding-top: 14px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.spotlight__link:hover { opacity: 0.65; }

/* ── Team ── */
.team {
  background: #F5F3EE;
}
.team .content-wrap {
  padding: 72px 48px;
}
.team__heading {
  margin-bottom: 36px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: #fff;
  border: 2px solid #111;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-card__photo {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}
.team-card__name { font-size: 20px; font-weight: 700; }
.team-card__bio { font-size: 14px; line-height: 1.5; color: #55514A; }

/* ── Reach Out ── */
.reach-out {
  background: #111;
  color: #fff;
}
.reach-out .content-wrap {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.reach-out__heading {
  font-size: 64px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #F7F76B;
}
.reach-out__links { display: flex; flex-direction: column; gap: 18px; }
.reach-out__primary {
  border-bottom: 2px solid #F7F76B;
  padding-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.reach-out__primary:hover { opacity: 0.65; }
.reach-out__secondary {
  border-bottom: 2px solid #555;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.reach-out__secondary:hover { opacity: 0.65; }
.reach-out__secondary-label { font-size: 13px; color: #8C877E; }

/* ── Footer ── */
.site-footer {
  background: #000;
  color: #8C877E;
  font-family: 'IBM Plex Mono', monospace;
}
.site-footer .content-wrap {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.site-footer__mobile-text { display: none; }

/* ══════════════════════════════════════════
   Mobile — breakpoint at 768px
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .site-nav .content-wrap { padding: 16px 20px; }
  .site-nav__wordmark { font-size: 19px; }
  .site-nav__links { display: none; }
  .site-nav__mobile-right { display: flex; }
  .site-nav__mobile-cta {
    border: 1px solid #F7F76B;
    color: #F7F76B;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hero */
  .hero__inner { padding: 48px 20px 0; }
  .hero__eyebrow { font-size: 10px; }
  .hero__heading {
    margin-top: 20px;
    font-size: 46px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }
  .hero__body { margin-top: 20px; font-size: 15px; line-height: 1.55; }
  .hero__ctas {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
  .hero__cta-primary,
  .hero__cta-secondary {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
  }

  /* Stats */
  .stats { margin-top: 40px; }
  .stats__item { padding: 16px 12px 18px; text-align: center; }
  .stats__number { font-size: 22px; }
  .stats__label { font-size: 10px; margin-top: 2px; line-height: 1.3; }

  /* Philosophy */
  .philosophy .content-wrap {
    padding: 44px 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .philosophy__eyebrow { font-size: 11px; }
  .philosophy__quote { font-size: 24px; letter-spacing: -0.02em; }
  .philosophy__body { font-size: 15px; }

  /* Services */
  .services .content-wrap { padding: 44px 20px; }
  .services__heading { font-size: 30px; letter-spacing: -0.03em; margin-bottom: 20px; }
  .service-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 20px 0;
  }
  .service-row__number { font-size: 12px; }
  .service-row__name { font-size: 21px; padding-bottom: 3px; }
  .service-row__list { grid-column: 1 / -1; font-size: 14px; gap: 6px; margin-top: 6px; }

  /* Incubation */
  .incubation .content-wrap {
    padding: 44px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .incubation__heading { font-size: 30px; letter-spacing: -0.03em; }
  .incubation__body { font-size: 15px; line-height: 1.55; }
  .incubation__bullets { display: none; }

  /* Spotlight */
  .spotlight {
    box-shadow: 6px 6px 0 #111;
    padding: 20px;
    gap: 14px;
  }
  .spotlight__tag { font-size: 10px; padding: 4px 8px; }
  .spotlight__logo { height: 32px; }
  .spotlight__name { font-size: 26px; }
  .spotlight__tagline { font-size: 10px; margin-top: -8px; }
  .spotlight__body { font-size: 13px; }
  .spotlight__link {
    font-size: 14px;
    padding-top: 12px;
    min-height: 44px;
    align-items: center;
  }

  /* Team */
  .team .content-wrap { padding: 44px 20px; }
  .team__heading { font-size: 30px; letter-spacing: -0.03em; margin-bottom: 20px; }
  .team__grid { grid-template-columns: 1fr; gap: 16px; }
  .team-card {
    padding: 16px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
  }
  .team-card__photo { width: 64px; height: 64px; }
  .team-card__name { font-size: 17px; }
  .team-card__bio { font-size: 13px; line-height: 1.45; margin-top: 3px; }

  /* Reach Out */
  .reach-out .content-wrap {
    padding: 44px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reach-out__heading {
    font-size: 40px;
    letter-spacing: -0.04em;
  }
  .reach-out__heading br { display: none; }
  .reach-out__primary {
    font-size: 18px;
    min-height: 44px;
    align-items: flex-end;
  }
  .reach-out__secondary {
    font-size: 15px;
    min-height: 44px;
    align-items: flex-end;
  }
  .reach-out__secondary-label { font-size: 11px; }

  /* Footer — merged into reach-out on mobile */
  .site-footer { background: #111; }
  .site-footer .content-wrap {
    padding: 0 20px 44px;
    color: #8C877E;
    flex-direction: column;
    gap: 0;
    font-size: 11px;
    line-height: 1.6;
  }
  .site-footer__address { display: none; }
  .site-footer__copy { display: none; }
  .site-footer__mobile-text { display: block !important; }
}
