:root {
  --ink: #111111;
  --paper: #050505;
  --paper-light: #050505;
  --white: #f4f3ee;
  --acid: #f4f3ee;
  --violet: #050505;
  --muted: #9a9994;
  --line: rgba(255, 255, 255, .24);
  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

body {
  color: var(--white);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

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

a {
  text-decoration: none;
}

@media (pointer: fine) {
  body,
  a,
  button { cursor: none; }
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}

.preloader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--pad);
  color: #ffffff;
  background: #000000;
  transition: transform 1s var(--ease), visibility 1s;
}

.preloader.is-hidden {
  visibility: hidden;
  transform: translateY(-100%);
}

.preloader-mark {
  align-self: center;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  color: #ffffff;
  font-family: "DM Mono", monospace;
  font-size: clamp(110px, 22vw, 330px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  animation: loaderLetter 1s var(--ease) both;
}

.preloader-bottom {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.cursor {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s ease, opacity .2s ease;
  mix-blend-mode: difference;
}

.cursor span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s ease;
}

.cursor.visible { opacity: 1; }
.cursor.hovering { width: 48px; height: 48px; }
.cursor.viewing { width: 72px; height: 72px; mix-blend-mode: normal; }
.cursor.viewing span { opacity: 1; }

.click-ripple {
  position: fixed;
  z-index: 9997;
  width: 10px;
  height: 10px;
  border: 1px solid var(--white);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple .65s ease-out forwards;
}

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

.eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: #fff;
  transition: color .35s ease, background .35s ease, height .35s ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--white);
  background: rgba(5, 5, 5, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: -.08em;
}

.brand-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.site-nav .nav-social {
  margin-left: 20px;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  align-items: center;
  gap: 12px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.menu-icon {
  width: 28px;
  height: 20px;
  display: block;
  position: relative;
}

.menu-icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, top .3s ease;
}

