:root {
  --ink: #141412;
  --night: #0d1210;
  --paper: #f7f2e9;
  --shell: #fffaf1;
  --line: rgba(20, 20, 18, 0.16);
  --muted: #666158;
  --teal: #16736b;
  --teal-dark: #0e4b47;
  --moss: #6d7f44;
  --copper: #bc672d;
  --clay: #a8423f;
  --plum: #4a2939;
  --blue: #1f5f8d;
  --gold: #e0a94d;
  --shadow: 0 22px 70px rgba(21, 18, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf1;
  background: var(--night);
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.9) 0%, rgba(13, 18, 16, 0.68) 43%, rgba(13, 18, 16, 0.18) 100%),
    url("assets/jeff-headshot.jpeg") center right 21% / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(13, 18, 16, 0), rgba(13, 18, 16, 0.86));
}

.nav {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px clamp(18px, 5vw, 76px);
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  color: #fffaf1;
  background: rgba(13, 18, 16, 0.22);
  backdrop-filter: blur(18px);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 126px;
}

.eyebrow,
.kicker,
.tile__label {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .kicker,
.section--dark .tile__label,
.section--music .kicker {
  color: #f0b867;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(4rem, 10vw, 9.5rem);
}

h2 {
  max-width: 880px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
}

.hero__summary {
  max-width: 760px;
  margin: 26px 0 0;
  color: #eee3d2;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button--primary {
  background: #fffaf1;
  color: var(--ink);
}

.button--secondary {
  border: 1px solid rgba(255, 250, 241, 0.42);
  color: #fffaf1;
}

.hero__rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.1);
}

.hero__rail span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  color: #fff5e5;
  background: rgba(13, 18, 16, 0.46);
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--shell);
}

.intro-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
  padding: 46px 0;
}

.identity-links {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.8fr);
  gap: 18px;
  padding: 0 0 34px;
}

.identity-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.identity-group span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-link-row,
.identity-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.identity-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  background: var(--paper);
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 86px 0;
}

.section--hub {
  background:
    linear-gradient(180deg, rgba(22, 115, 107, 0.1), rgba(247, 242, 233, 0)),
    var(--paper);
}

.section--hub .split-heading p:last-child {
  color: var(--muted);
}

.section__heading {
  margin-bottom: 28px;
}

.hub-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hub-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(20, 20, 18, 0.15);
  border-radius: 8px;
  text-decoration: none;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.hub-card--primary {
  grid-row: span 2;
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(14, 75, 71, 0.96), rgba(31, 95, 141, 0.94) 54%, rgba(20, 20, 18, 0.98)),
    var(--teal-dark);
}

.hub-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-card--primary span {
  color: #f0b867;
}

.hub-card strong {
  display: block;
  font-size: 1.34rem;
  line-height: 1.1;
}

.hub-card p {
  margin: 0;
  color: var(--muted);
}

.hub-card--primary p {
  color: #d9eee9;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tile-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile-grid--jitr {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.tile,
.video-tile,
.hub-card,
.mini-grid a,
.spotlight,
.jitr-console,
.project-card,
.music-links a {
  border: 1px solid rgba(20, 20, 18, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tile {
  min-height: 248px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  text-decoration: none;
  background: var(--shell);
}

.tile--lead {
  background: var(--teal-dark);
  color: #fffaf1;
}

.tile--lead .tile__label {
  color: #f0b867;
}

.tile--lead span:last-child,
.tile--inverted span:last-child {
  color: #d7eee7;
}

.tile--wide {
  grid-column: span 1;
}

.tile strong,
.video-tile strong,
.mini-grid strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.tile span:last-child {
  color: var(--muted);
}

.tile--inverted span:last-child {
  color: #d7eee7;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  background: #151b19;
  color: #fffaf1;
}

.spotlight p:last-child {
  color: #d9d1c2;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.recruiter-targets {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(20, 20, 18, 0.15);
  border-radius: 8px;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.recruiter-targets__copy p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.target-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: start;
}

.target-cloud span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(20, 20, 18, 0.14);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 900;
  background: #f4ead9;
}

.section--dark {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(14, 75, 71, 0.96), rgba(20, 20, 18, 0.98) 58%, rgba(74, 41, 57, 0.96)),
    var(--night);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.split-heading p:last-child {
  margin: 0 0 8px;
  color: #e8dece;
  font-size: 1.1rem;
}

.tile--inverted {
  border-color: rgba(255, 250, 241, 0.17);
  background: rgba(255, 250, 241, 0.1);
  color: #fffaf1;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.jitr-console {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 16px;
  padding: 24px;
  border-color: rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.console-main p:last-child {
  max-width: 760px;
  color: #e8dece;
  font-size: 1.05rem;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.console-metrics span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
  color: #fff5e5;
  background: rgba(13, 18, 16, 0.32);
}

.video-tile {
  min-height: 248px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #fffaf1;
  background:
    linear-gradient(140deg, rgba(168, 66, 63, 0.92), rgba(20, 20, 18, 0.94)),
    #87342f;
}

.video-tile--green {
  background:
    linear-gradient(140deg, rgba(109, 127, 68, 0.94), rgba(14, 75, 71, 0.94)),
    #4f612f;
}

.video-tile--amber {
  background:
    linear-gradient(140deg, rgba(188, 103, 45, 0.96), rgba(74, 41, 57, 0.94)),
    #8f4f28;
}

.video-tile--blue {
  background:
    linear-gradient(140deg, rgba(31, 95, 141, 0.96), rgba(13, 18, 16, 0.94)),
    #1f5f8d;
}

.play {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.52);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.16);
}

.play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fffaf1;
}

