:root {
  color-scheme: dark;
  --night: #11131c;
  --surface: #1a1d2a;
  --glass: rgba(20, 23, 34, 0.82);
  --glass-solid: rgba(20, 23, 34, 0.94);
  --glass-edge: rgba(244, 240, 232, 0.14);
  --text: #f4f0e8;
  --muted: #aaa9b2;
  --accent: #d3758b;
  --panel-width: 780px;
  --radius: 14px;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  font-family: "Outfit", system-ui, sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--night);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  background: var(--night);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 12, 19, 0.04), transparent 25%, transparent 75%, rgba(10, 12, 19, 0.04)),
    linear-gradient(180deg, rgba(8, 10, 17, 0.03), rgba(8, 10, 17, 0.18)),
    url("/assets/habitat-bg.png") center center / cover no-repeat;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background: radial-gradient(
    circle 240px at var(--pointer-x) var(--pointer-y),
    rgba(211, 117, 139, 0.16),
    transparent 72%
  );
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--night);
  background: var(--text);
  transform: translateY(-150%);
}

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

.world {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: clip;
  pointer-events: none;
}

.world__scene {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.683dvh);
  height: max(100dvh, 56.28vw);
  transform: translate(-50%, -50%);
}

.route {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: 31%;
  height: var(--route-height);
  --pet-size: 14%;
  --frame-ratio: 0.86;
  --stride: 720ms;
  --scale-start: 1;
  --scale-end: 1;
}

.walker {
  position: absolute;
  bottom: var(--start-ground);
  left: 0;
  width: var(--pet-size);
  transform: scaleX(1);
  transform-origin: center bottom;
  scale: var(--scale-start);
  animation: grounded-route var(--speed) var(--delay) linear infinite;
  will-change: left, bottom, transform, scale;
}

.walker__sprite {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: var(--frame-ratio);
  overflow: hidden;
}

.walker__sprite img {
  display: block;
  width: 600%;
  max-width: none;
  height: 100%;
  animation: walk-cycle var(--stride) steps(5, end) infinite;
  image-rendering: pixelated;
  will-change: transform;
}

.walker__shadow {
  position: absolute;
  right: 13%;
  bottom: -1.5%;
  left: 13%;
  z-index: 0;
  height: 10%;
  content: "";
  border-radius: 50%;
  opacity: 0.58;
  background: rgba(40, 58, 22, 0.42);
  filter: blur(3px);
}

.route--buff { --frame-ratio: 0.852; }
.route--silver { --frame-ratio: 0.836; }
.route--gold-neck { --frame-ratio: 0.923; }
.route--barred { --frame-ratio: 0.872; }

.route--tabby {
  --pet-size: 11%;
  --frame-ratio: 1.496;
  --stride: 640ms;
}

.route--white-tabby {
  --pet-size: 16%;
  --frame-ratio: 1.438;
  --stride: 680ms;
}

.route--black {
  --pet-size: 16%;
  --frame-ratio: 1.058;
  --stride: 740ms;
}

@keyframes walk-cycle {
  to { transform: translateX(-83.3333%); }
}

@keyframes grounded-route {
  0% {
    left: 0;
    bottom: var(--start-ground);
    transform: scaleX(1);
    scale: var(--scale-start);
  }
  48% {
    left: calc(100% - var(--pet-size));
    bottom: var(--end-ground);
    transform: scaleX(1);
    scale: var(--scale-end);
  }
  49% {
    left: calc(100% - var(--pet-size));
    bottom: var(--end-ground);
    transform: scaleX(-1);
    scale: var(--scale-end);
  }
  98% {
    left: 0;
    bottom: var(--start-ground);
    transform: scaleX(-1);
    scale: var(--scale-start);
  }
  100% {
    left: 0;
    bottom: var(--start-ground);
    transform: scaleX(1);
    scale: var(--scale-start);
  }
}

.profile-shell {
  position: relative;
  z-index: 2;
  width: min(var(--panel-width), calc(100% - 36px));
  min-height: calc(100dvh - 36px);
  margin: 18px auto;
  overflow: clip;
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--glass);
  background-size: 24px 24px;
  box-shadow: 0 30px 90px rgba(3, 5, 11, 0.68), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(19px) saturate(0.88);
}

