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

body {
  color: var(--color--foreground--100);
  background-color: var(--color--background--100);
}

::selection {
  background-color: var(--color--foreground--10);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color--foreground--25);
}
a:hover {
  border-bottom-color: var(--color--foreground--100);
}

/* App header */
.app-header {
  position: fixed;
  width: 100%;
  padding: 0 var(--grid--app-margin);
  z-index: 100;
  -webkit-user-select: none;
  user-select: none;
  color: #fff;
  transition: color 0.3s ease;
  --color--foreground--100: rgb(255 255 255 / 1);
  --color--foreground--50:  rgb(255 255 255 / 0.5);
  --color--foreground--33:  rgb(255 255 255 / 0.333);
  --color--foreground--25:  rgb(255 255 255 / 0.25);
  --color--foreground--20:  rgb(255 255 255 / 0.2);
  --color--foreground--15:  rgb(255 255 255 / 0.15);
  --color--foreground--10:  rgb(255 255 255 / 0.1);
  --color--foreground--5:   rgb(255 255 255 / 0.05);
  --color--foreground--0:   rgb(255 255 255 / 0);
}
.app-header > .content {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-header .brand {
  padding: 12px 0;
}
.app-header .brand h3 {
  margin-left: var(--font--margin-left);
  font-size: var(--font--size-medium);
  line-height: 1;
  white-space: nowrap;
}
.app-header .brand h3 span:nth-child(n+2) {
  margin-left: var(--font--margin-left);
  margin-left: -0.035em;
  opacity: 0;
  transition: margin-left 0.3s ease-in, opacity 0.3s ease-in;
}
.app-header .brand:hover h3 span:nth-child(n+2) {
  margin-left: 0;
  opacity: 1;
  transition: margin-left 0.3s ease-out, opacity 0.3s ease-out;
}
.app-header .brand:hover h3 span:nth-child(2)  { transition-delay: 0.00s; }
.app-header .brand:hover h3 span:nth-child(3)  { transition-delay: 0.01s; }
.app-header .brand:hover h3 span:nth-child(4)  { transition-delay: 0.02s; }
.app-header .brand:hover h3 span:nth-child(5)  { transition-delay: 0.03s; }
.app-header .brand:hover h3 span:nth-child(6)  { transition-delay: 0.04s; }
.app-header .brand:hover h3 span:nth-child(7)  { transition-delay: 0.05s; }
.app-header .brand:hover h3 span:nth-child(8)  { transition-delay: 0.06s; }
.app-header .brand:hover h3 span:nth-child(9)  { transition-delay: 0.07s; }
.app-header .brand:hover h3 span:nth-child(10) { transition-delay: 0.08s; }
.app-header .brand:hover h3 span:nth-child(11) { transition-delay: 0.09s; }
.app-header .brand:hover h3 span:nth-child(12) { transition-delay: 0.10s; }
.app-header .brand:hover h3 span:nth-child(13) { transition-delay: 0.11s; }
.app-header .brand:hover h3 span:nth-child(14) { transition-delay: 0.12s; }
.app-header .brand:hover h3 span:nth-child(15) { transition-delay: 0.13s; }
.app-header .brand:hover h3 span:nth-child(16) { transition-delay: 0.14s; }
.app-header .brand:hover h3 span:nth-child(17) { transition-delay: 0.15s; }
.app-header .brand:hover h3 span:nth-child(18) { transition-delay: 0.16s; }
.app-header .brand:hover h3 span:nth-child(19) { transition-delay: 0.17s; }
.app-header .brand:hover h3 span:nth-child(20) { transition-delay: 0.18s; }
.app-header .brand h3 span:nth-child(2)  { transition-delay: 0.18s; }
.app-header .brand h3 span:nth-child(3)  { transition-delay: 0.17s; }
.app-header .brand h3 span:nth-child(4)  { transition-delay: 0.16s; }
.app-header .brand h3 span:nth-child(5)  { transition-delay: 0.15s; }
.app-header .brand h3 span:nth-child(6)  { transition-delay: 0.14s; }
.app-header .brand h3 span:nth-child(7)  { transition-delay: 0.13s; }
.app-header .brand h3 span:nth-child(8)  { transition-delay: 0.12s; }
.app-header .brand h3 span:nth-child(9)  { transition-delay: 0.11s; }
.app-header .brand h3 span:nth-child(10) { transition-delay: 0.10s; }
.app-header .brand h3 span:nth-child(11) { transition-delay: 0.09s; }
.app-header .brand h3 span:nth-child(12) { transition-delay: 0.08s; }
.app-header .brand h3 span:nth-child(13) { transition-delay: 0.07s; }
.app-header .brand h3 span:nth-child(14) { transition-delay: 0.06s; }
.app-header .brand h3 span:nth-child(15) { transition-delay: 0.05s; }
.app-header .brand h3 span:nth-child(16) { transition-delay: 0.04s; }
.app-header .brand h3 span:nth-child(17) { transition-delay: 0.03s; }
.app-header .brand h3 span:nth-child(18) { transition-delay: 0.02s; }
.app-header .brand h3 span:nth-child(19) { transition-delay: 0.01s; }
.app-header .brand h3 span:nth-child(20) { transition-delay: 0.00s; }

.app-header .brand:hover {
  cursor: default;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 102;
  position: relative;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}
.app-header.header--dark .menu-toggle span {
  background: #000;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color--background--100);
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav a {
  font-size: var(--font--size-large);
  font-weight: 600;
  color: var(--color--foreground--100);
  text-decoration: none;
  border: none;
}

.app-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  transform: translateX(-20px);
}
.app-nav a {
  font-family: var(--font--family-heading);
  font-size: var(--font--size-medium);
  line-height: 1;
  color: var(--color--foreground--100);
  text-decoration: none;
  border-bottom: none;
  white-space: nowrap;
  width: 100px;
  flex-shrink: 0;
  text-align: center;
}
.app-nav a span:nth-child(n+2) {
  margin-left: -0.035em;
  opacity: 0;
  transition: margin-left 0.3s ease-in, opacity 0.3s ease-in;
}
.app-nav a:hover span:nth-child(n+2) {
  margin-left: 0;
  opacity: 1;
  transition: margin-left 0.3s ease-out, opacity 0.3s ease-out;
}
.app-nav a:nth-child(1):hover span:nth-child(n+2) { transition-delay: 0.00s; }
.app-nav a:nth-child(1):hover span:nth-child(2)  { transition-delay: 0.00s; }
.app-nav a:nth-child(1):hover span:nth-child(3)  { transition-delay: 0.01s; }
.app-nav a:nth-child(1):hover span:nth-child(4)  { transition-delay: 0.02s; }
.app-nav a:nth-child(2):hover span:nth-child(2)  { transition-delay: 0.00s; }
.app-nav a:nth-child(2):hover span:nth-child(3)  { transition-delay: 0.01s; }
.app-nav a:nth-child(2):hover span:nth-child(4)  { transition-delay: 0.02s; }
.app-nav a:nth-child(3):hover span:nth-child(2)  { transition-delay: 0.00s; }
.app-nav a:nth-child(3):hover span:nth-child(3)  { transition-delay: 0.01s; }
.app-nav a:nth-child(3):hover span:nth-child(4)  { transition-delay: 0.02s; }
.app-nav a:nth-child(3):hover span:nth-child(5)  { transition-delay: 0.03s; }
.app-nav a:nth-child(3):hover span:nth-child(6)  { transition-delay: 0.04s; }
.app-nav a:nth-child(3):hover span:nth-child(7)  { transition-delay: 0.05s; }
.app-nav a:nth-child(3):hover span:nth-child(8)  { transition-delay: 0.06s; }
.app-nav a:nth-child(4):hover span:nth-child(2)  { transition-delay: 0.00s; }
.app-nav a:nth-child(4):hover span:nth-child(3)  { transition-delay: 0.01s; }
.app-nav a:nth-child(4):hover span:nth-child(4)  { transition-delay: 0.02s; }
.app-nav a:nth-child(4):hover span:nth-child(5)  { transition-delay: 0.03s; }
.app-nav a:nth-child(4):hover span:nth-child(6)  { transition-delay: 0.04s; }
.app-nav a:nth-child(1) span:nth-child(2)  { transition-delay: 0.02s; }
.app-nav a:nth-child(1) span:nth-child(3)  { transition-delay: 0.01s; }
.app-nav a:nth-child(1) span:nth-child(4)  { transition-delay: 0.00s; }
.app-nav a:nth-child(2) span:nth-child(2)  { transition-delay: 0.02s; }
.app-nav a:nth-child(2) span:nth-child(3)  { transition-delay: 0.01s; }
.app-nav a:nth-child(2) span:nth-child(4)  { transition-delay: 0.00s; }
.app-nav a:nth-child(3) span:nth-child(2)  { transition-delay: 0.06s; }
.app-nav a:nth-child(3) span:nth-child(3)  { transition-delay: 0.05s; }
.app-nav a:nth-child(3) span:nth-child(4)  { transition-delay: 0.04s; }
.app-nav a:nth-child(3) span:nth-child(5)  { transition-delay: 0.03s; }
.app-nav a:nth-child(3) span:nth-child(6)  { transition-delay: 0.02s; }
.app-nav a:nth-child(3) span:nth-child(7)  { transition-delay: 0.01s; }
.app-nav a:nth-child(3) span:nth-child(8)  { transition-delay: 0.00s; }
.app-nav a:nth-child(4) span:nth-child(2)  { transition-delay: 0.04s; }
.app-nav a:nth-child(4) span:nth-child(3)  { transition-delay: 0.03s; }
.app-nav a:nth-child(4) span:nth-child(4)  { transition-delay: 0.02s; }
.app-nav a:nth-child(4) span:nth-child(5)  { transition-delay: 0.01s; }
.app-nav a:nth-child(4) span:nth-child(6)  { transition-delay: 0.00s; }

/* App main */
.app-main {
  position: relative;
  z-index: 1;
}
.app-main a {
  border-bottom: 1px solid var(--color--foreground--25);
}
.app-main a:hover {
  border-bottom-color: var(--color--foreground--100);
  cursor: pointer;
}

/* Section cover */
.section.cover {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  --color--foreground--100: rgb(255 255 255 / 1);
  --color--foreground--50:  rgb(255 255 255 / 0.5);
  --color--foreground--33:  rgb(255 255 255 / 0.333);
  --color--foreground--25:  rgb(255 255 255 / 0.25);
  --color--foreground--20:  rgb(255 255 255 / 0.2);
  --color--foreground--15:  rgb(255 255 255 / 0.15);
  --color--foreground--10:  rgb(255 255 255 / 0.1);
  --color--foreground--5:   rgb(255 255 255 / 0.05);
  --color--foreground--0:   rgb(255 255 255 / 0);
  transform: translateY(-15vh);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.33, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.33, 0, 0.2, 1) 0.25s;
  pointer-events: none;
  display: none;
}
.section.cover > .content {
  grid-column: 1 / -1;
  display: flex;
}
.section.cover h1 {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 40px;
  animation: welcome 1.5s ease-in-out;
}
@keyframes welcome {
  0% { opacity: 0; }
  5% { opacity: 0; }
  100% { opacity: 1; }
}
body.is--loading {
  overflow: hidden;
  pointer-events: none;
}
body.is--loading .app-header {
  transition: opacity 1s cubic-bezier(0.33, 0, 0.2, 1) 0.75s;
}
body.is--loading .app-main {
  position: relative;
  transform: none;
  transition: transform 1.5s cubic-bezier(0.33, 0, 0.2, 1);
}
body.is--loading .section.cover {
  display: grid;
}
body.cover--is--visible .app-main {
  transform: translateY(115vh);
}
body.cover--is--visible .section.cover {
  transform: translateY(-115vh);
  opacity: 1;
}
body.cover--is--visible .app-header {
  opacity: 0;
}
.app-header.header--dark {
  color: #000;
  --color--foreground--100: rgb(0 0 0 / 1);
  --color--foreground--50:  rgb(0 0 0 / 0.5);
  --color--foreground--33:  rgb(0 0 0 / 0.333);
  --color--foreground--25:  rgb(0 0 0 / 0.25);
  --color--foreground--20:  rgb(0 0 0 / 0.2);
  --color--foreground--15:  rgb(0 0 0 / 0.15);
  --color--foreground--10:  rgb(0 0 0 / 0.1);
  --color--foreground--5:   rgb(0 0 0 / 0.05);
  --color--foreground--0:   rgb(0 0 0 / 0);
}
.app-header.header--dark .menu-toggle {
  color: #000;
}

