:root {
  --paper: #f4f0e7;
  --paper-bright: #fffdf7;
  --ink: #11100e;
  --muted: #625f57;
  --blue: #4057ff;
  --red: #ff4f3e;
  --yellow: #ffd51f;
  --pink: #ff55bf;
  --green: #52e394;
  --white: #ffffff;
  --line: 2px solid var(--ink);
  --line-thick: 4px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --radius: 0.2rem;
  --page: min(1180px, calc(100vw - 2rem));
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection,
body *::selection {
  color: var(--paper-bright);
  background: var(--ink);
}

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

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

a:hover {
  text-decoration-style: wavy;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.shell {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow,
.kicker,
.meta,
.card-index,
.tag,
.site-nav,
.mini-label,
.note-date,
.status-label {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 6vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-transform: uppercase;
}

.section-copy {
  max-width: 43rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: var(--line);
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 4.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: var(--line);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 0.22rem;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(800px, calc(100svh - 4.7rem));
  overflow: hidden;
  border-bottom: var(--line-thick);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  align-content: center;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  padding: 0.45rem 0.7rem;
  border: var(--line);
  background: var(--paper-bright);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero__eyebrow::before {
  width: 0.68rem;
  height: 0.68rem;
  border: var(--line);
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero__title {
  max-width: 8.8ch;
  font-size: clamp(4rem, 12.7vw, 10.5rem);
}

.hero__title span {
  display: block;
}

.hero__title span:nth-child(2) {
  width: fit-content;
  padding-inline: 0.08em 0.12em;
  color: var(--paper-bright);
  background: var(--blue);
  transform: rotate(-1deg) translateX(0.15em);
}

.hero__intro {
  display: grid;
  max-width: 42rem;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.hero__intro p {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 620;
}

.hero__actions,
.contact__actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.15rem;
  border: var(--line);
  border-radius: 0;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--red);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--red);
  transform: translate(3px, 3px);
}

.button--paper {
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 5px 5px 0 var(--ink);
}

.button--paper:hover {
  box-shadow: 2px 2px 0 var(--ink);
}

.button--blue {
  color: var(--paper-bright);
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
}

.button--yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.button__arrow {
  font-size: 1.15em;
  transition: transform 140ms ease;
}

.button:hover .button__arrow {
  transform: translate(0.15rem, -0.15rem);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border: var(--line-thick);
  pointer-events: none;
}

.hero-shape--red {
  top: 9%;
  right: 7%;
  width: clamp(8rem, 17vw, 16rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  transform: rotate(7deg);
}

.hero-shape--yellow {
  right: 19%;
  bottom: 8%;
  width: clamp(9rem, 19vw, 18rem);
  aspect-ratio: 1.35;
  background: var(--yellow);
  transform: rotate(-7deg);
}

.hero-shape--pink {
  right: -3rem;
  bottom: 25%;
  width: clamp(7rem, 14vw, 13rem);
  aspect-ratio: 0.52;
  background: var(--pink);
  transform: rotate(14deg);
}

.ticker {
  overflow: hidden;
  border-bottom: var(--line-thick);
  background: var(--ink);
  color: var(--paper-bright);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.85rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker__dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 2px solid var(--paper-bright);
  border-radius: 50%;
  background: var(--yellow);
}

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

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-bottom: var(--line-thick);
}

.quote-strip {
  background: var(--yellow);
  border-bottom: var(--line-thick);
}

.quote-strip__inner {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.quote-strip__label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.quote-strip__quote {
  margin: 0;
}

.quote-strip__quote p {
  max-width: 28ch;
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.quote-strip__quote footer {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-strip__aside {
  grid-column: 2;
  margin: 0;
  font-size: 0.8rem;
}

.section--blue {
  color: var(--paper-bright);
  background: var(--blue);
}

.section--blue .section-copy {
  color: color-mix(in srgb, var(--paper-bright) 78%, var(--blue));
}

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

.section--ink .section-copy {
  color: #c9c5bb;
}

.section--yellow {
  background: var(--yellow);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  display: grid;
  min-height: 28rem;
  grid-column: span 4;
  align-content: space-between;
  gap: 3rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  overflow: hidden;
  border: var(--line-thick);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.feature-card:hover {
  text-decoration: none;
  box-shadow: 12px 12px 0 var(--ink);
  transform: translate(-5px, -5px);
}

.feature-card:nth-child(1) {
  background: var(--yellow);
}

.feature-card:nth-child(2) {
  color: var(--paper-bright);
  background: var(--red);
}

.feature-card:nth-child(3) {
  background: var(--green);
}

.feature-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.feature-card__symbol {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.6rem;
}

.feature-card__body h3 {
  max-width: 9ch;
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-card__body p {
  max-width: 31rem;
  margin: 0;
  font-weight: 620;
}

.feature-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 2px solid currentColor;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.door-list {
  border-top: 2px solid currentColor;
}

.door {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(8rem, 0.45fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding-block: clamp(1.2rem, 2.8vw, 2rem);
  border-bottom: 2px solid currentColor;
  text-decoration: none;
  transition: padding-inline 160ms ease, background 160ms ease, color 160ms ease;
}

.door:hover {
  padding-inline: 1rem;
  color: var(--ink);
  background: var(--yellow);
  text-decoration: none;
}

.door__number {
  opacity: 0.72;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.door__title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.door__desc {
  font-size: 0.9rem;
  font-weight: 650;
}

.door__arrow {
  font-size: 1.8rem;
}

.is-placeholder .door__title::after,
.inline-link.is-placeholder::after {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid currentColor;
  content: "ADD LINK";
  font-family: var(--body);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.share-card {
  display: grid;
  min-height: 13rem;
  align-content: space-between;
  gap: 2rem;
  padding: 1.3rem;
  border: var(--line);
  background: var(--paper-bright);
  box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.share-card:nth-child(2) {
  background: var(--pink);
}

.share-card:nth-child(3) {
  background: var(--green);
}

.share-card:nth-child(4) {
  background: var(--red);
  color: var(--paper-bright);
}

.share-card:hover {
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.share-card strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.share-card span:last-child {
  font-size: 0.84rem;
  font-weight: 680;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1.5rem;
}

.about-copy p {
  max-width: 47rem;
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.about-copy p:first-of-type::first-letter {
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 4.3em;
  line-height: 0.72;
}

.capability-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--paper-bright);
  font-weight: 780;
}

.capability-list li:nth-child(1) {
  background: var(--blue);
}

.capability-list li:nth-child(2) {
  color: var(--ink);
  background: var(--yellow);
}

.capability-list li:nth-child(3) {
  color: var(--ink);
  background: var(--green);
}

.capability-list li:nth-child(4) {
  color: var(--ink);
  background: var(--pink);
}

.capability-list small {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.contact::after {
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 19rem;
  aspect-ratio: 1;
  border: var(--line-thick);
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.contact__email {
  width: min(100%, 66rem);
  padding: clamp(0.55rem, 1.8vw, 1.25rem);
  border: var(--line-thick);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.contact__email img {
  width: 100%;
  height: auto;
}

.contact__note {
  max-width: 40rem;
  margin: 0;
  font-weight: 650;
}

.site-footer {
  padding-block: 2rem;
  color: var(--paper-bright);
  background: var(--ink);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-swatch {
  display: flex;
  height: 1rem;
  overflow: hidden;
  border: 1px solid var(--paper-bright);
}

.footer-swatch span {
  width: 1.7rem;
}

.footer-swatch span:nth-child(1) { background: var(--blue); }
.footer-swatch span:nth-child(2) { background: var(--red); }
.footer-swatch span:nth-child(3) { background: var(--yellow); }
.footer-swatch span:nth-child(4) { background: var(--pink); }
.footer-swatch span:nth-child(5) { background: var(--green); }

.toast {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border: var(--line);
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--pink);
  font-size: 0.82rem;
  font-weight: 760;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 8.5rem);
  border-bottom: var(--line-thick);
}

.page-hero--blue {
  color: var(--paper-bright);
  background: var(--blue);
}

.page-hero--red {
  color: var(--paper-bright);
  background: var(--red);
}

.page-hero--yellow {
  background: var(--yellow);
}

.page-hero--green {
  background: var(--green);
}

.page-hero--pink {
  background: var(--pink);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
}

.page-hero__title {
  max-width: 10ch;
  font-size: clamp(4.2rem, 13vw, 10rem);
}

.page-hero__copy {
  max-width: 47rem;
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 680;
}

.page-hero__stamp {
  position: absolute;
  right: 4%;
  bottom: 14%;
  display: grid;
  width: clamp(7rem, 15vw, 12rem);
  aspect-ratio: 1;
  place-items: center;
  border: var(--line-thick);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(0.72rem, 1.5vw, 1rem);
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.content-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: var(--line-thick);
}

.content-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 3rem;
}

.content-section__head h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.content-section__head p {
  max-width: 45rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 610;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-card {
  display: grid;
  min-height: 23rem;
  align-content: space-between;
  gap: 3rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: var(--line-thick);
  background: var(--paper-bright);
  box-shadow: 6px 6px 0 var(--ink);
}

.project-card:nth-child(4n + 1) { background: var(--yellow); }
.project-card:nth-child(4n + 2) { background: var(--paper-bright); }
.project-card:nth-child(4n + 3) { color: var(--paper-bright); background: var(--blue); }
.project-card:nth-child(4n + 4) { background: var(--green); }

.project-card__head,
.project-card__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.project-card__body h2,
.project-card__body h3 {
  max-width: 12ch;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.project-card__body p {
  max-width: 37rem;
  margin: 0;
  font-weight: 620;
}

.project-card__foot {
  padding-top: 1rem;
  border-top: 2px solid currentColor;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  padding: 0.28rem 0.45rem;
  border: 1px solid currentColor;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.placeholder-banner {
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  border: var(--line);
  background: var(--pink);
  font-size: 0.84rem;
  font-weight: 750;
  box-shadow: 4px 4px 0 var(--ink);
}

.placeholder-banner strong {
  text-transform: uppercase;
}

/* Art */
.art-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.art-piece {
  grid-column: span 4;
  margin: 0;
}

.art-piece:nth-child(2),
.art-piece:nth-child(5) {
  grid-column: span 8;
}

.art-piece:nth-child(4) {
  grid-column: span 5;
}

.art-piece:nth-child(5) {
  grid-column: span 7;
}

.art-piece button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: var(--line-thick);
  background: transparent;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: zoom-in;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.art-piece button:hover {
  box-shadow: 10px 10px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.art-piece img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.art-piece--wide img {
  aspect-ratio: 16 / 9;
}

.art-piece figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.2rem 0;
  font-size: 0.86rem;
  font-weight: 730;
}

.art-piece figcaption span:last-child {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-dialog {
  width: min(92vw, 1000px);
  max-height: 92vh;
  padding: 0;
  border: var(--line-thick);
  background: var(--paper-bright);
  box-shadow: 12px 12px 0 var(--ink);
}

.art-dialog::backdrop {
  background: rgb(17 16 14 / 82%);
}

.art-dialog__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: var(--line);
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-dialog__close {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: var(--line);
  background: var(--paper-bright);
  font-weight: 900;
  cursor: pointer;
}

.art-dialog img {
  width: 100%;
  max-height: calc(92vh - 4rem);
  object-fit: contain;
}

/* Lab */
.topology-wrap {
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow-x: auto;
  border: var(--line-thick);
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

.topology {
  min-width: 760px;
}

.topology .wire {
  fill: none;
  stroke: #f4f0e7;
  stroke-width: 4;
  stroke-linecap: square;
  stroke-dasharray: 8 8;
}

.topology .node rect {
  stroke: #11100e;
  stroke-width: 4;
}

.topology .node text {
  fill: #11100e;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1px;
  text-anchor: middle;
}

.topology .node .small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.lab-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lab-fact {
  min-height: 13rem;
  padding: 1.25rem;
  border: var(--line-thick);
  background: var(--paper-bright);
  box-shadow: 5px 5px 0 var(--ink);
}

.lab-fact:nth-child(2) { background: var(--yellow); }
.lab-fact:nth-child(3) { background: var(--green); }

.lab-fact strong {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.lab-fact p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 620;
}

.service-list {
  display: grid;
  border-top: var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding-block: 1.2rem;
  border-bottom: var(--line);
}

.service-row strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Notes */
.note-list {
  display: grid;
  border-top: var(--line-thick);
}

.note-item {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  padding-block: clamp(1.4rem, 3vw, 2.1rem);
  border-bottom: var(--line);
}

.note-item h2,
.note-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.note-item p {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
  font-weight: 610;
}

.note-item__state {
  padding: 0.28rem 0.4rem;
  border: 1px solid currentColor;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  min-height: 15rem;
  padding: 1.3rem;
  border: var(--line-thick);
  background: var(--paper-bright);
  box-shadow: 5px 5px 0 var(--ink);
}

.resource-card:nth-child(2) { background: var(--pink); }
.resource-card:nth-child(3) { background: var(--yellow); }

.resource-card h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.resource-card p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  font-weight: 620;
}

.inline-link {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Resume */
.resume-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.resume-sidebar {
  display: grid;
  align-content: start;
  gap: 2rem;
}

.resume-sidebar__block {
  padding-top: 1rem;
  border-top: var(--line-thick);
}

.resume-sidebar__block h2,
.resume-sidebar__block h3 {
  margin: 0 0 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resume-sidebar__block p,
.resume-sidebar__block ul {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 610;
}

.resume-sidebar__block ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.resume-main {
  display: grid;
  gap: 4rem;
}

.resume-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.resume-block {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: var(--line-thick);
}

.resume-block h2 {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resume-block__body {
  display: grid;
  gap: 1.5rem;
}

.resume-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.7vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.resume-item p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-weight: 610;
}

/* 404 */
.not-found {
  display: grid;
  min-height: calc(100svh - 4.7rem);
  place-items: center;
  padding-block: 4rem;
  background: var(--red);
}

.not-found__card {
  width: min(760px, calc(100vw - 2rem));
  padding: clamp(1.5rem, 5vw, 4rem);
  border: var(--line-thick);
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
}

.not-found__code {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 24vw, 15rem);
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.not-found h1 {
  margin: 2rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.not-found p {
  max-width: 35rem;
  margin: 0 0 1.8rem;
  font-weight: 650;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .feature-card {
    grid-column: span 6;
  }

  .feature-card:last-child {
    grid-column: span 12;
    min-height: 22rem;
  }

  .share-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-piece,
  .art-piece:nth-child(2),
  .art-piece:nth-child(4),
  .art-piece:nth-child(5) {
    grid-column: span 6;
  }

  .lab-facts,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lab-fact:last-child,
  .resource-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 1.25rem, 1180px);
  }

  .site-header {
    position: relative;
  }

  .site-header__inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-block: 0.8rem;
  }

  .brand {
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.3rem 0 0.5rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-block: 4.5rem 5.5rem;
  }

  .hero__title {
    font-size: clamp(3.1rem, 16.8vw, 6.2rem);
  }

  .hero-shape--red {
    top: 3%;
    right: -2rem;
    opacity: 0.86;
  }

  .hero-shape--yellow {
    right: -1rem;
    bottom: 2rem;
    opacity: 0.88;
  }

  .hero-shape--pink {
    display: none;
  }

  .section-heading,
  .content-section__head,
  .about-grid,
  .resume-layout,
  .quote-strip__inner {
    grid-template-columns: 1fr;
  }

  .quote-strip__aside {
    grid-column: 1;
  }

  .collection-grid,
  .project-grid,
  .share-grid,
  .lab-facts,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:last-child {
    min-height: 22rem;
    grid-column: 1 / -1;
  }

  .share-card,
  .lab-fact,
  .lab-fact:last-child,
  .resource-card,
  .resource-card:last-child {
    grid-column: 1;
  }

  .door {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  }

  .door__desc {
    display: none;
  }

  .page-hero__stamp {
    right: -2rem;
    bottom: 1rem;
    opacity: 0.92;
  }

  .page-hero__title {
    font-size: clamp(3.6rem, 20vw, 7.5rem);
  }

  .art-piece,
  .art-piece:nth-child(2),
  .art-piece:nth-child(4),
  .art-piece:nth-child(5) {
    grid-column: 1 / -1;
  }

  .service-row {
    grid-template-columns: 1fr auto;
  }

  .service-row p {
    grid-column: 1 / -1;
  }

  .note-item {
    grid-template-columns: 1fr auto;
  }

  .note-date {
    grid-column: 1 / -1;
  }

  .resume-block {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero__actions,
  .contact__actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .door {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .door__title {
    font-size: 1.25rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .contact,
  .toast,
  .page-actions {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .page-hero,
  .content-section,
  .section {
    border: 0;
  }

  .resume-layout {
    grid-template-columns: 13rem 1fr;
  }
}