.profile-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--glass-edge);
  background: rgba(17, 19, 28, 0.84);
  backdrop-filter: blur(18px);
}

.profile-brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
}

.profile-brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.2);
  background: var(--accent);
  color: var(--night);
  font: 600 14px/1 "IBM Plex Mono", monospace;
  box-shadow: inset 3px 3px rgba(244, 240, 232, 0.14);
}

.profile-brand strong,
.profile-brand small {
  display: block;
}

.profile-brand strong {
  font-size: 15px;
  font-weight: 600;
}

.profile-brand small {
  margin-top: 2px;
  color: var(--muted);
  font: 400 10px/1.2 "IBM Plex Mono", monospace;
}

.profile-nav__links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font: 500 11px/1 "IBM Plex Mono", monospace;
}

.profile-nav__links a {
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.profile-nav__links a:hover,
.profile-nav__links a:focus-visible {
  color: var(--text);
  border-color: var(--accent);
}

.section-pad {
  padding: clamp(54px, 9vw, 84px) clamp(25px, 7vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 42px;
  align-items: center;
  min-height: min(680px, calc(100dvh - 108px));
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font: 500 11px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 72px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero__lede {
  max-width: 440px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.primary-jump {
  position: relative;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 12px 13px 12px 16px;
  border: 1px solid rgba(244, 240, 232, 0.24);
  background: rgba(244, 240, 232, 0.05);
  font: 500 12px/1 "IBM Plex Mono", monospace;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-jump:hover,
.primary-jump:focus-visible {
  border-color: var(--accent);
  background: rgba(211, 117, 139, 0.12);
  transform: translateX(4px);
}

.primary-jump:active {
  transform: translateX(4px) translateY(1px);
}

.primary-jump__arrow {
  color: var(--accent);
}

.hero__portrait {
  align-self: end;
  padding-bottom: 56px;
}

.portrait-pixel {
  display: grid;
  width: 164px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background:
    linear-gradient(135deg, transparent 46%, rgba(211, 117, 139, 0.19) 46% 54%, transparent 54%),
    var(--surface);
  color: var(--text);
  font: 600 38px/1 "IBM Plex Mono", monospace;
  image-rendering: pixelated;
  box-shadow: 10px 10px 0 rgba(211, 117, 139, 0.15);
}

.portrait-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: var(--muted);
  font: 400 9px/1 "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
}

.portrait-meta span:last-child {
  color: var(--accent);
}

.status-ledger {
  margin: 0 clamp(25px, 7vw, 64px);
  border-top: 1px solid var(--glass-edge);
  border-bottom: 1px solid var(--glass-edge);
}

.status-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: var(--muted);
  font: 400 11px/1.4 "IBM Plex Mono", monospace;
}

.status-row strong {
  font-size: 15px;
  font-weight: 500;
}

.about {
  border-bottom: 1px solid var(--glass-edge);
}

.section-heading {
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 6vw, 50px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-left: 42px;
}

.about__body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about__body p:first-child {
  color: var(--text);
}

.habitat-strip {
  display: flex;
  gap: 5px;
  align-items: end;
  height: 52px;
  margin: 48px 0 0 42px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.2);
}

.habitat-strip span {
  width: 8px;
  height: 16px;
  background: var(--accent);
  box-shadow: 13px -9px 0 rgba(244, 240, 232, 0.18);
}

.habitat-strip span:nth-child(2) { height: 28px; opacity: 0.7; }
.habitat-strip span:nth-child(3) { height: 12px; opacity: 0.45; }
.habitat-strip span:nth-child(4) { height: 37px; opacity: 0.62; }
.habitat-strip span:nth-child(5) { height: 21px; opacity: 0.35; }

.section-heading--stacked > p:last-child {
  max-width: 460px;
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.projects,
.links {
  border-bottom: 1px solid var(--glass-edge);
}

.project-list {
  border-top: 1px solid var(--glass-edge);
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 31px 0;
  border-bottom: 1px solid var(--glass-edge);
}

.project-row--featured::before {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: -19px;
  width: 3px;
  content: "";
  background: var(--accent);
}

.project-row__meta {
  align-self: start;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font: 400 10px/1.25 "IBM Plex Mono", monospace;
}

.project-row__meta span:first-child {
  color: var(--accent);
}

.project-row__body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.project-row__body p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.project-row__actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.project-row__actions a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 5px;
  white-space: nowrap;
  color: var(--muted);
  border-bottom: 1px solid rgba(244, 240, 232, 0.24);
  font: 500 10px/1 "IBM Plex Mono", monospace;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.project-row__actions a span {
  color: var(--accent);
  transition: transform 180ms ease;
}

.project-row__actions a:hover,
.project-row__actions a:focus-visible {
  color: var(--text);
  border-color: var(--accent);
}

.project-row__actions a:hover span {
  transform: translate(2px, -2px);
}

.resume,
.homelab-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid var(--glass-edge);
  background: linear-gradient(110deg, rgba(211, 117, 139, 0.16), transparent 64%);
}

.resume h2,
.homelab-teaser h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 6vw, 50px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.resume__copy > p:last-child,
.homelab-teaser .resume__copy > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.homelab-teaser {
  border-bottom: 1px solid var(--glass-edge);
  background: linear-gradient(110deg, rgba(93, 163, 102, 0.14), transparent 64%);
}

.status-pill--online {
  gap: 8px;
  align-items: center;
  border-color: rgba(119, 196, 128, 0.4);
  color: #9ed6a5;
  background: rgba(93, 163, 102, 0.1);
}

.status-pill--online span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79c684;
  box-shadow: 0 0 0 3px rgba(121, 198, 132, 0.12);
}

.resume-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  min-width: 174px;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(244, 240, 232, 0.2);
  font: 500 11px/1 "IBM Plex Mono", monospace;
}

