@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600&display=swap");

:root {
  --paper: #f2f1ec;
  --ink: #111111;
  --muted: #8f8f89;
  --line: rgba(17, 17, 17, 0.22);
  --pad: clamp(1.25rem, 3.2vw, 3.5rem);
  --display: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.35rem var(--pad);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.08em;
}

.wordmark-dot {
  display: inline-block;
  margin-left: 0.05em;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  font: 0.72rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: flex;
  min-height: max(46rem, 100svh);
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem var(--pad) 2rem;
}

.name-hero {
  min-height: clamp(28rem, 58svh, 38rem);
  justify-content: space-between;
}

.name-title {
  margin: auto 0;
  width: 100%;
  max-width: none;
  font-size: clamp(3.25rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.075em;
}

.name-title span {
  display: block;
}

.name-title span:last-child {
  margin-top: 0.12em;
}

.hero-meta,
.contact-top {
  display: flex;
  justify-content: space-between;
  font: 0.66rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  margin: 4rem 0;
  font-size: clamp(3.35rem, 8.5vw, 9.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero-title > span {
  display: block;
}

.hero-line {
  display: flex !important;
  align-items: center;
  gap: 0.2em;
  margin-left: 8.5vw;
}

.asterisk {
  display: inline-flex;
  width: 0.72em;
  height: 0.72em;
  align-items: center;
  justify-content: center;
  font-size: 0.63em;
  animation: rotate-mark 12s linear infinite;
}

.outline-text {
  color: var(--paper);
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.hero-footer p {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.round-link {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(0.3rem);
}

.round-link svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 1rem 0;
  animation: ticker 32s linear infinite;
  font: 0.7rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-track span {
  margin-left: 3rem;
}

.marquee-track i {
  margin-left: 3rem;
  font-style: normal;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 19%) 1fr;
  border-bottom: 1px solid var(--ink);
}

.section-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4.5rem var(--pad);
  border-right: 1px solid var(--line);
  font: 0.68rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.about-content,
.work-content {
  padding: 4.5rem var(--pad) 6.5rem;
}

.statement {
  max-width: 64rem;
  margin: 0 0 7rem;
  font-size: clamp(2.65rem, 5.8vw, 6.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.statement span {
  display: block;
}

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

.about-details {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.about-details > p {
  max-width: 39rem;
  margin: 0;
  font-size: clamp(1.15rem, 1.75vw, 1.65rem);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.services {
  margin: 0;
  border-top: 1px solid var(--line);
}

.services div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.5;
}

.services dt {
  color: var(--muted);
  font: 0.63rem var(--mono);
  text-transform: uppercase;
}

.services dd {
  margin: 0;
}

.services dd a {
  display: inline-block;
  margin-right: 1rem;
  border-bottom: 1px solid transparent;
}

.services dd a:hover {
  border-color: currentColor;
}

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

.work-content {
  padding-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.section-heading p {
  margin: 0 0 0.5rem;
  font: 0.64rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project {
  border-top: 1px solid var(--ink);
}

.project > a {
  display: grid;
  grid-template-columns: 3.5rem minmax(12rem, 30%) 1fr auto;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  padding: 1.25rem 0;
}

.project-number {
  align-self: start;
  padding-top: 0.35rem;
  font: 0.65rem var(--mono);
}

.project-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #deddd7;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project:hover .project-visual {
  transform: scale(0.975);
}

.visual-one {
  display: grid;
  background: var(--ink);
  place-items: center;
}

.project-mark {
  z-index: 2;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.orbit {
  position: absolute;
  width: 65%;
  height: 65%;
  border: 1px solid rgba(242, 241, 236, 0.5);
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(32deg) skewX(42deg);
}

.orbit-two {
  transform: rotate(-32deg) skewX(-42deg);
}

.visual-two {
  display: grid;
  background:
    radial-gradient(circle at 20% 20%, rgba(17, 17, 17, 0.22) 0 1px, transparent 1.5px) 0 0 / 8px 8px,
    #d8d7d1;
  place-items: center;
}

.form-card {
  position: absolute;
  width: 47%;
  aspect-ratio: 0.72;
  border: 1px solid var(--ink);
}

.card-back {
  background: var(--paper);
  transform: rotate(-10deg) translate(-14%, -2%);
}

.card-front {
  display: flex;
  align-items: flex-end;
  padding: 0.65rem;
  color: var(--paper);
  background: var(--ink);
  font: clamp(0.45rem, 0.8vw, 0.8rem)/1.1 var(--mono);
  transform: rotate(8deg) translate(18%, 1%);
}

.visual-three {
  background: #cecdc7;
}

.cg-grid {
  position: absolute;
  inset: 12%;
  border: 1px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 49.5%, var(--ink) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, var(--ink) 50%, transparent 50.5%);
}

.cg-text {
  position: absolute;
  bottom: 15%;
  left: 17%;
  font: clamp(0.75rem, 1.8vw, 1.8rem)/0.92 var(--mono);
  letter-spacing: -0.08em;
}

.project-info h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 3.2vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.project-info p,
.project-info span {
  display: inline;
  margin: 0;
  font: 0.63rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info span::before {
  margin: 0 0.65rem;
  content: "—";
}

.project-arrow {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.project:hover .project-arrow {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(45deg);
}

.thoughts-content {
  padding: 4.5rem var(--pad) 6.5rem;
}

.thought-card {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.thought-card > a {
  display: grid;
  grid-template-columns: 9rem 1fr auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  padding: 2rem 0 2.25rem;
}

.thought-meta {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font: 0.62rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.thought-meta span:first-child {
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.thought-copy h3 {
  max-width: 50rem;
  margin: 0 0 1.2rem;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.thought-copy p {
  max-width: 43rem;
  margin: 0;
  color: #555550;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.thought-arrow {
  padding-top: 0.4rem;
  font: 0.66rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 250ms ease;
}

.thought-card:hover .thought-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.contact {
  min-height: 100svh;
  padding: 4.5rem var(--pad) 1.5rem;
  color: var(--paper);
  background: var(--ink);
}

.contact-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242, 241, 236, 0.25);
}

.contact-main {
  display: flex;
  min-height: 52svh;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
}

.contact-main h2 {
  margin: 0 0 4rem;
  font-size: clamp(4rem, 10.5vw, 11rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.contact-main em {
  color: var(--ink);
  font-family: Georgia, serif;
  font-weight: 400;
  -webkit-text-stroke: 1.25px var(--paper);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  font: 0.72rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-link span:last-child {
  font-size: 1.1rem;
  transition: transform 250ms ease;
}

.contact-link:hover span:last-child {
  transform: translate(0.3rem, -0.3rem);
}

footer {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  color: #a4a49f;
  font: 0.6rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

footer a {
  color: var(--paper);
}

.article-page {
  background: var(--paper);
}

.article-hero {
  min-height: 90svh;
  padding: 8.5rem var(--pad) 3rem;
  border-bottom: 1px solid var(--ink);
}

.article-back,
.article-kicker,
.article-byline {
  font: 0.65rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-back {
  display: inline-block;
  margin-bottom: clamp(4rem, 10vh, 8rem);
  border-bottom: 1px solid transparent;
}

.article-back:hover {
  border-color: currentColor;
}

.article-kicker {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.article-hero h1 {
  max-width: 78rem;
  margin: 0;
  font-size: clamp(4.5rem, 10vw, 10.5rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.article-hero h1 em {
  color: var(--ink);
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  -webkit-text-stroke: 0;
}

.article-dek {
  max-width: 52rem;
  margin: 3.5rem 0 5rem;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.article-byline {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.voice-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--ink);
}

.voice-main,
.voice-options,
.voice-toggle {
  display: flex;
  align-items: center;
}

.voice-main {
  gap: 1.25rem;
}

.voice-toggle,
.voice-restart {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.voice-toggle {
  gap: 0.75rem;
  font: 0.68rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.voice-symbol {
  display: flex;
  width: 1.8rem;
  height: 1.8rem;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
}

.voice-symbol i {
  display: block;
  width: 1px;
  height: 0.35rem;
  background: currentColor;
}

.voice-symbol i:nth-child(2),
.voice-symbol i:nth-child(3) {
  height: 0.65rem;
}

.voice-player.is-playing .voice-symbol i {
  animation: voice-wave 700ms ease-in-out infinite alternate;
}

.voice-player.is-playing .voice-symbol i:nth-child(2) {
  animation-delay: -350ms;
}

.voice-player.is-playing .voice-symbol i:nth-child(3) {
  animation-delay: -175ms;
}

.voice-player.is-playing .voice-symbol i:nth-child(4) {
  animation-delay: -525ms;
}

.voice-status {
  color: var(--muted);
  font: 0.6rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.voice-options {
  gap: 0.8rem;
  font: 0.62rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.voice-options label {
  color: var(--muted);
}

.voice-options select {
  min-width: 4.6rem;
  padding: 0.5rem 1.65rem 0.5rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.voice-restart {
  margin-left: 0.5rem;
  font: inherit;
  text-transform: uppercase;
}

.voice-toggle:hover,
.voice-restart:hover {
  opacity: 0.55;
}

.voice-player.is-unsupported {
  opacity: 0.55;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 19%) minmax(0, 1fr);
  border-bottom: 1px solid var(--ink);
}

.article-rail {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem var(--pad);
  border-right: 1px solid var(--line);
  font: 0.61rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-body {
  width: min(100%, 54rem);
  padding: 5rem var(--pad) 8rem;
}

.article-body p,
.article-body li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.55vw, 1.4rem);
  line-height: 1.7;
}

.article-body p {
  margin: 0 0 1.6em;
}

.article-body .article-lead {
  margin-bottom: 2em;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.article-body h2 {
  margin: 3.5em 0 0.8em;
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.article-body a {
  border-bottom: 1px solid var(--ink);
}

.article-body .source-link {
  border: 0;
  font: 0.65em var(--mono);
  vertical-align: super;
}

.article-body blockquote {
  margin: 3.5rem 0;
  padding: 1.5rem 0 1.5rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.article-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 3.5rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-stats div {
  padding: 1.5rem 1.5rem 1.75rem 0;
}

.article-stats div + div {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.article-stats strong,
.article-stats span {
  display: block;
}

.article-stats strong {
  margin-bottom: 0.4rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.07em;
}

.article-stats span {
  max-width: 14rem;
  color: var(--muted);
  font: 0.62rem/1.45 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-sources {
  margin-top: 6rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--ink);
}

.article-sources h2 {
  margin-top: 1.5rem;
  font: 0.68rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-sources ol {
  padding-left: 1.3rem;
}

.article-sources li {
  margin-bottom: 0.9rem;
  padding-left: 0.4rem;
  color: #555550;
  font: 0.75rem/1.55 var(--mono);
}

.article-sources a {
  border-color: var(--line);
}

.article-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem var(--pad);
  color: var(--paper);
  background: var(--ink);
}

.article-end p {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
}

.article-end a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper);
  font: 0.67rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.article-site-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem var(--pad);
  color: var(--muted);
  background: var(--ink);
  font: 0.6rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-site-footer a {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rotate-mark {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes voice-wave {
  from {
    transform: scaleY(0.55);
  }

  to {
    transform: scaleY(1.35);
  }
}

@media (max-width: 760px) {
  body {
    background: var(--paper);
  }

  .site-header {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    font: 0.65rem var(--mono);
    text-transform: uppercase;
  }

  .menu-icon,
  .menu-icon::before {
    display: block;
    width: 1.1rem;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-icon::before {
    content: "";
    transform: translateY(-0.28rem);
  }

  .menu-button[aria-expanded="true"] .menu-icon {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon::before {
    transform: rotate(-90deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 1rem var(--pad) 1.5rem;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.4rem;
  }

  .hero {
    min-height: 45rem;
    padding-top: 6rem;
  }

  .name-hero {
    min-height: 30rem;
  }

  .name-title {
    font-size: clamp(3rem, 12vw, 4.5rem);
    line-height: 0.88;
  }

  .name-title span:last-child {
    margin-top: 0.14em;
  }

  .hero-meta span:last-child {
    display: none;
  }

  .hero-title {
    margin: 2.5rem 0;
    font-size: clamp(3.3rem, 17vw, 5.8rem);
    line-height: 0.9;
  }

  .hero-line {
    display: block !important;
    margin-left: 0;
  }

  .hero-line .asterisk {
    margin-right: 0.08em;
    vertical-align: 0.08em;
  }

  .hero-footer {
    grid-template-columns: 1fr;
  }

  .round-link {
    display: none;
  }

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

  .section-label {
    flex-direction: row;
    padding: 1.1rem var(--pad);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .about-content,
  .work-content,
  .thoughts-content {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .statement {
    margin-bottom: 4rem;
  }

  .about-details {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 3.5rem;
  }

  .section-heading p {
    margin-top: 1.5rem;
  }

  .project > a {
    grid-template-columns: 2rem 1fr auto;
    gap: 1rem;
    padding: 1rem 0 1.4rem;
  }

  .project-visual {
    grid-column: 2 / 4;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .project-number {
    grid-column: 1;
    grid-row: 1;
  }

  .project-info {
    grid-column: 2;
  }

  .project-arrow {
    grid-column: 3;
  }

  .thought-card > a {
    grid-template-columns: 1fr auto;
    gap: 2rem 1rem;
  }

  .thought-meta {
    grid-column: 1 / 3;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .thought-meta span:first-child {
    margin-bottom: 0;
  }

  .thought-copy {
    grid-column: 1;
  }

  .thought-arrow {
    grid-column: 2;
    align-self: end;
  }

  .contact {
    padding-top: 2rem;
  }

  .contact-top span:last-child {
    display: none;
  }

  .contact-main {
    min-height: 48svh;
  }

  .contact-main h2 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  footer span:nth-child(2) {
    display: none;
  }

  .article-hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }

  .article-back {
    margin-bottom: 4rem;
  }

  .article-hero h1 {
    font-size: clamp(3.7rem, 16.5vw, 6rem);
    line-height: 0.88;
  }

  .article-dek {
    margin: 2.5rem 0 3.5rem;
  }

  .article-byline {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
  }

  .article-byline span:first-child {
    grid-column: 1 / 3;
  }

  .voice-player {
    display: grid;
    gap: 1rem;
  }

  .voice-main {
    justify-content: space-between;
  }

  .voice-status {
    max-width: 11rem;
    text-align: right;
  }

  .voice-options {
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
  }

  .voice-restart {
    margin-left: auto;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-rail {
    display: none;
  }

  .article-body {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .article-body h2 {
    margin-top: 2.5em;
  }

  .article-stats {
    grid-template-columns: 1fr;
  }

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

  .article-end {
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .article-end p {
    margin-bottom: 2.5rem;
  }

  .article-site-footer {
    grid-template-columns: 1fr auto;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --line: rgba(17, 17, 17, 0.65);
  }
}