.section--mtnb {
  background: #ebe4d7;
}

.section--appearances {
  background: #f1ede4;
}

.section--appearances .split-heading p:last-child {
  color: var(--muted);
}

.appearance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.appearance-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(20, 20, 18, 0.15);
  border-radius: 8px;
  text-decoration: none;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.appearance-card--feature {
  grid-column: span 2;
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(31, 95, 141, 0.95), rgba(14, 75, 71, 0.94) 52%, rgba(20, 20, 18, 0.98)),
    var(--teal-dark);
}

.appearance-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.appearance-card--feature span {
  color: #f0b867;
}

.appearance-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.appearance-card p {
  margin: 0;
  color: var(--muted);
}

.appearance-card--feature p {
  color: #d9eee9;
}

.section--music {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(74, 41, 57, 0.97), rgba(20, 20, 18, 0.98) 58%, rgba(188, 103, 45, 0.88)),
    #241923;
}

.section--music .split-heading p:last-child {
  color: #eadfd7;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  text-decoration: none;
  color: #fffaf1;
  background: #11100e;
}

.project-card--large {
  grid-row: span 2;
  min-height: 636px;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 16, 0.06), rgba(13, 18, 16, 0.86));
}

.project-card span,
.project-card strong {
  position: relative;
  z-index: 1;
}

.project-card span,
.music-links span {
  margin-bottom: 8px;
  color: #f0b867;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card strong {
  max-width: 520px;
  font-size: clamp(1.25rem, 2vw, 2.05rem);
}

.music-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.music-links a {
  min-height: 126px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  background: var(--shell);
}

.section--creative {
  color: #fffaf1;
  background: var(--plum);
}

.creative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.creative-copy p:last-child {
  max-width: 680px;
  color: #eadfd7;
  font-size: 1.1rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-grid a {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  text-decoration: none;
  background: #fffaf1;
  color: var(--ink);
}

.mini-grid span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-strip {
  background: var(--night);
  color: #fffaf1;
}

.search-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 22px 0;
}

.search-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  color: #f4ead9;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer {
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  background: #090d0c;
  color: #fffaf1;
}

.footer__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: #f0b867;
  font-weight: 900;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

@media (hover: hover) {
  .tile,
  .video-tile,
.hub-card,
  .mini-grid a,
  .identity-links a,
  .nav a,
  .button {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .tile:hover,
  .video-tile:hover,
.hub-card:hover,
  .mini-grid a:hover,
  .identity-links a:hover,
  .music-links a:hover,
  .button:hover {
    transform: translateY(-3px);
  }

  .project-card:hover img {
    opacity: 0.96;
    transform: scale(1.04);
  }

  .nav a:hover {
    border-color: rgba(255, 250, 241, 0.62);
  }
}

@media (max-width: 1040px) {
  .tile-grid--four,
  .tile-grid--jitr,
  .hub-grid,
  .appearance-grid,
  .project-grid,
  .music-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .identity-links,
  .spotlight,
  .recruiter-targets,
  .split-heading,
  .creative-grid,
  .jitr-console {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .identity-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card--large {
    grid-row: span 1;
    min-height: 310px;
  }

  .appearance-card--feature {
    grid-column: span 2;
  }

  .hub-card--primary {
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .wrap,
  .hero__content {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 88svh;
  }

  .hero__image {
    background:
      linear-gradient(180deg, rgba(13, 18, 16, 0.38) 0%, rgba(13, 18, 16, 0.9) 66%),
      url("assets/jeff-headshot.jpeg") center top / cover no-repeat;
  }

  .nav {
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    flex-wrap: wrap;
  }

  .nav a {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .hero__content {
    padding: 210px 0 92px;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.7rem);
  }

  .hero__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 14px;
  }

  .hero__rail span {
    min-height: 48px;
    font-size: 0.82rem;
  }

  .hero__actions .button,
  .tile-grid,
  .tile-grid--four,
  .tile-grid--jitr,
  .hub-grid,
  .appearance-grid,
  .mini-grid,
  .project-grid,
  .music-links {
    grid-template-columns: 1fr;
  }

  .appearance-card--feature {
    grid-column: span 1;
  }

  .hero__actions .button {
    width: 100%;
  }

  .identity-links {
    padding-bottom: 28px;
  }

  .identity-link-row,
  .identity-link-grid {
    grid-template-columns: 1fr;
  }

  .identity-link-row a,
  .identity-link-grid a {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .tile,
  .video-tile {
    min-height: 220px;
  }

  .spotlight {
    padding: 18px;
  }

  .jitr-console {
    padding: 18px;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--large {
    min-height: 270px;
  }
}
