:root {
  --bg: #10100f;
  --paper: #f2f1eb;
  --ink: #10100f;
  --acid: #d9ff43;
  --muted: #9b9b93;
  --line: #30302d;
  --sans: 'Manrope', sans-serif;
  --mono: 'DM Mono', monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box }

html { scroll-behavior: smooth }

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(16, 16, 15, .82);
  backdrop-filter: blur(18px) saturate(1.1);
}

.mark {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -.05em;
  transition: opacity .2s;
}

.mark:hover { opacity: .85 }
.mark span { color: var(--acid) }

nav { display: flex; gap: 2.2rem }

nav a,
.language {
  font: 500 .75rem var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #bbb;
  text-decoration: none;
  transition: color .2s;
}

nav a:hover { color: var(--acid) }

.language {
  border: 0;
  background: transparent;
  display: flex;
  gap: .4rem;
  cursor: pointer;
  padding: 6px 0;
}

.language .active { color: var(--acid) }

.section-pad {
  padding-left: 6vw;
  padding-right: 6vw;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 148px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.section-number {
  font: 500 .72rem var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #b9b9b0;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 255, 67, .5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent }
}

h1 {
  font-size: clamp(4rem, 10.5vw, 9.6rem);
  letter-spacing: -.075em;
  line-height: .84;
  margin: 2.4rem 0 3.4rem;
  font-weight: 600;
  max-width: 1080px;
}

h1 em {
  font-style: normal;
  color: var(--acid);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.hero-bottom p {
  max-width: 600px;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.58;
  color: #c4c4bd;
  margin: 0;
}

.round-link {
  width: 148px;
  height: 148px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.25;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 0 0 0 rgba(217, 255, 67, 0);
}

.round-link:hover {
  transform: rotate(-6deg) scale(1.04);
  box-shadow: 0 12px 40px rgba(217, 255, 67, .18);
}

.round-link b {
  font-size: 1.5rem;
  align-self: flex-end;
}

.hero-code {
  position: absolute;
  right: 3.5vw;
  top: 138px;
  writing-mode: vertical-rl;
  font: 400 .64rem var(--mono);
  letter-spacing: .2em;
  color: #4b4b47;
}


.proof {
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #141412;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 34px 28px 38px 0;
}

.proof-item + .proof-item {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--acid);
  margin: 0 0 .55rem;
}

.proof-item span {
  display: block;
  max-width: 220px;
  font: 400 .72rem var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}

.manifesto,
.work,
.story,
.future,
.build,
.consulting {
  padding-top: 120px;
  padding-bottom: 120px;
}

.manifesto {
  background: var(--acid);
  color: var(--ink);
}

.section-number {
  margin: 0 0 56px;
  color: inherit;
  opacity: .72;
}

.manifesto .section-number,
.work .section-number,
.consulting .section-number {
  opacity: .55;
}

.manifesto-grid,
.future-grid,
.consulting-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 9vw;
}

.manifesto h2,
.future h2,
.consulting h2,
.build-lead h2,
.story h2 {
  font-size: clamp(2.4rem, 5.1vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  margin: 0;
  font-weight: 600;
}

.copy-stack { padding-top: .4rem }

.copy-stack p,
.future-grid p,
.consulting-grid p {
  font-size: 1.08rem;
  line-height: 1.68;
  margin: 0 0 1.5rem;
}

.work {
  background: var(--paper);
  color: var(--ink);
}

.work-list { border-top: 1px solid #aaa }

.work-item {
  display: grid;
  grid-template-columns: 55px 1fr 60px;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid #aaa;
  padding: 34px 0;
  transition: padding .25s var(--ease), background .25s;
}

.work-item:hover {
  padding-left: 16px;
  background: #e8e7de;
}

.work-item .index {
  font: 400 .72rem var(--mono);
  padding-top: .55rem;
  color: #777;
}

.work-item h3 {
  font-size: clamp(1.5rem, 3.1vw, 3.3rem);
  letter-spacing: -.045em;
  margin: 0 0 .45rem;
}

.work-item p {
  margin: 0;
  color: #686863;
  max-width: 650px;
  line-height: 1.55;
}

.work-item > a,
.arrow {
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
  text-align: right;
  transition: transform .25s var(--ease), color .2s;
}

.work-item:hover > a,
.work-item:hover .arrow {
  color: #2455ff;
  transform: translate(2px, -2px);
}

.story { background: #171715 }

.story-head {
  display: grid;
  grid-template-columns: .7fr 2fr;
  align-items: end;
  gap: 2rem;
}

.story-head .section-number { margin: 0 }

.sports-loop {
  margin: 72px -6vw 52px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  font: 500 clamp(1.15rem, 1.9vw, 1.85rem) var(--mono);
  letter-spacing: .02em;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.sports-loop-track {
  display: inline-flex;
  gap: 1.15rem;
  align-items: center;
  min-width: max-content;
  animation: marquee 42s linear infinite;
  padding-left: 6vw;
}

.sports-loop i {
  font-style: normal;
  color: var(--acid);
}

@keyframes marquee {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

.sport-tabs-wrap {
  position: relative;
  margin-bottom: 8px;
}

.sport-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 20px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.sport-tabs::-webkit-scrollbar { display: none }

.sport-tabs-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #171715 85%);
  opacity: 1;
  transition: opacity .25s;
}

.sport-tabs-wrap.is-scrolled-end .sport-tabs-fade { opacity: 0 }

.sport-tabs button {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid #454540;
  background: transparent;
  color: #c4c4bc;
  padding: 11px 16px;
  font: 500 .7rem var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.sport-tabs button:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.sport-tabs button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.sport-tabs button.is-active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.sport-tabs button.is-active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -11px;
  height: 2px;
  background: var(--acid);
}

.sport-panels { margin: 0 0 56px }

.sport-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .72fr);
  min-height: 440px;
  border: 1px solid var(--line);
  background: #11110f;
  overflow: hidden;
}

.sport-panel[hidden] { display: none }

.sport-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217, 255, 67, .04), transparent 55%),
    #090909;
  overflow: hidden;
  position: relative;
}