/* Sections */
.section {
  padding: 0 var(--grid--app-margin);
  display: grid;
  grid-template-columns: var(--grid--app-columns);
  gap: var(--grid--app-gutter);
}
.section > .content {
  grid-column: 5 / -1;
}
.section h1 {
  margin-left: var(--font--margin-left);
  font-size: var(--font--size-huge);
  line-height: 0.975;
  letter-spacing: -0.02em;
}
.section h2 {
  margin-left: var(--font--margin-left);
  font-size: var(--font--size-large);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.section h3 {
  font-size: var(--font--size-regular);
  line-height: var(--font--size-regular-line-height);
  color: var(--color--foreground--50);
}

/* Section intro */
.section.intro {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  --color--foreground--100: rgb(255 255 255 / 1);
  --color--foreground--50:  rgb(255 255 255 / 0.5);
  --color--foreground--33:  rgb(255 255 255 / 0.333);
  --color--foreground--25:  rgb(255 255 255 / 0.25);
  --color--foreground--20:  rgb(255 255 255 / 0.2);
  --color--foreground--15:  rgb(255 255 255 / 0.15);
  --color--foreground--10:  rgb(255 255 255 / 0.1);
  --color--foreground--5:   rgb(255 255 255 / 0.05);
  --color--foreground--0:   rgb(255 255 255 / 0);
}
.section.intro > .content {
  padding: calc(var(--grid--app-xheight) - 11px) 0 80px 0;
  position: relative;
  grid-column: 1 / -1;
}
.section.intro .intro-headline {
  max-width: 800px;
}
.section.intro .intro-sub {
  margin-top: 24px;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color--foreground--50);
}
.section.intro .intro-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.section.intro .intro-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid var(--color--foreground--25);
  font-size: 14px;
  color: var(--color--foreground--100);
  text-decoration: none;
  transition: background 0.2s;
}
.section.intro .intro-btn:hover {
  background: var(--color--foreground--10);
  border-color: var(--color--foreground--100);
}

