:root {
  --bg: #0b1220;
  --bg-deep: #080e19;
  --surface: #111b2e;
  --surface-hover: rgba(148, 163, 184, 0.075);
  --surface-strong: #162238;
  --heading: #f1f5fb;
  --text: #b1bfd0;
  --muted: #8292a9;
  --faint: #7789a2;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(148, 163, 184, 0.27);
  --accent: #ff8b61;
  --accent-light: #ffac8f;
  --accent-soft: rgba(255, 139, 97, 0.1);
  --green: #75ddb5;
  --amber: #f5bd72;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --page: 1220px;
  --article: 760px;
  --pointer-x: 50vw;
  --pointer-y: 15vh;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection,
body *::selection {
  color: var(--heading);
  background: rgba(255, 139, 97, 0.28);
}

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

img,
svg {
  display: block;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-weight: 680;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

:where(a, button):focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 9px 14px;
  color: var(--bg-deep);
  background: var(--accent);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(650px circle at var(--pointer-x) var(--pointer-y), rgba(255, 139, 97, 0.075), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.01), transparent 42%);
}

/* Home page */
.site-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 106px);
  width: min(100% - 80px, var(--page));
  min-height: 100vh;
  margin: 0 auto;
}

.profile-panel__inner {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 88px 0 66px;
}

.profile-name {
  display: inline-block;
  color: var(--heading);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.055em;
  transition: color 180ms ease;
}

.profile-title {
  line-height: 1;
}

.profile-name:hover {
  color: var(--accent-light);
}

.profile-role {
  margin-top: 18px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.012em;
}

.profile-intro {
  max-width: 36ch;
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
}

.section-nav {
  display: grid;
  gap: 5px;
  margin-top: 62px;
}

.section-nav a {
  display: grid;
  grid-template-columns: 36px 22px auto;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 38px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.section-nav .nav-line {
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease, background-color 180ms ease;
}

.section-nav .nav-index {
  color: var(--accent);
  opacity: 0.72;
}

.section-nav a:hover,
.section-nav a[aria-current="true"] {
  color: var(--heading);
}

.section-nav a:hover .nav-line,
.section-nav a[aria-current="true"] .nav-line {
  width: 36px;
  background: var(--accent);
}

.profile-bottom {
  margin-top: auto;
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 34ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12.5px;
}

.availability > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(117, 221, 181, 0.09);
}

.social-list {
  display: flex;
  gap: 19px;
  align-items: center;
  list-style: none;
}