.resume-link {
  text-decoration: none;
  background: rgba(17, 19, 28, 0.25);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.resume-link:hover,
.resume-link:focus-visible {
  border-color: var(--accent);
  background: rgba(211, 117, 139, 0.13);
  transform: translateX(3px);
}

.page-hero {
  min-height: 390px;
  border-bottom: 1px solid var(--glass-edge);
  background: linear-gradient(140deg, rgba(211, 117, 139, 0.13), transparent 58%);
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero__lede {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-actions,
.project-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: rgba(244, 240, 232, 0.045);
  font: 500 11px/1 "IBM Plex Mono", monospace;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  border-color: var(--accent);
  background: rgba(211, 117, 139, 0.12);
  transform: translateY(-2px);
}

.button-link--quiet {
  color: var(--muted);
  background: transparent;
}

.page-section {
  border-bottom: 1px solid var(--glass-edge);
}

.page-section h2 {
  margin-bottom: 26px;
  font-size: clamp(29px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.page-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.page-section p,
.page-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.detail-card,
.project-card,
.now-card {
  padding: 24px;
  border: 1px solid var(--glass-edge);
  background: rgba(244, 240, 232, 0.025);
}

.detail-card p:last-child,
.project-card p:last-child,
.now-card p:last-child {
  margin-bottom: 0;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  border: 1px solid rgba(211, 117, 139, 0.36);
  color: var(--accent);
  background: rgba(211, 117, 139, 0.08);
  font: 500 10px/1 "IBM Plex Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stack-list,
.plain-list,
.todo-list {
  margin: 0;
  padding-left: 20px;
}

.stack-list li + li,
.plain-list li + li,
.todo-list li + li {
  margin-top: 10px;
}

.project-index-grid {
  display: grid;
  gap: 14px;
}

.project-card {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(211, 117, 139, 0.58);
  background: rgba(211, 117, 139, 0.08);
  transform: translateX(4px);
}

.project-card__type {
  color: var(--accent);
  font: 500 10px/1.35 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.project-card p {
  margin: 0;
}

.project-card__arrow {
  color: var(--accent);
  font-size: 24px;
}

.resume-sheet {
  display: grid;
  gap: 42px;
}

.resume-section {
  display: grid;
  gap: 16px;
}

.resume-section h2 {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-edge);
  color: var(--accent);
  font: 500 11px/1 "IBM Plex Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.resume-entry {
  display: grid;
  gap: 8px;
}

.resume-entry + .resume-entry {
  padding-top: 20px;
  border-top: 1px solid rgba(244, 240, 232, 0.08);
}

.resume-entry__heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.resume-entry__heading h3,
.resume-entry__heading p {
  margin: 0;
}

.resume-entry__heading p {
  flex: none;
  font: 400 10px/1.4 "IBM Plex Mono", monospace;
}

.resume-entry > p,
.resume-entry ul {
  margin-bottom: 0;
}

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

.skills-grid strong {
  color: var(--text);
}

.updated-stamp {
  margin-top: 30px;
  color: rgba(170, 169, 178, 0.75);
  font: 400 10px/1.4 "IBM Plex Mono", monospace;
}

.social-list {
  border-top: 1px solid var(--glass-edge);
}

.social-list a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--glass-edge);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.social-list a > span:first-child {
  color: var(--muted);
  font: 400 10px/1 "IBM Plex Mono", monospace;
}

.social-list a strong {
  font-size: 17px;
  font-weight: 500;
}

.social-list a > span:last-child {
  color: var(--accent);
}

.social-list a:hover,
.social-list a:focus-visible {
  padding-inline: 13px;
  background: rgba(244, 240, 232, 0.035);
}

.profile-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  border-top: 1px solid var(--glass-edge);
}

.profile-footer p {
  margin-bottom: 6px;
  color: var(--muted);
}

.profile-footer__title {
  color: var(--text) !important;
  font-size: 24px;
  font-weight: 500;
}

.back-to-top {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 10px 0;
  color: var(--muted);
  font: 500 11px/1 "IBM Plex Mono", monospace;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 240, 232, 0.28);
  transition: color 180ms ease, border-color 180ms ease;
}

.back-to-top span {
  color: var(--accent);
  transition: transform 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--text);
  border-color: var(--accent);
}

.back-to-top:hover span {
  transform: translateY(-3px);
}

.profile-footer small {
  grid-column: 1 / -1;
  color: rgba(170, 169, 178, 0.65);
  font: 400 9px/1 "IBM Plex Mono", monospace;
}

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

@media (max-width: 1120px) {
  .world {
    opacity: 0.72;
  }

  .profile-shell {
    width: min(820px, calc(100% - 28px));
  }
}

@media (max-width: 680px) {
  .profile-shell {
    width: calc(100% - 16px);
    margin: 8px auto;
    border-radius: 10px;
    background-color: var(--glass-solid);
  }

  .profile-nav {
    min-height: 64px;
    padding: 10px 15px;
  }

  .profile-brand__mark {
    width: 38px;
    height: 38px;
  }

  .profile-nav__links {
    gap: 12px;
  }

  .profile-nav__links a:nth-child(2) {
    display: none;
  }

  .section-pad {
    padding: 48px 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero__portrait {
    display: none;
  }

  .status-ledger {
    margin-inline: 22px;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .about__body {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .habitat-strip {
    margin-left: 0;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-row__meta {
    grid-template-columns: auto 1fr;
  }

  .project-row__actions {
    justify-self: start;
    justify-items: start;
  }

  .project-row--featured::before {
    left: -11px;
  }

  .resume,
  .homelab-teaser {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .resume-link {
    justify-self: start;
  }

  .social-list a {
    grid-template-columns: 90px 1fr auto;
    gap: 14px;
  }

  .profile-nav__links a:nth-child(4) {
    display: none;
  }

  .detail-grid,
  .skills-grid,
  .now-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr auto;
  }

  .project-card__type {
    grid-column: 1 / -1;
  }

  .resume-entry__heading {
    display: grid;
  }

  .profile-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .back-to-top {
    justify-self: start;
  }
}

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

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

  .skip-link {
    transition: none !important;
  }

  body::after {
    display: none;
  }
}