/* Section work */
.project-active-title {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 78px var(--grid--app-margin) 8px;
  pointer-events: none;
  background: var(--color--background--100);
  border-bottom: 1px solid var(--color--foreground--15);
  margin-bottom: 0;
}
.project-active-title .title-item {
  font-size: var(--font--size-large);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color--foreground--25);
  line-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: line-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}
.project-active-title .title-item.active {
  color: #000;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
}
.section.work {
  padding: 0;
  display: block;
}
.section.work .project {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 80px var(--grid--app-margin);
  display: grid;
  grid-template-columns: var(--grid--app-columns);
  gap: var(--grid--app-gutter);
  background: var(--color--background--100);
}
.section.work .project:nth-child(1) { z-index: 1; }
.section.work .project:nth-child(2) { z-index: 2; }
.section.work .project:nth-child(3) { z-index: 3; }
.section.work .project:nth-child(4) { z-index: 4; }
.section.work .project:nth-child(5) { z-index: 5; }
.section.work .project:nth-child(6) { z-index: 6; }
.section.work .project-info {
  grid-column: 1 / 5;
}
.section.work .project-title {
  font-size: var(--font--size-large);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.project-title-link {
  color: inherit;
  text-decoration: none;
  border: none;
}
.project-title-link:hover {
  border: none;
  opacity: 0.6;
}
.project-case-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color--foreground--100);
  text-decoration: none;
  border-bottom: 1px solid var(--color--foreground--25);
  padding-bottom: 2px;
}
.project-case-link:hover {
  border-bottom-color: var(--color--foreground--100);
}
.section.work .project-desc {
  color: var(--color--foreground--50);
  line-height: 1.5;
  margin-bottom: 16px;
}
.section.work .project-meta {
  margin-top: 32px;
}
.section.work .project-meta table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.section.work .project-meta td {
  padding: 12px 0;
  border-top: 1px solid var(--color--foreground--15);
  vertical-align: top;
}
.section.work .project-meta td:first-child {
  width: 35%;
  color: var(--color--foreground--50);
  letter-spacing: 0.03em;
}
.section.work .project-meta td:last-child {
  color: var(--color--foreground--100);
}
.section.work .project-image {
  grid-column: 5 / -1;
}
.section.work .project-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.section.work .project-rect {
  width: 100%;
  aspect-ratio: 2410 / 1520;
  background: var(--color--foreground--15);
  border-radius: 8px;
}

