:root {
  --paper: #f8f9fa;
  --paper-deep: #ffffff;
  --ink: #11100e;
  --muted: #55524d;
  --line: rgba(17, 16, 14, 0.16);
  --red: #dc143c;
  --red-dark: #dc143c;
  --blue: #1f5b82;
  color-scheme: light;
  font-family:
    "Erica Type",
    "Arial Narrow",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(17, 16, 14, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 16, 14, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(197, 63, 45, 0.07), transparent 22rem),
    radial-gradient(circle at 86% 7%, rgba(31, 91, 130, 0.06), transparent 20rem),
    var(--paper);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    repeating-radial-gradient(circle at 17% 23%, rgba(17, 16, 14, 0.11) 0 1px, transparent 1px 7px),
    repeating-radial-gradient(circle at 71% 64%, rgba(17, 16, 14, 0.07) 0 1px, transparent 1px 11px);
  mix-blend-mode: multiply;
  opacity: 0.16;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(17, 16, 14, 0.045) 42.1% 42.7%, transparent 42.8%),
    linear-gradient(4deg, transparent 0 64%, rgba(197, 63, 45, 0.16) 64.1% 64.6%, transparent 64.7%);
  opacity: 0.8;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img,
svg {
  max-width: 100%;
}

::selection {
  background: rgba(197, 63, 45, 0.26);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 0.9rem;
}

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