.sport-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .04);
  pointer-events: none;
}

.sport-frame.sport-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 480px;
  align-items: stretch;
}

.sport-panel img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease);
}

.sport-panel:hover img { transform: scale(1.02) }

.sport-panel .sport-duo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.sport-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 34px 34px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, #131311 0%, #10100e 100%);
}

.sport-index {
  margin-bottom: auto;
  font: 500 .68rem var(--mono);
  color: var(--acid);
  letter-spacing: .1em;
}

.sport-panel h3 {
  margin: 28px 0 14px;
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.sport-panel p {
  margin: 0;
  color: #b8b8b0;
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 36ch;
}

.sport-panel.is-active { animation: sportReveal .38s var(--ease) both }

@keyframes sportReveal {
  from {
    opacity: .2;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.story-copy {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.story-copy > p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.55;
  margin: 28px 0 0;
  color: #c9c9c1;
}

.future {
  background: #2455ff;
  color: white;
}

.future .section-number { color: #cbd6ff; opacity: 1 }

.future h2 {
  font-size: clamp(2.9rem, 6.2vw, 6.2rem);
}

.future-grid p { font-size: 1.12rem }

.terminal {
  margin-top: 50px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .32);
  font: 400 .83rem var(--mono);
  color: #bac8ff;
  background: rgba(0, 0, 0, .12);
}

.terminal b { color: var(--acid) }

.terminal i {
  display: inline-block;
  height: 1em;
  width: 7px;
  background: var(--acid);
  vertical-align: -2px;
  margin-left: 3px;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0 }
}

.build { background: var(--bg) }

.build-lead {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 8vw;
  align-items: end;
}

.build-lead p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #b8b8b1;
  margin: 0;
}

.opportunity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.opportunity > div { padding: 28px 30px 40px 0 }

.opportunity > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.opportunity span {
  font: 500 .7rem var(--mono);
  color: var(--acid);
  letter-spacing: .08em;
}

.opportunity p {
  line-height: 1.58;
  color: #c2c2ba;
  margin: 14px 0 0;
}

.big-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--acid);
  color: var(--ink);
  padding: 28px 32px;
  text-decoration: none;
  font-size: clamp(1.08rem, 1.9vw, 1.7rem);
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.big-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(217, 255, 67, .16);
}

.big-cta b { font-size: 1.8rem }

.consulting {
  background: var(--paper);
  color: var(--ink);
}

.consulting-grid { align-items: start }

.consulting-grid .plain { font-weight: 700 }

.text-link {
  display: inline-flex;
  gap: 1rem;
  color: var(--ink);
  font: 500 1rem var(--mono);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  text-decoration: none;
  transition: color .2s, border-color .2s;
}

.text-link:hover {
  color: #2455ff;
  border-color: #2455ff;
}

.contact {
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--acid);
  color: var(--ink);
  padding-top: 80px;
  padding-bottom: 20px;
}

.contact > p {
  font: 500 .78rem var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 18px;
  opacity: .7;
}

.contact > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(3.5rem, 9.5vw, 9.4rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: 1;
  border-bottom: 4px solid var(--ink);
  padding-bottom: 18px;
  transition: opacity .2s;
}

.contact > a:hover { opacity: .82 }
.contact > a b { font-size: .45em }

.contact-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 84px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(16, 16, 15, .22);
  font: 400 .68rem var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-foot a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity .2s;
}

.contact-foot a:hover { opacity: .65 }

.about-portrait {
  width: min(100%, 236px);
  margin: 0 0 1.8rem auto;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: saturate(.9);
}

.about-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 16, 15, .35);
  margin-top: 10px;
  font: 500 .66rem var(--mono);
  letter-spacing: .07em;
}

.visual-break {
  position: relative;
  display: block;
  height: min(70vw, 760px);
  overflow: hidden;
  background: #252521;
  color: white;
}

.visual-break:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .74));
}

.visual-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform .85s var(--ease);
}