/* Section values */
.section.values > .content {
  padding: 220px 0 20px 0;
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}
.section.values .title {
  padding-bottom: 80px;
  grid-column: 1 / -1;
}
.section.values .description {
  grid-column: 2 / -1;
}

/* Section background */
.section.background > .content {
  padding: 220px 0 20px 0;
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}
.section.background .item {
  padding-top: 80px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  column-gap: var(--grid--app-gutter);
}
.section.background .item .company {
  grid-column: 1 / -1;
}
.section.background .item .role {
  grid-column: 1 / -1;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
.section.background .item .metadata {
  grid-column: 1 / -1;
  padding-top: 10px;
}
.section.background .item .time {
  padding-right: 0.3em;
}
.section.background .item .description {
  padding-top: 10px;
  grid-column: 1 / 2;
  color: var(--color--foreground--50);
}

/* Section references */
.section.references > .content {
  padding: 220px 0 20px 0;
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}
.section.references .item:nth-child(n+3) {
  padding-top: 40px;
}
.section.references .quote {
  padding-right: 20px;
}
.section.references .item p {
  padding-top: 10px;
}
.section.references .person {
  padding-right: 0.3em;
}
.section.references .role {
  color: var(--color--foreground--50);
}

/* Section about */
.section.about > .content {
  padding: 220px 0 20px 0;
  grid-column: 1 / -1;
}
.section.about .about-identities {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.section.about .about-identity {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section.about .about-bio {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color--foreground--50);
  margin-bottom: 80px;
}
.section.about .about-education {
  border-top: 1px solid var(--color--foreground--15);
  padding-top: 40px;
}
.section.about .about-edu-heading {
  font-size: var(--font--size-regular);
  color: var(--color--foreground--50);
  margin-bottom: 32px;
}
.about-edu-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.about-edu-row {
  display: contents;
}
.about-edu-row span {
  padding: 16px 0;
  border-bottom: 1px solid var(--color--foreground--10);
  font-size: 15px;
  line-height: 1.4;
}
.about-edu-header span {
  font-size: 12px;
  color: var(--color--foreground--50);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color--foreground--25);
}

/* Section funwork */
.section.funwork > .content {
  padding: 220px 0 20px 0;
  grid-column: 1 / -1;
}

/* Section contact */
.section.contact {
  background-color: #151515;
  color: #fff;
  --color--foreground--100: rgb(255 255 255 / 1);
  --color--foreground--50:  rgb(255 255 255 / 0.5);
  --color--foreground--33:  rgb(255 255 255 / 0.333);
  --color--foreground--25:  rgb(255 255 255 / 0.25);
  --color--foreground--20:  rgb(255 255 255 / 0.2);
  --color--foreground--15:  rgb(255 255 255 / 0.15);
  --color--foreground--10:  rgb(255 255 255 / 0.1);
  --color--foreground--5:   rgb(255 255 255 / 0.05);
  --color--foreground--0:   rgb(255 255 255 / 0);
}
.section.contact > .content {
  padding: 220px 0 var(--grid--app-margin) 0;
  grid-column: 1 / -1;
}
.contact-audience {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-tab {
  position: relative;
  font-size: 14px;
  color: var(--color--foreground--50);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.contact-tab:hover,
.contact-tab.active {
  color: var(--color--foreground--100);
}
.tab-progress {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color--foreground--100);
  transition: none;
}
.contact-tab.active .tab-progress {
  width: 100%;
  transition: width 3s linear;
}
.contact-message {
  display: none;
}
.contact-message.active {
  display: block;
}
.contact-msg-text {
  font-size: 96px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: none;
}
.contact-msg-link {
  font-size: 16px;
  color: var(--color--foreground--100);
  text-decoration: none;
  border-bottom: 1px solid var(--color--foreground--25);
  padding-bottom: 2px;
  display: inline-block;
}
.contact-msg-link:hover {
  border-bottom-color: var(--color--foreground--100);
}
.contact-msg-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-msg-sep {
  color: var(--color--foreground--50);
  font-size: 16px;
}
