:root {
  color-scheme: light;
  --ink: #151719;
  --paper: #f3f0e8;
  --surface: #fffdf7;
  --muted: #65665f;
  --line: #c9c5ba;
  --accent: #c8472c;
  --accent-dark: #96321e;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.025em;
}

.mnj-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 0 0 auto;
  width: 3.35rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid currentcolor;
  box-shadow: 0.2rem 0.2rem 0 var(--accent);
  transform: rotate(-2deg);
}

.mnj-mark > span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-right: 1px solid currentcolor;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.mnj-mark > span:last-child {
  border-right: 0;
}

.mnj-mark-header {
  width: 3.1rem;
}

.mnj-mark-inverse {
  color: var(--surface);
  background: transparent;
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
}

nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

nav a,
.profile-links a {
  position: relative;
}

nav a::after,
.profile-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
.profile-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0 clamp(3.5rem, 8vh, 6rem);
}

.hero::before {
  position: absolute;
  top: 2rem;
  right: -10vw;
  width: min(45vw, 36rem);
  height: min(45vw, 36rem);
  border: 1px solid rgb(21 23 25 / 9%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 3rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.availability span {
  width: 0.65rem;
  height: 0.65rem;
  background: #1a7f50;
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgb(26 127 80 / 13%);
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7vw, 6.65rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-summary {
  max-width: 43rem;
  margin: 2.25rem 0 0;
  color: #3f403c;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary:hover {
  color: var(--surface);
  background: var(--ink);
}

.profile-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.profile-links a {
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-evidence {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: var(--surface);
  background: var(--ink);
  box-shadow: 1rem 1rem 0 var(--accent);
}

.evidence-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.evidence-label {
  margin: 0;
  color: #cbc8be;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-number {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid rgb(255 253 247 / 25%);
}

.evidence-number strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.75rem;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.evidence-number span {
  color: #d9d6cd;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-evidence ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-evidence li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgb(255 253 247 / 14%);
  font-size: 0.86rem;
}

.hero-evidence li:last-child {
  border: 0;
  padding-bottom: 0;
}

.hero-evidence li span {
  color: #df765f;
  font-size: 0.7rem;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--surface);
  background: var(--accent-dark);
}

.proof-strip p {
  margin: 0;
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid rgb(255 253 247 / 32%);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip p:last-child {
  border: 0;
}

.section-shell {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 10rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.65fr);
  gap: 2rem 5rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

h2 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5.3vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child {
  margin: 0;
  color: #4f504b;
  font-size: 1.03rem;
}

.project-list {
  display: grid;
  gap: clamp(7rem, 14vw, 12rem);
}

.project-card {
  display: grid;
  grid-template-columns: minmax(19rem, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.project-card-reverse .project-copy {
  grid-column: 2;
}

.project-card-reverse .project-visual {
  grid-row: 1;
  grid-column: 1;
}

.project-kicker {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.project-kicker::after {
  margin-left: auto;
  padding: 0.2rem 0.35rem;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  content: "MNJ";
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  transform: rotate(-2deg);
}

.project-kicker span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--surface);
  background: var(--accent-dark);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.project-kicker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4vw, 4.35rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.project-summary {
  margin: 1.25rem 0 2rem;
  color: #454640;
  font-size: 1.05rem;
}

.project-details {
  margin: 0;
  border-top: 1px solid var(--line);
}

.project-details div {
  display: grid;
  grid-template-columns: 5.75rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.project-details dt {
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-details dd {
  margin: 0;
  color: #454640;
  font-size: 0.92rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.project-links {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.project-links a {
  font-size: 0.84rem;
  font-weight: 800;
  text-underline-offset: 0.35rem;
  text-decoration-thickness: 2px;
}

.private-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.project-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #ded8cb;
  box-shadow: 1rem 1rem 0 rgb(21 23 25 / 12%);
}

.vera-visual {
  padding: clamp(1.1rem, 3vw, 2.3rem);
  background: #b9d5c5;
}

.visual-window {
  overflow: hidden;
  border: 1px solid #27322d;
  background: #f8f7f1;
  box-shadow: 0 1.1rem 2rem rgb(39 50 45 / 18%);
}

.visual-toolbar {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.8rem;
  color: #4f5551;
  background: #e7e9e4;
  border-bottom: 1px solid #bdc6bf;
}

.visual-toolbar span {
  width: 0.45rem;
  height: 0.45rem;
  background: #7b847e;
  border-radius: 50%;
}

.visual-toolbar b {
  margin-left: auto;
  font-size: 0.54rem;
  letter-spacing: 0.09em;
}

.vera-body {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.35fr) 1fr;
  min-height: 25rem;
}

.vera-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 0.8rem;
  color: #eff5f1;
  background: #183e32;
}

.vera-sidebar strong {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.vera-sidebar span {
  padding: 0.45rem 0.5rem;
  border-radius: 0.2rem;
  font-size: 0.55rem;
}

.vera-sidebar .active {
  color: #183e32;
  background: #d7e9df;
  font-weight: 800;
}

.vera-main {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.2rem;
}

.vera-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #d7dad5;
}

.vera-title b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.vera-title small,
.vera-row small {
  color: #626762;
  font-size: 0.52rem;
}

.vera-panel small {
  color: #c4ccc7;
  font-size: 0.52rem;
}

.vera-row {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid #d6d9d3;
  background: white;
}

.vera-row b {
  font-size: 0.62rem;
}

.status {
  padding: 0.25rem;
  border-radius: 999px;
  font-size: 0.46rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.ready { color: #18513f; background: #d8f0e5; }
.review { color: #852b1a; background: #f5d8d2; }
.active-status { color: #344c79; background: #dce6f7; }

.vera-panel {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.4rem;
  padding: 1rem;
  color: white;
  background: #1c2824;
}

.vera-panel b { font-size: 0.7rem; }
.vera-panel i { width: 75%; height: 0.3rem; background: #db806a; }

.pipeline-visual {
  padding: clamp(1.1rem, 3vw, 2.4rem);
  color: #f9f4eb;
  background: #202225;
}

.pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.pipeline-head b {
  padding: 0.35rem 0.55rem;
  color: #1c1d1f;
  background: #f0ad9f;
  border-radius: 999px;
}

.pipeline-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1.25rem 0.8rem;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.pipeline-steps li > span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid #7a7c7f;
  border-radius: 50%;
  font-size: 0.55rem;
}

.pipeline-steps div {
  display: grid;
  gap: 0.15rem;
}

.pipeline-steps b { font-size: 0.75rem; }
.pipeline-steps small { color: #b9b8b3; font-size: 0.6rem; }
.pipeline-steps i { color: #8fbca5; font-size: 0.55rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.pipeline-steps .pipeline-current { margin: 0 -0.8rem; padding-right: 1.6rem; padding-left: 1.6rem; background: #32353a; }
.pipeline-steps .pipeline-current > span { color: #201d1b; background: #f0ad9f; border-color: #f0ad9f; }
.pipeline-steps .pipeline-current i { color: #f0ad9f; }

.music-visual {
  display: grid;
  padding: clamp(1.2rem, 3vw, 2.7rem);
  place-items: center;
  background: #d77762;
}

.music-screen {
  width: min(100%, 21rem);
  padding: 1.1rem;
  color: #f5f1ea;
  background: #17191c;
  border: 0.35rem solid #0b0c0e;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgb(37 18 15 / 30%);
}

.music-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.55rem;
}

.album-art {
  display: grid;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  place-items: center;
  background: repeating-linear-gradient(125deg, #d77762 0 1.1rem, #eab05b 1.1rem 2.2rem, #446562 2.2rem 3.3rem, #192c33 3.3rem 4.4rem);
}

.album-art span {
  padding: 0.8rem;
  color: #17191c;
  background: #f5f1ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 0.9;
}

.music-screen > small { color: #d77762; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.1em; }
.music-screen h4 { margin: 0.25rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 400; }
.music-screen > p { margin: 0.25rem 0 1rem; color: #a5a6a7; font-size: 0.63rem; }
.song-row { display: grid; grid-template-columns: 1.5rem 1fr auto; padding: 0.6rem 0; border-top: 1px solid #34373a; font-size: 0.58rem; }
.song-row span,.song-row small { color: #85878a; }
.player-row { display: grid; grid-template-columns: 2rem 1fr 1.5rem; gap: 0.6rem; align-items: center; margin: 0.8rem -0.55rem -0.55rem; padding: 0.7rem; background: #2b2e32; }
.player-row > span { display: grid; aspect-ratio: 1; place-items: center; color: #d77762; background: #f2ab64; }
.player-row div { display: grid; gap: 0.35rem; }
.player-row b { font-size: 0.58rem; }
.player-row i { width: 70%; height: 0.18rem; background: #d77762; }
.player-row strong { font-size: 0.8rem; }

.fund-visual {
  padding: clamp(1.1rem, 3vw, 2.4rem);
  background: #e6d8ae;
}

.fund-card {
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid #4f4a3c;
  box-shadow: 0 1rem 2rem rgb(79 74 60 / 18%);
}

.fund-image {
  display: grid;
  min-height: 13rem;
  place-items: end start;
  padding: 1.3rem;
  color: #fffdf7;
  background: linear-gradient(145deg, transparent 40%, rgb(10 30 32 / 35%)), repeating-linear-gradient(45deg, #315f5c 0 2rem, #244947 2rem 4rem);
}

.fund-image span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 0.9;
}

.fund-content { padding: 1.25rem; }
.fund-content > small { color: #8b3f2d; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.09em; }
.fund-content h4 { max-width: 20ch; margin: 0.45rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 400; line-height: 1.05; }
.fund-progress { height: 0.4rem; background: #dedbd1; }
.fund-progress i { display: block; width: 74%; height: 100%; background: #9c4632; }
.fund-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 0.85rem; }
.fund-stats p { display: grid; gap: 0.1rem; margin: 0; }
.fund-stats b { font-size: 0.7rem; }
.fund-stats span { color: #77756f; font-size: 0.5rem; }
.fund-content button { width: 100%; margin-top: 1rem; padding: 0.7rem; color: white; background: #1e4c49; border: 0; font-size: 0.62rem; font-weight: 800; }

.experience {
  border-top: 1px solid var(--line);
}

.experience-list {
  border-top: 1px solid var(--ink);
}

.experience-item {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(16rem, 0.75fr) minmax(20rem, 1.2fr);
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
}

.experience-meta p,
.experience-role p {
  margin: 0 0 0.3rem;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.experience-role h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.experience-item ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  color: #454640;
  list-style: none;
}

.experience-item li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
}

.experience-item li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.skills {
  color: var(--surface);
  background: var(--ink);
}

.skills-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(4rem, 9vw, 8rem);
}

.skills .eyebrow {
  color: #ef8c76;
}

.skills h2 {
  max-width: 12ch;
}

.skills-intro > p:last-child {
  max-width: 34rem;
  margin: 1.75rem 0 0;
  color: #c5c3bb;
}

.skill-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgb(255 255 255 / 26%);
}

.skill-groups article {
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.skill-groups article:nth-child(even) {
  padding-right: 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgb(255 255 255 / 20%);
}

.skill-groups article > p {
  margin: 0 0 1rem;
  color: #ef8c76;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skill-groups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-groups li {
  padding: 0.35rem 0.55rem;
  color: #e7e4dc;
  background: #2b2e31;
  border-radius: 0.2rem;
  font-size: 0.76rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(24rem, 1.35fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
}

.about-number {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 30vw, 24rem);
  line-height: 0.7;
  letter-spacing: -0.12em;
}

.about-copy h2 {
  max-width: 11ch;
}

.about-copy > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: #454640;
  font-size: 1.02rem;
}

.contact {
  color: var(--surface);
  background: var(--accent-dark);
}

.contact-shell {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.contact .eyebrow {
  color: #ffd2c8;
}

.contact h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.contact-shell > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: #f1d8d2;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.contact-email {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2.35rem);
  text-underline-offset: 0.45rem;
}

.contact-resume {
  margin-left: auto;
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.contact-resume:hover {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-links a {
  color: #ffd2c8;
  font-size: 0.8rem;
  font-weight: 800;
  text-underline-offset: 0.3rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
  color: #b7b8b4;
  background: var(--ink);
  border-top: 1px solid #3a3d40;
}

footer p {
  margin: 0;
  font-size: 0.72rem;
}

.footer-identity {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-identity .mnj-mark {
  width: 2.85rem;
}

.hero-copy,
.hero-evidence {
  animation: reveal 650ms ease both;
}

.hero-evidence {
  animation-delay: 120ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-evidence {
    max-width: 34rem;
  }

  .section-heading,
  .project-card,
  .skills-shell,
  .about {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    max-width: 40rem;
  }

  .project-card-reverse .project-copy,
  .project-card-reverse .project-visual {
    grid-row: auto;
    grid-column: auto;
  }

  .project-card-reverse .project-copy {
    order: 1;
  }

  .project-card-reverse .project-visual {
    order: 2;
  }

  .project-copy {
    max-width: 42rem;
  }

  .experience-item {
    grid-template-columns: 10rem 1fr;
  }

  .experience-item ul {
    grid-column: 2;
  }

  .skills-intro {
    max-width: 46rem;
  }

  .about-number {
    font-size: 12rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .wordmark-full,
  nav a:nth-child(2),
  nav a:nth-child(3),
  nav a:nth-child(4) {
    display: none;
  }

  .hero {
    width: min(calc(100% - 2rem), var(--max-width));
    gap: 3rem;
    padding: 3.25rem 0 3.5rem;
  }

  .section-shell {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .section-heading {
    gap: 1.5rem;
  }

  .project-details div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .project-visual {
    box-shadow: 0.65rem 0.65rem 0 rgb(21 23 25 / 12%);
  }

  .vera-body {
    grid-template-columns: 5.5rem 1fr;
    min-height: 20rem;
  }

  .vera-sidebar {
    padding: 0.8rem 0.45rem;
  }

  .vera-main {
    padding: 0.75rem;
  }

  .vera-row {
    grid-template-columns: 3rem 1fr;
  }

  .vera-row small {
    display: none;
  }

  .pipeline-steps li {
    grid-template-columns: 2rem 1fr;
  }

  .pipeline-steps i {
    display: none;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .experience-item ul {
    grid-column: auto;
  }

  .skill-groups {
    grid-template-columns: 1fr;
  }

  .skill-groups article,
  .skill-groups article:nth-child(even) {
    padding: 1.25rem 0;
    border-left: 0;
  }

  .about {
    gap: 3rem;
  }

  .about-number {
    font-size: 9rem;
  }

  .contact-actions {
    display: grid;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

  .contact-resume {
    margin-left: 0;
  }

  footer {
    flex-direction: column;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .availability {
    margin-bottom: 2rem;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-summary {
    margin-top: 1.75rem;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-evidence {
    margin-right: 0.65rem;
    box-shadow: 0.65rem 0.65rem 0 var(--accent);
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip p {
    border-bottom: 1px solid rgb(255 253 247 / 32%);
  }

  .proof-strip p:nth-child(2) {
    border-right: 0;
  }

  .proof-strip p:nth-child(3),
  .proof-strip p:nth-child(4) {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