.social-link {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link::after {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  padding: 4px 8px;
  color: var(--heading);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 5px;
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(255, 139, 97, 0.5);
  transform: translateY(-3px);
}

.social-link:hover::after,
.social-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.content-panel {
  min-width: 0;
  padding: 88px 0 58px;
}

.content-section {
  padding: 0 0 112px;
  scroll-margin-top: 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto auto minmax(40px, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading > span:first-child {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-rule {
  height: 1px;
  background: var(--line);
}

.about-copy {
  display: grid;
  gap: 18px;
  color: var(--text);
  font-size: 16.5px;
}

.inline-link {
  color: var(--heading);
  font-weight: 600;
  box-shadow: inset 0 -1px 0 var(--accent);
  transition: color 160ms ease, box-shadow 160ms ease;
}

.inline-link:hover {
  color: var(--accent-light);
  box-shadow: inset 0 -6px 0 rgba(255, 139, 97, 0.12);
}

.focus-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.focus-list {
  margin-top: 28px;
}

.focus-list li,
.tag-list li {
  color: var(--accent-light);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 139, 97, 0.14);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.2;
  padding: 6px 10px;
}

.experience-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.experience-card {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 22px;
  margin: 0 -20px;
  padding: 22px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.experience-card:hover,
.experience-card:focus-within {
  background: var(--surface-hover);
  border-color: var(--line);
  transform: translateY(-3px);
}

.experience-date {
  padding-top: 3px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.experience-card h3 {
  font-size: 16px;
  line-height: 1.35;
}

.experience-card h3 span {
  color: var(--muted);
  font-weight: 570;
}

.experience-card h3 a {
  transition: color 160ms ease;
}

.experience-card:hover h3 a,
.experience-card h3 a:hover {
  color: var(--accent-light);
}

.experience-card > div > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.experience-card .tag-list {
  margin-top: 15px;
}

.external-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
  vertical-align: -2px;
}

a:hover > .external-icon,
.project-card:hover .external-icon {
  transform: translate(3px, -3px);
}

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

.project-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 0 -20px;
  padding: 22px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  background: var(--surface-hover);
  border-color: var(--line);
  transform: translateY(-3px);
}

.project-image {
  position: relative;
  display: block;
  width: 164px;
  height: 106px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 139, 97, 0.1);
  content: "";
  mix-blend-mode: color;
  transition: opacity 180ms ease;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(22%) contrast(0.92) brightness(0.88);
  transform: scale(1.01);
  transition: filter 220ms ease, transform 220ms ease;
}

.project-card:hover .project-image::after,
.project-image:focus-visible::after {
  opacity: 0;
}

.project-card:hover .project-image img,
.project-image:focus-visible img {
  filter: none;
  transform: scale(1.045);
}

.project-topline {
  min-height: 23px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.status-live {
  color: var(--green);
}

.status-shadow {
  color: var(--amber);
}

.project-copy h3 {
  margin-top: 7px;
  font-size: 17px;
}

.project-copy h3 a {
  transition: color 160ms ease;
}

.project-card:hover .project-copy h3 a,
.project-copy h3 a:hover {
  color: var(--accent-light);
}

.project-copy > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.8px;
  line-height: 1.6;
}

.project-copy .tag-list {
  margin-top: 14px;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.project-actions > a:first-child {
  color: var(--heading);
  font-size: 12.5px;
  font-weight: 680;
  box-shadow: inset 0 -1px 0 var(--accent);
}

.project-actions > a:first-child:hover {
  color: var(--accent-light);
}

.project-actions > a:last-child {
  color: var(--muted);
  transition: color 160ms ease, transform 160ms ease;
}

.project-actions > a:last-child:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.project-actions svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.compact-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.compact-projects article {
  padding: 20px;
  background: rgba(17, 27, 46, 0.55);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.compact-projects article:hover {
  background: var(--surface);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.compact-label,
.contact-kicker {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-projects h3 {
  margin-top: 9px;
  font-size: 15.5px;
}

.compact-projects article > p:not(.compact-label) {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.compact-projects .tag-list {
  margin-top: 14px;
}

.contact-panel {
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 139, 97, 0.09), rgba(17, 27, 46, 0.75));
  border: 1px solid rgba(255, 139, 97, 0.2);
  border-radius: 14px;
}

.contact-panel h2 {
  max-width: 18ch;
  margin-top: 11px;
  font-size: clamp(26px, 3.5vw, 38px);
}

.contact-panel > p:not(.contact-kicker) {
  max-width: 52ch;
  margin-top: 15px;
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  margin-top: 23px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.contact-link:hover {
  color: var(--accent-light);
}

.home-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 44px 0 0;
  color: var(--faint);
  font-size: 12px;
}

/* Shared case-study pages */
.wrap {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 18, 32, 0.83);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 24px;
}

.nav-name {
  color: var(--heading);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.015em;
  transition: color 160ms ease;
}

.nav-name:hover {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.on {
  color: var(--accent-light);
}

.nav-links .nav-icon-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-links .nav-icon-link:hover {
  border-color: rgba(255, 139, 97, 0.45);
  transform: translateY(-2px);
}

.nav-icon-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero {
  padding: 96px 0 62px;
}

.hero .wrap {
  max-width: 900px;
}

.hero .role {
  margin-bottom: 19px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(39px, 6vw, 68px);
  letter-spacing: -0.048em;
}

.hero .blurb {
  max-width: 62ch;
  margin-top: 22px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.meta-row a {
  color: var(--heading);
  box-shadow: inset 0 -1px 0 var(--accent);
  transition: color 160ms ease, box-shadow 160ms ease;
}

.meta-row a:hover {
  color: var(--accent-light);
  box-shadow: inset 0 -6px 0 rgba(255, 139, 97, 0.11);
}

.status {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1;
  vertical-align: 1px;
}

.s-live {
  color: var(--green);
}

.s-shadow {
  color: var(--amber);
}

.s-design {
  color: var(--muted);
}

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

.prose {
  max-width: var(--article);
  padding-top: 66px;
  padding-bottom: 96px;
}

.prose > p:first-of-type {
  color: var(--text);
  font-size: 18px;
}

.prose p {
  margin-bottom: 17px;
  color: var(--text);
}

.prose h2 {
  margin: 58px 0 17px;
  font-size: clamp(25px, 3vw, 32px);
}

.prose h3 {
  margin: 35px 0 13px;
  font-size: 19px;
}

.prose strong,
.prose b {
  color: var(--heading);
  font-weight: 650;
}

.prose em {
  color: var(--heading);
}

.prose a {
  color: var(--accent-light);
  box-shadow: inset 0 -1px 0 rgba(255, 139, 97, 0.6);
}

.prose a:hover {
  color: var(--heading);
}

.prose ul,
.prose ol {
  margin: 0 0 20px 23px;
  color: var(--text);
}

.prose li {
  margin-bottom: 8px;
  padding-left: 3px;
}

.callout {
  margin: 25px 0;
  padding: 18px 21px;
  color: var(--heading);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 139, 97, 0.19);
  border-left: 3px solid var(--accent);
  border-radius: 0 9px 9px 0;
}

figure.shot {
  max-width: 680px;
  margin: 30px auto 38px;
}

figure.shot img {
  width: 100%;
  height: auto;
  background: #f8f8f6;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

figure.shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

figure.shot-diagram {
  max-width: 720px;
  margin-top: 34px;
}

figure.code {
  margin: 23px 0;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 9px;
}

figure.code figcaption {
  padding: 10px 15px;
  color: var(--faint);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

figure.code pre {
  padding: 17px;
  overflow-x: auto;
}

figure.code code {
  color: #c9d5e5;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.65;
}

code.inl {
  padding: 2px 5px;
  color: var(--accent-light);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 139, 97, 0.12);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.82em;
}

table.t {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 14px;
}

table.t th,
table.t td {
  padding: 12px 11px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

table.t th {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

table.t td {
  color: var(--text);
}

table.t td:first-child {
  color: var(--heading);
  font-weight: 620;
}

footer:not(.home-footer) {
  padding: 38px 0 52px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--faint);
  font-size: 12.5px;
}

.foot a {
  color: var(--muted);
  transition: color 160ms ease;
}

.foot a:hover {
  color: var(--accent-light);
}

/* Responsive */
@media (max-width: 960px) {
  .site-shell {
    display: block;
    width: min(100% - 56px, 760px);
  }

  .profile-panel__inner {
    position: static;
    min-height: auto;
    padding: 72px 0 50px;
  }

  .profile-intro {
    max-width: 48ch;
  }

  .section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 38px;
  }

  .section-nav a {
    display: flex;
    gap: 7px;
    min-height: 44px;
  }

  .section-nav .nav-line {
    display: none;
  }

  .profile-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 36px;
  }

  .availability {
    margin-bottom: 0;
  }

  .content-panel {
    padding: 0 0 48px;
  }

  .content-section {
    padding-bottom: 88px;
    scroll-margin-top: 58px;
  }

  .section-heading {
    position: sticky;
    top: 0;
    z-index: 12;
    margin: 0 -28px 28px;
    padding: 17px 28px;
    background: rgba(11, 18, 32, 0.91);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .project-card,
  .experience-card {
    margin-inline: 0;
  }
}

@media (max-width: 660px) {
  .page-glow {
    display: none;
  }

  .site-shell {
    width: min(100% - 40px, 760px);
  }

  .profile-panel__inner {
    padding-top: 58px;
  }

  .profile-name {
    font-size: clamp(38px, 12vw, 48px);
  }

  .profile-role {
    font-size: 16px;
  }

  .profile-bottom {
    display: block;
  }

  .availability {
    margin-bottom: 22px;
  }

  .section-heading {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .experience-card {
    display: block;
    padding: 20px 15px;
  }

  .experience-date {
    margin-bottom: 9px;
  }

  .project-card {
    display: block;
    padding: 18px 15px 22px;
  }

  .project-image {
    width: min(100%, 270px);
    height: 154px;
    margin-bottom: 19px;
  }

  .compact-projects {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 27px 23px;
  }

  .home-footer {
    display: block;
  }

  .home-footer p + p {
    margin-top: 4px;
  }

  .wrap {
    width: min(100% - 36px, 1120px);
  }

  .nav-inner {
    min-height: 58px;
  }

  .nav-links {
    gap: 13px;
  }

  .nav-links a {
    font-size: 9px;
  }

  .nav-links .nav-icon-link {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 70px 0 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .hero .blurb {
    font-size: 16.5px;
  }

  .prose {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .prose > p:first-of-type {
    font-size: 16.5px;
  }

  .prose h2 {
    margin-top: 45px;
  }

  .prose table.t {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  table.t th,
  table.t td {
    min-width: 125px;
  }

  .foot {
    display: block;
  }

  .foot > div + div {
    margin-top: 7px;
  }
}

@media (max-width: 560px) {
  .nav-links a:not(.nav-icon-link):not(.on) {
    display: none;
  }

  .nav-links .nav-icon-link {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 470px) {
  .nav-name {
    max-width: 120px;
    line-height: 1.15;
  }

  .nav-links a:not(.nav-icon-link):not(.on) {
    display: none;
  }
}

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

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

  .page-glow {
    background: linear-gradient(135deg, rgba(255, 139, 97, 0.03), transparent 45%);
  }
}