.site-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header::before {
  background: #f8f9fa;
  border-bottom: 1px solid var(--line);
  content: "";
  inset: 0 calc(50% - 50vw);
  position: absolute;
  z-index: -1;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-cv,
.menu-toggle,
.button {
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.crimson-word {
  color: #dc143c;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  height: 1.95rem;
  justify-content: center;
  transform: rotate(-3deg);
  width: 1.95rem;
}

.menu-toggle {
  align-items: center;
  background: #f8f9fa;
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 #000000;
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.22rem;
  height: 2.15rem;
  justify-content: center;
  padding: 0;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
  width: 2.35rem;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 1.2rem;
}

.menu-toggle:hover {
  box-shadow: 1px 1px 0 #000000;
  transform: translate(2px, 2px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: flex-end;
}

.nav-group {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 0.35rem;
  justify-content: flex-end;
}

.nav-links a,
.nav-cv,
.button {
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 #000000;
  display: inline-flex;
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.62rem 0.75rem;
  text-decoration: none;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.nav-links a {
  background: #f8f9fa;
}

.nav-cv,
.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.nav-links a:hover,
.nav-cv:hover,
.button:hover {
  box-shadow: 1px 1px 0 #000000;
  transform: translate(2px, 2px);
}

main {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 clamp(1rem, 3vw, 2rem) 5rem;
}

.hero {
  min-height: auto;
  padding: clamp(1rem, 2.7vw, 2.8rem) 0 clamp(1.2rem, 3vw, 2.5rem);
}

.hero-kicker,
.eyebrow,
.panel-label,
.stamp,
.pub-year,
.timeline-item span {
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  border-bottom: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  display: inline-block;
  font-size: clamp(0.72rem, 1.3vw, 0.9rem);
  padding: 0.32rem 0;
  transform: rotate(-0.6deg);
}

.hero-grid {
  display: block;
  margin-top: clamp(0.8rem, 2vw, 1.6rem);
  width: 100%;
}

.hero-copy {
  max-width: none;
}

.stamp {
  background: rgba(197, 63, 45, 0.13);
  border: 2px solid var(--red);
  color: var(--red);
  display: inline-block;
  font-size: 0.72rem;
  margin: 0 0 0.75rem;
  padding: 0.32rem 0.55rem;
  transform: rotate(-2deg);
}

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

h1 {
  font-size: clamp(2.2rem, 7.8vw, 6.8rem);
  line-height: 0.86;
  margin-bottom: clamp(0.7rem, 1.8vw, 1.2rem);
  max-width: 12ch;
  text-transform: uppercase;
}

.hero-deck {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
  width: 100%;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.9rem;
}

.hero-notes span {
  background: #fff;
  border: 1px solid var(--ink);
  box-shadow: 2px 2px 0 #000000;
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.42rem 0.58rem;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.button {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  min-height: 2.35rem;
}

.button-dark {
  background: var(--ink);
}

.panel-label,
.eyebrow {
  color: var(--red);
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
}

.section {
  border-top: 2px solid var(--ink);
  padding: clamp(2rem, 4.8vw, 4.6rem) 0;
}

.section-split,
.cv-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(16rem, 0.55fr) minmax(0, 1fr);
}

.section-split {
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: auto 1fr;
  padding: clamp(1.4rem, 3vw, 2.4rem) 0;
}

.section h2 {
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  line-height: 0.92;
  margin-bottom: 0;
  max-width: 11ch;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: clamp(1.1rem, 3vw, 2rem);
}

.section-heading h2 {
  max-width: 13ch;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.theme-list article,
.education-block,
.timeline-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 #000000;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.theme-list article {
  align-items: center;
  display: inline-flex;
  gap: 0.55rem;
  padding: 0.55rem 0.68rem;
}

.theme-list span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.theme-list h3 {
  font-size: 0.82rem;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}

.theme-list p,
.timeline-item p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.publication-list {
  display: grid;
  gap: 0.55rem;
}

.publication {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 #000000;
  overflow: clip;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.theme-list article:hover,
.publication:hover,
.education-block:hover,
.timeline-item:hover,
.skill-cloud li:hover {
  background: #fff;
  box-shadow: 1px 1px 0 #000000;
  transform: translate(3px, 3px);
}

.publication.is-open {
  background: #fff;
  transform: none;
}

.publication-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 4.5rem 1fr 2rem;
  padding: 0.72rem 0.85rem;
  text-align: left;
  width: 100%;
}

.pub-year {
  color: var(--blue);
  font-size: 0.82rem;
}

.pub-title {
  display: grid;
  gap: 0.25rem;
}

.pub-title strong {
  font-size: clamp(0.95rem, 1.6vw, 1.28rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.pub-title small {
  color: var(--muted);
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pub-plus {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 1.75rem;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  position: relative;
  width: 1.75rem;
}

.publication.is-open .pub-plus {
  background: var(--red);
}

.publication.is-open .pub-plus::before {
  content: "-";
}

.publication.is-open .pub-plus {
  color: transparent;
}

.publication.is-open .pub-plus::before {
  color: #fff;
  position: absolute;
}

.publication-detail {
  border-top: 1px dashed var(--ink);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(12rem, 0.48fr) 1fr;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0.85rem;
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    padding 220ms ease;
}

.publication-detail[hidden] {
  display: none;
}

.publication.is-open .publication-detail {
  max-height: 34rem;
  opacity: 1;
  padding: 0.85rem;
}

.pub-image {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 38% 34%, rgba(197, 63, 45, 0.95) 0 14%, transparent 14.5%),
    linear-gradient(135deg, transparent 0 36%, rgba(197, 63, 45, 0.82) 36% 50%, transparent 50.5%),
    repeating-linear-gradient(0deg, rgba(17, 16, 14, 0.28) 0 1px, transparent 1px 4px),
    linear-gradient(145deg, #fff 0 55%, #ededed 55% 100%);
  border: 10px solid #fff;
  box-shadow: 5px 5px 0 #000000;
  min-height: 11rem;
  position: relative;
  transform: rotate(-1.6deg);
}

.pub-image::before,
.pub-image::after {
  content: "";
  position: absolute;
}

.pub-image::before {
  background:
    radial-gradient(circle at 48% 32%, #11100e 0 18%, transparent 19%),
    linear-gradient(92deg, transparent 0 28%, #11100e 29% 39%, transparent 40%),
    linear-gradient(15deg, transparent 0 40%, #11100e 41% 55%, transparent 56%);
  filter: contrast(1.4);
  inset: 15% 18% 12%;
  opacity: 0.9;
}

.pub-image::after {
  background: #f7f1cf;
  height: 1.5rem;
  right: -1.1rem;
  top: -0.9rem;
  transform: rotate(37deg);
  width: 4.2rem;
}

.publication[data-art="agent"] .pub-image {
  background:
    radial-gradient(circle at 72% 28%, rgba(31, 91, 130, 0.78) 0 18%, transparent 18.5%),
    linear-gradient(28deg, transparent 0 44%, rgba(197, 63, 45, 0.85) 44.5% 58%, transparent 58.5%),
    repeating-radial-gradient(circle at 30% 60%, rgba(17, 16, 14, 0.42) 0 1px, transparent 1px 5px),
    #fff;
}

.publication[data-art="truth"] .pub-image {
  background:
    linear-gradient(5deg, transparent 0 45%, rgba(17, 16, 14, 0.88) 45.5% 49%, transparent 49.5%),
    radial-gradient(circle at 35% 40%, rgba(197, 63, 45, 0.9) 0 18%, transparent 18.5%),
    repeating-linear-gradient(90deg, rgba(17, 16, 14, 0.2) 0 1px, transparent 1px 6px),
    #fff;
}

.publication[data-art="scan"] .pub-image,
.publication[data-art="lung"] .pub-image {
  background:
    radial-gradient(circle at 42% 42%, rgba(17, 16, 14, 0.88) 0 18%, transparent 18.5%),
    radial-gradient(circle at 58% 42%, rgba(17, 16, 14, 0.88) 0 18%, transparent 18.5%),
    linear-gradient(90deg, rgba(197, 63, 45, 0.76) 0 28%, transparent 28.5% 68%, rgba(31, 91, 130, 0.45) 68.5%),
    repeating-linear-gradient(0deg, rgba(17, 16, 14, 0.16) 0 1px, transparent 1px 5px),
    #fff;
}

.publication[data-art="bangla"] .pub-image {
  background:
    radial-gradient(circle at 48% 46%, rgba(197, 63, 45, 0.88) 0 20%, transparent 20.5%),
    repeating-linear-gradient(135deg, rgba(17, 16, 14, 0.74) 0 2px, transparent 2px 9px),
    #fff;
}

.pub-abstract {
  align-self: center;
}

.pub-abstract h3 {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pub-abstract p {
  color: var(--muted);
  font-size: clamp(0.96rem, 1.3vw, 1.05rem);
  margin-bottom: 0;
}

.pub-abstract a {
  display: inline-block;
  font-weight: 800;
  margin-top: 0.7rem;
}

.column {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.timeline-item {
  padding: 0;
}

.education-block {
  padding: 0;
}

.education-row {
  color: inherit;
  display: grid;
  gap: 0.2rem;
  grid-template-columns: minmax(6.5rem, 0.28fr) minmax(0, 1fr);
  padding: 0.76rem 0.85rem;
  width: 100%;
}

.education-row span {
  color: var(--blue);
  display: block;
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.education-row strong {
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  min-width: 0;
  line-height: 1;
  text-transform: uppercase;
}

.education-row small {
  color: var(--muted);
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 1rem;
  font-weight: 700;
  grid-column: 2;
  text-transform: uppercase;
}

.education-note {
  color: var(--muted);
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.8rem;
  font-weight: 700;
  grid-column: 2;
  text-transform: uppercase;
}

.experience-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.28rem;
  grid-template-columns: 7rem 1fr 1.5rem;
  padding: 0.76rem 0.85rem;
  text-align: left;
  width: 100%;
}

.experience-toggle span {
  color: var(--blue);
  display: block;
  font-size: 0.72rem;
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-weight: 700;
  text-transform: uppercase;
}

.experience-toggle strong {
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.experience-toggle small {
  color: var(--muted);
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.7rem;
  font-weight: 700;
  grid-column: 2;
  text-transform: uppercase;
}

.experience-toggle i {
  align-items: center;
  align-self: center;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  font-style: normal;
  font-weight: 900;
  grid-column: 3;
  grid-row: 1 / 3;
  height: 1.5rem;
  justify-content: center;
  justify-self: end;
  line-height: 1;
  position: relative;
  width: 1.5rem;
}

.timeline-item.is-open .experience-toggle i {
  background: var(--red);
  color: transparent;
}

.timeline-item.is-open .experience-toggle i::before {
  color: #fff;
  content: "-";
  position: absolute;
}

.experience-detail {
  border-top: 1px dashed var(--ink);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0.85rem;
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    padding 220ms ease;
}

.experience-detail[hidden] {
  display: none;
}

.timeline-item.is-open .experience-detail {
  max-height: 18rem;
  opacity: 1;
  padding: 0.7rem 0.85rem 0.85rem;
}

.experience-detail ul {
  color: var(--muted);
  margin: 0;
  padding-left: 1.1rem;
}

.experience-detail li + li {
  margin-top: 0.28rem;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.skill-cloud li {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 #000000;
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 0.7rem;
  text-transform: uppercase;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.contact-section {
  min-height: 60svh;
}

.contact-section h2 {
  max-width: 15ch;
}

.site-footer {
  align-items: center;
  border-top: 2px solid var(--ink);
  display: flex;
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 1rem clamp(1rem, 3vw, 2rem) 1.4rem;
  text-transform: uppercase;
}

.site-footer p {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
  margin: 0;
}

.site-footer img {
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-group {
    flex-wrap: wrap;
  }

  .nav-links {
    justify-content: flex-end;
  }

  .cv-grid {
    grid-template-columns: 1fr;
  }

  .section-split {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .theme-list {
    justify-content: flex-start;
  }

  .section-heading {
    align-items: start;
    display: block;
  }

  .publication-detail {
    grid-template-columns: 1fr;
  }

  .publication.is-open .publication-detail {
    max-height: 44rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    position: static;
  }

  .nav-group {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .brand {
    font-size: 0.82rem;
  }

  .nav-links a,
  .nav-cv,
  .button {
    font-size: 0.72rem;
    padding: 0.68rem 0.72rem;
  }

  h1 {
    font-size: clamp(3.6rem, 22vw, 6.4rem);
  }

  .publication,
  .theme-list article {
    grid-template-columns: 1fr;
  }

  .experience-toggle {
    grid-template-columns: 1fr 1.5rem;
  }

  .experience-toggle span,
  .experience-toggle small {
    grid-column: 1;
  }

  .experience-toggle i {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .publication-toggle {
    gap: 0.55rem;
    grid-template-columns: 3.5rem 1fr 1.75rem;
    padding: 0.68rem;
  }

  .pub-title strong {
    font-size: 0.92rem;
  }

  .pub-title small {
    font-size: 0.66rem;
  }

  .publication.is-open .publication-detail {
    max-height: 52rem;
    padding: 0.68rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    position: sticky;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 30;
  }

  .menu-toggle[aria-expanded="true"] {
    background: #fff;
    box-shadow: 1px 1px 0 #000000;
    transform: translate(2px, 2px);
  }

  .nav-group {
    align-items: stretch;
    background:
      linear-gradient(rgba(17, 16, 14, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(17, 16, 14, 0.035) 1px, transparent 1px),
      #f8f9fa;
    background-size: 24px 24px, 24px 24px, auto;
    border-left: 2px solid var(--ink);
    bottom: 0;
    box-shadow: -5px 0 0 #000000;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    justify-content: flex-start;
    max-width: 18rem;
    padding: 4.5rem 1rem 1rem;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(calc(100% + 0.5rem));
    transition:
      transform 180ms ease,
      visibility 0s linear 180ms;
    visibility: hidden;
    width: min(82vw, 18rem);
    z-index: 20;
  }

  body.menu-open .nav-group {
    transform: translateX(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.55rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links a,
  .nav-cv {
    justify-content: flex-start;
    width: 100%;
  }

  .brand {
    max-width: calc(100% - 3.2rem);
  }

  h1 {
    overflow-wrap: anywhere;
  }

  .education-row {
    gap: 0.32rem;
    grid-template-columns: 1fr;
    padding: 0.72rem;
  }

  .education-row span,
  .education-row small,
  .education-note {
    grid-column: 1;
  }

  .education-row strong {
    font-size: clamp(1rem, 6vw, 1.25rem);
    overflow-wrap: anywhere;
  }

  .education-row small,
  .education-note {
    font-size: 0.72rem;
  }

  .skill-cloud {
    gap: 0.45rem;
  }

  .skill-cloud li {
    font-size: 0.72rem;
    padding: 0.5rem 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
