@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #f6f5f1;
  --ink: #252621;
  --accent: #284c3e;
  --muted: #74746d;
  --line: #dcdcd4;
  --gutter: clamp(24px, 4.1vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
::selection {
  background: #d4e1d2;
  color: #183c2e;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.icon-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  vertical-align: -0.15em;
}
.contact-arrow .icon-arrow {
  display: block;
  stroke-width: 0.9;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}
.page-width {
  width: calc(100% - var(--gutter) * 2);
  max-width: 1600px;
  margin-inline: auto;
}
.mono,
.eyebrow {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 1.5;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.075em;
}
.muted {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 24px;
  top: 10px;
  transform: translateY(-150%);
  padding: 14px 20px;
  background: var(--accent);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 96px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.wordmark {
  font-size: 41px;
  line-height: 1;
  letter-spacing: -4px;
  font-weight: 700;
  padding-right: 6px;
}
.wordmark-dot {
  color: var(--accent);
}
.desktop-nav {
  display: flex;
  gap: 42px;
  align-items: center;
  margin-left: 56px;
}
.desktop-nav a {
  font-size: 13px;
  position: relative;
}
.desktop-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-contact span {
  font-size: 23px;
  transition: transform 0.3s;
}
.header-contact:hover span {
  transform: translate(3px, -3px);
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  padding-top: 37px;
}

h1 {
  font-size: clamp(70px, 7.7vw, 124px);
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.pill-link {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  border: 1px solid #bfc0b7;
  border-radius: 40px;
  padding: 7px 7px 7px 22px;
  font-size: 12px;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.pill-arrow {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 21px;
  transition: transform 0.4s var(--ease);
}
.pill-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.pill-link:hover .pill-arrow {
  transform: rotate(45deg);
}

.section-space {
  padding-top: 92px;
  padding-bottom: 92px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
  gap: 30px;
}

h2 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.09;
  letter-spacing: -0.045em;
}
h2 em {
  font-size: 1.1em;
  letter-spacing: -0.02em;
}
.section-aside {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  padding-bottom: 8px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 40px;
}
.project-card:nth-child(even) {
  margin-top: 45px;
}
.project-card:nth-child(odd) {
  margin-bottom: 45px;
}
.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.24;
  padding: 25px 32px;
  background: #e4e2d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project-image.lighting {
  background: #e8e5dd;
}
.project-image.mint {
  background: #dce6d7;
}
.project-image.adventure {
  background: #e9d8c5;
}
.project-image.besilent {
  background: #e3e6df;
}

.browser-frame {
  width: 100%;
  box-shadow: 0 20px 40px -20px #24242150;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(5deg) rotateZ(-3deg);
  transition:
    transform 0.8s var(--ease),
    box-shadow 0.8s var(--ease);
  margin-top: 6px;
  background: white;
}
.mint .browser-frame {
  transform: perspective(1200px) rotateY(4deg) rotateX(5deg) rotateZ(3deg);
}
.adventure .browser-frame {
  transform: perspective(1200px) rotateY(-4deg) rotateX(5deg) rotateZ(-3deg);
}
.besilent .browser-frame {
  transform: perspective(1200px) rotateY(4deg) rotateX(5deg) rotateZ(3deg);
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 2.06;
  object-fit: cover;
  object-position: top;
}

.project-view {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--accent);
  color: white;
  border-radius: 40px;
  padding: 16px 21px;
  font-size: 12px;
  white-space: nowrap;
  transition:
    transform 0.5s var(--ease),
    opacity 0.4s;
  box-shadow: 0 4px 20px #0a184022;
}
.project-view > span {
  font-size: 22px;
}
.project-link:hover .browser-frame,
.project-link:focus-visible .browser-frame {
  transform: perspective(1200px) rotate(0) scale(1.035);
  box-shadow: 0 22px 44px -12px #24242140;
}
.project-link:hover .project-view,
.project-link:focus-visible .project-view {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.project-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  align-items: flex-start;
}
.project-info h3 {
  font-size: 21px;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.project-info h3 span {
  font-size: 20px;
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s var(--ease);
}
.project-link:hover h3 span {
  transform: translate(3px, -3px);
}
.project-info p {
  font-size: 12px;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
}
.project-type {
  font-size: 9px;
  white-space: nowrap;
  padding-top: 7px;
  color: #77786e;
}
.archive {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 53px;
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.archive summary {
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.archive-count {
  margin-left: 17px;
  font-size: 9px;
  color: var(--muted);
}
.archive-plus {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s;
}
.archive[open] .archive-plus {
  transform: rotate(45deg);
}
.archive-list {
  padding-bottom: 22px;
}
.archive-list a {
  display: grid;
  grid-template-columns: 1fr 1fr 20px;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  transition:
    color 0.2s,
    padding 0.3s;
}
.archive-list a:hover {
  padding-inline: 12px;
  color: var(--accent);
}
.archive-list .mono {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}
.about-section {
  padding-block: 114px;
  background: #eeede7;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(70px, 10vw, 180px);
}
.about-left {
  max-width: 460px;
}

.about-copy {
  padding-top: 52px;
}
.about-copy h2 {
  font-size: clamp(36px, 3.5vw, 57px);
  margin-bottom: 29px;
}
.about-lead {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.about-copy > p:not(.about-lead) {
  font-size: 13px;
  line-height: 1.85;
  color: #696a62;
  margin-bottom: 17px;
  max-width: 480px;
}
.text-link {
  border-bottom: 1px solid #bcbdb4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-block: 15px;
  font-size: 13px;
  max-width: 480px;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--accent);
}
.text-link .mono {
  font-size: 9px;
}
.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  max-width: 480px;
}
.stack-list span {
  border: 1px solid #cccdc3;
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 10px;
  color: #65665e;
}
.approach-section .section-heading {
  margin-bottom: 56px;
}

.approach-item {
  border-top: 1px solid var(--line);
}
.approach-item:last-child {
  border-bottom: 1px solid var(--line);
}
.approach-item summary {
  display: grid;
  grid-template-columns: 70px 1fr auto 45px;
  align-items: center;
  gap: 24px;
  padding-block: 31px;
}
.approach-number {
  color: var(--muted);
}
.approach-name {
  font-size: 28px;
  letter-spacing: -0.035em;
}

.detail-symbol {
  justify-self: end;
  font-size: 26px;
  font-weight: 400;
  transition:
    transform 0.3s,
    color 0.3s;
}
.approach-item[open] .detail-symbol {
  transform: rotate(45deg);
  color: var(--accent);
}
.approach-item[open] .approach-name {
  color: var(--accent);
}
.approach-body {
  padding: 0 0 32px 94px;
}
.approach-body p {
  max-width: 500px;
  font-size: 13px;
  line-height: 1.85;
  color: #6b6c62;
}
.contact-section {
  background: #213c31;
  color: var(--paper);
  padding-top: 53px;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 65px 53px;
}
.contact-hero h2 {
  font-size: clamp(60px, 8.7vw, 140px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.contact-hero h2 em {
  font-size: 1.12em;
  letter-spacing: -0.025em;
}
.contact-arrow {
  width: 130px;
  height: 130px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid #cbd8c988;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 77px;
  font-weight: 300;
  transition:
    transform 0.6s var(--ease),
    background 0.3s,
    color 0.3s;
}
.contact-hero:hover .contact-arrow {
  transform: rotate(45deg);
  background: var(--paper);
  color: var(--accent);
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 64px;
}
.email-row {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.email-row > a {
  font-size: 20px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #cbd8c988;
  padding-bottom: 4px;
}
.copy-email {
  padding: 8px;
  background: none;
  color: var(--paper);
  border-radius: 3px;
}
.copy-email:hover {
  background: #ffffff22;
}
.copy-email svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  display: block;
}
.copy-status {
  position: absolute;
  bottom: -25px;
  left: 0;
  font-size: 9px;
}
.contact-whatsapp {
  font-size: 12px;
  color: #dce5d9;
  display: flex;
  gap: 26px;
  align-items: center;
}
.contact-whatsapp span {
  font-size: 21px;
}
.site-footer {
  border-top: 1px solid #cbd8c955;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-block: 28px;
}
.site-footer > .mono,
.back-top {
  font-size: 9px;
  letter-spacing: 0.04em;
  color: #cbd8c9;
}
.footer-links {
  display: flex;
  gap: 30px;
  font-size: 11px;
}
.footer-links a {
  position: relative;
}
.contact-section a:focus-visible,
.contact-section button:focus-visible {
  outline-color: white;
}
.project-dialog {
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  width: min(880px, calc(100% - 40px));
  max-height: 90svh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.project-dialog::backdrop {
  background: #161911aa;
  backdrop-filter: blur(9px);
}
.project-dialog[open] {
  animation: dialog-in 0.35s var(--ease);
}
.dialog-close {
  position: sticky;
  top: 16px;
  margin: 16px 16px -60px auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  z-index: 2;
  font-size: 20px;
  box-shadow: 0 2px 10px #0002;
}
.dialog-image {
  background: #e6e5df;
  padding: 38px 60px;
  min-height: 180px;
}
.dialog-image img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  box-shadow: 0 10px 35px #0002;
}
.dialog-content {
  padding: 32px 42px 36px;
}
.dialog-content > .eyebrow {
  color: var(--accent);
  font-size: 9px;
  margin-bottom: 14px;
}
.dialog-content h2 {
  font-size: 43px;
  margin-bottom: 20px;
}
.dialog-content > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: #63645d;
  max-width: 700px;
}
.dialog-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}
.dialog-tech span {
  font-size: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 12px;
}
.dialog-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 25px;
}
.dialog-footer > p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.9s var(--ease);
}
.js-motion .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.motion-off *,
.motion-off *::before,
.motion-off *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
.motion-off .reveal {
  opacity: 1;
  transform: none;
}
.motion-off {
  scroll-behavior: auto;
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1650px) {
  .project-image {
    padding-inline: 50px;
  }
}
@media (max-width: 1150px) {
  h1 {
    font-size: 7.6vw;
  }

  .project-type {
    display: none;
  }
  .about-grid {
    gap: 70px;
  }
  .about-copy {
    padding-top: 43px;
  }

  .project-image {
    padding-inline: 26px;
  }

  .contact-hero {
    padding-block: 58px;
  }
  .contact-arrow {
    width: 110px;
    height: 110px;
    font-size: 65px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 80px;
  }
  .desktop-nav {
    gap: 24px;
    margin-left: 20px;
  }
  .hero {
    padding-top: 25px;
  }

  h1 {
    font-size: 8vw;
  }

  .desktop-break {
    display: none;
  }

  .pill-link {
    font-size: 11px;
    padding-left: 16px;
    gap: 23px;
  }
  .pill-arrow {
    width: 32px;
    height: 32px;
  }

  .section-space {
    padding-block: 84px;
  }

  .section-aside {
    font-size: 11px;
    max-width: 200px;
  }
  .section-heading {
    gap: 25px;
    margin-bottom: 38px;
  }
  h2 {
    font-size: 39px;
  }
  .project-grid {
    gap: 36px 22px;
  }
  .project-image {
    padding-inline: 21px;
    aspect-ratio: 1.06;
  }
  .project-info {
    padding-top: 17px;
  }
  .project-info h3 {
    font-size: 19px;
  }
  .project-info p {
    font-size: 11px;
  }
  .project-card:nth-child(even) {
    margin-top: 58px;
  }
  .project-card:nth-child(odd) {
    margin-bottom: 58px;
  }

  .archive {
    margin-top: 35px;
  }
  .about-section {
    padding-block: 80px;
  }
  .about-grid {
    gap: 45px;
    grid-template-columns: 0.95fr 1.05fr;
  }
  .about-copy h2 {
    font-size: 32px;
  }
  .about-lead {
    font-size: 16px;
  }
  .about-copy > p:not(.about-lead) {
    font-size: 12px;
  }

  .stack-list {
    gap: 6px;
  }
  .stack-list span {
    font-size: 9px;
    padding: 6px 9px;
  }

  .approach-item summary {
    grid-template-columns: 40px 1fr auto 20px;
    gap: 16px;
    padding-block: 25px;
  }
  .approach-name {
    font-size: 24px;
  }

  .approach-body {
    padding-left: 56px;
  }
  .contact-hero h2 {
    font-size: 8.5vw;
  }
  .contact-arrow {
    width: 85px;
    height: 85px;
    font-size: 48px;
  }

  .email-row > a {
    font-size: 17px;
  }
  .contact-whatsapp {
    font-size: 10px;
    gap: 15px;
  }
  .footer-links {
    gap: 20px;
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 22px;
  }
  .site-header {
    height: 74px;
  }
  .wordmark {
    font-size: 35px;
  }
  .desktop-nav {
    gap: 18px;
    margin-left: auto;
    margin-right: 20px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .desktop-nav a:last-child {
    display: none;
  }
  .header-contact {
    font-size: 11px;
    gap: 12px;
  }
  .header-contact span {
    font-size: 20px;
  }
  .js-enabled .desktop-nav {
    display: none;
  }
  .js-enabled .header-contact {
    margin-left: auto;
    margin-right: 27px;
  }
  .js-enabled .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    padding: 12px 0 12px 12px;
    background: none;
    width: 34px;
    height: 44px;
  }
  .menu-toggle span {
    height: 1px;
    width: 22px;
    background: var(--ink);
    transition: transform 0.3s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav.is-open {
    display: flex;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px var(--gutter) 32px;
    box-shadow: 0 30px 35px #21261b15;
    flex-direction: column;
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    font-size: 23px;
    letter-spacing: -0.03em;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a span {
    font-family: monospace;
    font-size: 12px;
    color: var(--accent);
    align-self: center;
  }
  .hero {
    padding-top: 25px;
  }

  h1 {
    font-size: clamp(47px, 11.25vw, 72px);
    letter-spacing: -0.06em;
    line-height: 1.04;
  }

  .pill-link {
    font-size: 11px;
    gap: 25px;
    padding: 6px 6px 6px 18px;
  }
  .pill-arrow {
    width: 32px;
    height: 32px;
  }

  .section-space {
    padding-block: 69px;
  }
  .section-heading {
    display: block;
    margin-bottom: 31px;
  }

  h2 {
    font-size: 37px;
    letter-spacing: -0.045em;
  }
  .section-aside {
    font-size: 12px;
    max-width: none;
    margin-top: 23px;
    padding-bottom: 0;
    line-height: 1.65;
  }
  .section-aside br {
    display: none;
  }
  .section-aside {
    max-width: 280px;
  }
  .project-grid {
    display: block;
  }
  .project-card {
    margin: 0 0 36px;
  }
  .project-card:last-child {
    margin-bottom: 0;
  }
  .project-image {
    aspect-ratio: 1.22;
    padding-inline: 25px;
  }

  .project-info {
    padding-top: 17px;
  }
  .project-info h3 {
    font-size: 21px;
  }
  .project-info p {
    font-size: 11px;
  }
  .project-info h3 span {
    font-size: 18px;
  }
  .project-view {
    padding: 12px 18px;
    font-size: 11px;
  }
  .archive {
    margin-top: 40px;
  }
  .archive summary {
    font-size: 13px;
    padding-block: 23px;
  }
  .archive-count {
    display: block;
    font-size: 9px;
    margin-left: 0;
    margin-top: 6px;
  }
  .archive-plus {
    font-size: 24px;
  }
  .archive-list a {
    grid-template-columns: 1fr 20px;
    font-size: 15px;
    padding-block: 18px;
    row-gap: 6px;
  }
  .archive-list .mono {
    grid-row: 2;
    text-align: left;
    font-size: 9px;
  }
  .archive-list a > span:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .about-section {
    padding-block: 65px;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .about-left {
    max-width: 100%;
  }

  .about-copy {
    padding-top: 0;
  }
  .about-copy h2 {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .about-lead {
    font-size: 18px;
    margin-bottom: 19px;
  }
  .about-copy > p:not(.about-lead) {
    font-size: 13px;
  }
  .text-link {
    font-size: 12px;
  }
  .stack-list {
    gap: 7px;
  }
  .stack-list span {
    font-size: 10px;
    padding: 7px 12px;
  }
  .approach-section .section-heading {
    margin-bottom: 34px;
  }

  .approach-section h2 {
    font-size: 36px;
  }
  .approach-item summary {
    grid-template-columns: 24px 1fr 20px;
    gap: 14px;
    padding-block: 25px;
  }
  .approach-number {
    font-size: 9px;
  }
  .approach-name {
    font-size: 22px;
  }

  .detail-symbol {
    font-size: 24px;
  }
  .approach-body {
    padding: 0 0 26px 38px;
  }
  .approach-body p {
    font-size: 12px;
  }
  .contact-section {
    padding-top: 34px;
  }

  .contact-hero {
    gap: 12px;
    align-items: flex-end;
    padding-block: 43px 34px;
    position: relative;
  }
  .contact-hero h2 {
    font-size: clamp(38px, 10.4vw, 62px);
    line-height: 1.09;
    letter-spacing: -0.05em;
  }
  .contact-arrow {
    width: 43px;
    height: 43px;
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 39px;
  }
  .contact-bottom {
    display: block;
    padding-bottom: 43px;
  }
  .email-row {
    gap: 10px;
  }
  .email-row > a {
    font-size: 16px;
  }
  .copy-email svg {
    width: 16px;
    height: 16px;
  }
  .contact-whatsapp {
    font-size: 10px;
    margin-top: 25px;
    justify-content: space-between;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 24px;
    padding-block: 23px;
  }
  .site-footer > .mono {
    font-size: 9px;
  }
  .footer-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  .back-top {
    font-size: 9px;
  }
  .dialog-image {
    padding: 65px 20px 25px;
  }
  .dialog-content {
    padding: 25px;
  }
  .dialog-content h2 {
    font-size: 33px;
  }
  .dialog-content > p:not(.eyebrow) {
    font-size: 13px;
  }
  .dialog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .project-dialog {
    max-height: 92svh;
    width: calc(100% - 24px);
  }
  .dialog-footer > p {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (hover: none) {
  .project-view {
    opacity: 1;
    transform: none;
    left: auto;
    top: auto;
    right: 17px;
    bottom: 19px;
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 0;
    gap: 0;
  }
  .project-view > span {
    font-size: 19px;
  }

  .project-link:hover .project-view {
    transform: none;
  }
}

/* A quieter, project-led introduction. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.hero {
  padding-top: 0;
}

h1 {
  font-size: clamp(66px, 7.1vw, 116px);
}

.section-kicker {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 27px;
}
.about-grid {
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 140px);
}
.about-copy {
  padding-top: 0;
}
.about-left {
  max-width: none;
}
.about-left h2 {
  font-size: clamp(36px, 4.2vw, 65px);
}
.about-lead {
  font-size: 20px;
}
.project-image {
  aspect-ratio: 1.35;
  padding: 36px 30px;
}
.project-info p {
  max-width: 300px;
}
.browser-frame,
.mint .browser-frame,
.adventure .browser-frame,
.besilent .browser-frame {
  transform: none;
}
.approach-item summary {
  grid-template-columns: 70px 1fr 45px;
}
.contact-top .section-kicker {
  color: #cbd8c9;
  font-size: 13px;
  margin-bottom: 0;
}
.site-footer > .mono,
.back-top {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 7.1vw;
  }

  .project-type {
    display: none;
  }
  .approach-item summary {
    grid-template-columns: 40px 1fr 30px;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: clamp(48px, 10.5vw, 75px);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-left h2 {
    font-size: 39px;
  }
  .about-lead {
    font-size: 18px;
  }
  .section-kicker {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .project-image {
    aspect-ratio: 1.3;
    padding: 25px;
  }
  .approach-item summary {
    grid-template-columns: 24px 1fr 20px;
  }
  .project-view {
    bottom: 12px;
  }

  .site-footer > .mono,
  .back-top {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .about-left h2 {
    font-size: 34px;
  }
}