.menu-icon i:first-child { top: 6px; }
.menu-icon i:last-child { top: 14px; }
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { top: 10px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { top: 10px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #241b18;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  animation: heroScale 1.8s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, .62) 0%, transparent 56%),
    linear-gradient(90deg, rgba(0, 0, 0, .16), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px var(--pad) clamp(38px, 6vw, 76px);
}

.hero-eyebrow {
  margin-bottom: clamp(16px, 3vw, 30px);
}

.hero h1 {
  max-width: 1200px;
  font-size: clamp(64px, 12.2vw, 188px);
  font-weight: 300;
  line-height: .73;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  animation: titleIn 1.1s var(--ease) both;
}

.hero h1 span:last-child {
  margin-left: clamp(20px, 12vw, 180px);
  animation-delay: .12s;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(38px, 6vw, 86px);
}

.hero-bottom p {
  max-width: 490px;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
}

.circle-link {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.circle-link:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  transform: rotate(-8deg);
}

.circle-link svg,
.contact-button svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 50%;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
}

.intro {
  display: grid;
  grid-template-columns: minmax(140px, .7fr) 2.3fr .8fr;
  gap: 40px;
  padding: clamp(90px, 14vw, 210px) var(--pad);
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.intro > * {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.intro.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.intro.is-visible > *:nth-child(2) { transition-delay: .08s; }
.intro.is-visible > *:nth-child(3) { transition-delay: .16s; }

.intro-statement {
  max-width: 1000px;
  font-size: clamp(38px, 6vw, 92px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.055em;
}

.intro-meta {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.works,
.process {
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(60px, 9vw, 130px);
}

.section-heading h2,
.studio h2,
.contact h2 {
  margin-top: 22px;
  font-size: clamp(58px, 10vw, 148px);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.heading-note {
  max-width: 320px;
  padding-bottom: 8px;
  font-size: 14px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(18px, 3vw, 48px);
  row-gap: clamp(80px, 13vw, 190px);
}

.work {
  display: block;
  color: var(--white);
  text-align: left;
  background: none;
  border: 0;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(90px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.work.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-wide { grid-column: 1 / span 7; }
.work-portrait { grid-column: 9 / span 4; margin-top: 15vw; }
.work-square { grid-column: 2 / span 5; }
.work-square.work-offset { grid-column: 8 / span 5; margin-top: -7vw; }

.work-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #151515;
}

.work-image::before {
  content: "Abrir obra ↗";
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s var(--ease);
}

.work-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .24) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}

.work:hover .work-image::before { opacity: 1; transform: translateY(0); }
.work:hover .work-image::after { transform: translateX(120%); }

.work-image img {
  width: 100%;
  height: auto;
  transition: transform .8s var(--ease), filter .5s ease;
}

.work-wide .work-image img { aspect-ratio: 1.35 / 1; object-fit: cover; }
.work-portrait .work-image img { aspect-ratio: .78 / 1; object-fit: cover; }
.work-square .work-image img { aspect-ratio: 1 / 1; object-fit: cover; }

.work:hover .work-image img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.work-info {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--white);
  transition: color .3s ease, padding-left .3s var(--ease);
}

.work:hover .work-info { color: #b9b9b4; padding-left: 10px; }

.work-info b {
  font-size: 14px;
  font-weight: 600;
}

.work-info small,
.work-info i {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.studio {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 100svh;
  color: #fff;
  background: var(--ink);
}

.studio-portrait {
  min-height: 800px;
  overflow: hidden;
}

.studio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.studio-copy {
  align-self: center;
  padding: clamp(70px, 9vw, 150px) var(--pad);
}

.studio h2 {
  font-size: clamp(58px, 7.2vw, 112px);
}

.studio-lead {
  max-width: 630px;
  margin: clamp(56px, 8vw, 110px) 0 28px;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.studio-copy > p:not(.eyebrow):not(.studio-lead) {
  max-width: 520px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.studio-copy > p + p {
  margin-top: 16px;
}

.bio-facts {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.bio-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 12px;
}

.bio-facts dt {
  color: #777;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.bio-facts dd { margin: 0; }

.text-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 48px;
  margin-top: 54px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  font-size: 12px;
  text-transform: uppercase;
  transition: color .3s ease, padding .3s var(--ease), background .3s ease;
}

.text-link span {
  transition: transform .3s ease;
}

.text-link:hover {
  padding-right: 12px;
  padding-left: 12px;
  color: var(--ink);
  background: var(--white);
}

.text-link:hover span { transform: translate(4px, -4px); }

.process {
  color: #fff;
  background: var(--violet);
  overflow: hidden;
}

.process-heading {
  margin-bottom: 80px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-color: var(--acid) rgba(255, 255, 255, .15);
}

.process-card {
  min-width: 260px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.process-card.is-visible { opacity: 1; transform: translateY(0); }

.process-card:nth-child(even) {
  padding-top: 80px;
}

.process-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .4s ease, transform .5s var(--ease);
}

.process-card:hover img {
  filter: grayscale(0);
  transform: rotate(-1deg);
}

.process-card figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.feature {
  position: relative;
  height: min(90vw, 1000px);
  min-height: 680px;
  color: #fff;
  overflow: hidden;
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .65), transparent 58%);
}

.feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.feature-caption {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: clamp(35px, 6vw, 80px);
  left: var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.feature-caption p {
  display: flex;
  flex-direction: column;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.feature-caption strong {
  max-width: 760px;
  font-size: clamp(45px, 7vw, 108px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.06em;
  text-align: right;
  text-transform: uppercase;
}

.contact {
  padding: clamp(90px, 13vw, 190px) var(--pad) clamp(70px, 9vw, 130px);
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.contact h2 {
  margin-top: 40px;
  font-size: clamp(54px, 11.8vw, 180px);
}

.contact h2 em {
  font-weight: 300;
  text-transform: none;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: clamp(70px, 10vw, 140px);
  padding-top: 24px;
  border-top: 1px solid var(--white);
}

.contact-row > p {
  max-width: 440px;
  font-size: 14px;
}

.contact-button {
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 20px 24px;
  overflow: hidden;
  transition: color .35s ease, background .35s ease, padding .35s var(--ease);
}

.contact-button svg {
  transition: transform .3s var(--ease);
}

.contact-button:hover {
  color: var(--ink);
  background: var(--white);
  padding-right: 16px;
  padding-left: 32px;
}

.contact-button:hover svg { transform: translateX(8px); }

.site-footer {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 60px;
  padding: 70px var(--pad) 28px;
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-meta a:hover { color: var(--acid); }

.footer-meta a,
.footer-brand {
  transition: opacity .3s ease, letter-spacing .35s var(--ease);
}

.footer-meta a:hover { opacity: .55; }
.footer-brand:hover { letter-spacing: -.025em; }

.footer-domain {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 28px;
  color: #fff;
  background: rgba(10, 10, 10, .97);
  border: 0;
}

.lightbox[open] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.lightbox::backdrop { background: rgba(0, 0, 0, .85); }

.lightbox-close {
  justify-self: end;
  color: #fff;
  background: none;
  border: 0;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-stage {
  min-height: 0;
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  max-width: min(1100px, 90vw);
  max-height: calc(100vh - 130px);
  object-fit: contain;
}

.lightbox p {
  justify-self: center;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

@keyframes titleIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScale {
  from { opacity: .5; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLetter {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ripple {
  from { opacity: .9; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(12); }
}

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

  .menu-toggle { display: flex; }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 110px var(--pad) 50px;
    color: #fff;
    background: var(--violet);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .3s ease, transform .4s var(--ease), visibility .3s;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(40px, 10vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.06em;
  }

  .site-nav .nav-social {
    margin: 35px 0 0;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: 0;
  }

  .site-header.menu-active { color: #fff; }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-meta { margin-top: 25px; }

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

  .studio-portrait {
    min-height: auto;
  }

  .studio-portrait img {
    height: auto;
    aspect-ratio: .85 / 1;
  }
}

@media (max-width: 680px) {
  .brand-name { display: none; }

  .hero-media img { object-position: 58% center; }

  .hero-content { padding-top: 110px; }

  .hero h1 {
    font-size: clamp(55px, 19vw, 90px);
    line-height: .82;
  }

  .hero h1 span:last-child { margin-left: 0; }

  .hero-bottom {
    align-items: center;
    gap: 18px;
    margin-top: 36px;
  }

  .hero-bottom p { max-width: 270px; font-size: 13px; }

  .circle-link { width: 56px; height: 56px; }

  .hero-index { display: none; }

  .intro-statement { font-size: clamp(34px, 11vw, 56px); }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .studio h2,
  .contact h2 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .heading-note {
    margin-top: 32px;
  }

  .works-grid {
    display: block;
  }

  .work,
  .work-portrait,
  .work-square.work-offset {
    width: 100%;
    margin: 0 0 72px;
  }

  .work:nth-child(even) {
    width: 82%;
    margin-left: auto;
  }

  .work-info { gap: 8px; }

  .work-info small { display: none; }

  .studio-portrait img { aspect-ratio: .82 / 1; }

  .process-track {
    width: calc(100% + var(--pad));
    margin-right: calc(var(--pad) * -1);
    grid-template-columns: repeat(5, 75vw);
    padding-right: var(--pad);
  }

  .process-card:nth-child(even) { padding-top: 45px; }

  .feature {
    height: 115svh;
    min-height: 700px;
  }

  .feature > img { object-position: 56% center; }

  .feature-caption {
    display: block;
  }

  .feature-caption strong {
    display: block;
    margin-top: 28px;
    font-size: 48px;
    text-align: left;
  }

  .contact h2 { line-height: .88; }

  .contact-row {
    display: block;
  }

  .contact-button { margin-top: 28px; }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-domain { grid-column: auto; }

  .lightbox { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .intro > *,
  .work,
  .process-card { opacity: 1; transform: none; }
}

@media (pointer: coarse) {
  .cursor { display: none; }
}