.visual-break:hover img { transform: scale(1.03) }

.visual-label {
  position: absolute;
  left: 6vw;
  bottom: 42px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.visual-label b,
.project-shot b {
  font: 500 .8rem var(--mono);
  letter-spacing: .08em;
}

.visual-label em,
.project-shot em {
  font-style: normal;
  color: #c8c8c1;
}

.visual-arrow {
  position: absolute;
  right: 6vw;
  bottom: 40px;
  z-index: 1;
  font-size: 1.9rem;
}

.project-images {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 2.2vw;
  padding-top: 90px;
  padding-bottom: 105px;
  background: var(--paper);
  color: var(--ink);
}

.project-shot {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.shot-frame {
  overflow: hidden;
  background: #d7d6d0;
}

.project-shot-wide .shot-frame { aspect-ratio: 16 / 9 }
.project-shot-tall .shot-frame { aspect-ratio: 3 / 4 }

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .4s;
}

.project-shot:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.project-shot > span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 14px;
  border-top: 1px solid #aaa;
  margin-top: 12px;
}

.project-shot em {
  text-align: right;
  color: #666;
}

@media (max-width: 800px) {
  .topbar {
    height: 64px;
    padding: 0 20px;
  }

  .topbar nav { display: none }

  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 108px;
    min-height: 92svh;
  }

  .hero-code { display: none }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
    margin: 1.8rem 0 2.4rem;
  }

  .hero-bottom { align-items: flex-start }

  .hero-bottom p { font-size: 1rem }

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

  .proof-item {
    padding: 22px 0;
  }

  .proof-item + .proof-item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item strong {
    font-size: 1.85rem;
  }

  .round-link {
    width: 102px;
    height: 102px;
    padding: 15px;
    font-size: .7rem;
  }

  .manifesto,
  .work,
  .story,
  .future,
  .build,
  .consulting {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-number { margin-bottom: 38px }

  .manifesto-grid,
  .future-grid,
  .consulting-grid,
  .build-lead,
  .story-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .manifesto h2,
  .future h2,
  .consulting h2,
  .build-lead h2,
  .story h2 {
    font-size: 2.5rem;
  }

  .work-item {
    grid-template-columns: 32px 1fr 28px;
  }

  .story-head .section-number { margin-bottom: 0 }

  .sports-loop {
    margin: 44px -20px 36px;
  }

  .sports-loop-track { padding-left: 20px }

  .sport-tabs-wrap { margin-right: -20px }

  .sport-tabs {
    padding-right: 36px;
    gap: 7px;
  }

  .sport-tabs button {
    padding: 10px 13px;
    font-size: .66rem;
  }

  .sport-tabs button.is-active::after {
    bottom: -10px;
    left: 10px;
    right: 10px;
  }

  .sport-tabs-fade {
    right: 0;
    width: 40px;
  }

  .sport-panels { margin-bottom: 42px }

  .sport-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sport-frame { aspect-ratio: 4 / 3 }

  .sport-panel img { max-height: none }

  .sport-frame.sport-duo {
    min-height: 360px;
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr;
  }
  .sport-panel .sport-duo img { min-height: 280px; height: 320px; }

  .sport-copy {
    min-height: 210px;
    padding: 24px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .sport-panel h3 { margin-top: 36px }

  .sport-index { margin-bottom: 0 }

  .story-copy > p {
    font-size: 1.12rem;
    margin-top: 22px;
  }

  .opportunity {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .opportunity > div { padding: 24px 0 }

  .opportunity > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact { min-height: 58svh }

  .contact-foot {
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 52px;
  }

  .contact > a { font-size: 17vw }
  .contact > a b { font-size: .6em }

  .about-portrait {
    width: min(52vw, 210px);
    margin-left: auto;
    margin-right: auto;
  }

  .visual-break { height: 66svh }

  .visual-label {
    left: 20px;
    bottom: 24px;
  }

  .visual-arrow {
    right: 20px;
    bottom: 22px;
  }

  .project-images {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 68px;
    gap: 42px;
  }

  .project-shot-tall {
    width: 78%;
    margin-left: auto;
  }

  .project-shot > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .project-shot em {
    text-align: left;
    font-size: .85rem;
  }
}

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

  .pulse,
  .terminal i,
  .typed,
  .sports-loop-track,
  .sport-panel.is-active {
    animation: none !important;
  }

  .pulse {
    box-shadow: none;
  }

  .terminal i {
    opacity: 1;
  }

  .round-link,
  .big-cta,
  .sport-panel img,
  .visual-break img,
  .shot-frame img {
    transition: none !important;
  }
}


.contact > p.contact-doors {
  margin: 22px 0 0;
  font: 500 .82rem var(--mono);
  letter-spacing: .04em;
  text-transform: none;
  opacity: .72;
  max-width: 42rem;
}

.contact-mails {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 28px 0 0;
}
.contact-mails a {
  font: 500 .85rem var(--mono);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(16,16,15,.35);
  padding-bottom: 2px;
}
.contact-mails a:hover { border-color: var(--ink); }
