:root {
  --color-white: #F5F4F0;
  --color-black: #202020;
  --color-blue: #0000FF;
  --color-green: #C9FF00;
  --color-orange: #FF6500;
  --color-lime: #BEF102;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.o-blue {
  color: var(--color-blue);
}

.typewriter-slot {
  display: inline-block;
  clip-path: inset(0);
}

.typewriter {
  display: inline-block;
  font-family: "Pixelify Sans", monospace;
  color: var(--color-orange);
  font-weight: 400;
  white-space: nowrap;
}
.typewriter.tw-slide-out {
  animation: twSlideOut 0.32s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.typewriter.tw-slide-in {
  animation: twSlideIn 0.32s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@keyframes twSlideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-115%);
  }
}
@keyframes twSlideIn {
  from {
    transform: translateY(115%);
  }
  to {
    transform: translateY(0);
  }
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  padding: 20px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav.scrolled {
  border-color: rgba(32, 32, 32, 0.15);
}

.nav-logo {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 17px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  height: 673px;
  overflow: hidden;
  background: var(--color-white);
}

.hero-mockup-wrap {
  position: absolute;
  top: -139px;
  left: -153px;
  width: 490px;
  height: 473px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-mockup {
  width: 376px;
  height: 329px;
  transform: rotate(30deg);
  object-fit: cover;
}

.hero-heading {
  position: absolute;
  top: 176px;
  left: 0;
  right: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.hero-poster-wrap {
  position: absolute;
  top: 368px;
  left: -24px;
  width: 232px;
  height: 237px;
  pointer-events: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-board-wrap {
  position: absolute;
  top: 333px;
  left: 252px;
  width: 170px;
  height: 207px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-board {
  width: 151px;
  height: 192px;
  transform: rotate(-5.96deg);
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.intro {
  padding: 0 19px;
  text-align: center;
  margin-bottom: 40px;
}
.intro .intro-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.55;
}
.intro .intro-text + .intro-text {
  margin-top: 16px;
}
.intro .intro-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 36px;
  background: var(--color-blue);
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill:hover {
  color: #ffffff;
  opacity: 0.88;
}

.featured {
  padding-bottom: 40px;
}
.featured .featured-heading {
  font-size: 40px;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.featured .featured-cards {
  display: block;
  width: calc(100% - 9px);
  margin-left: 9px;
  margin-bottom: 29px;
}
.featured .featured-cta {
  display: flex;
  justify-content: center;
}

.services {
  background: var(--color-lime);
  padding: 20px 18px 20px;
}

.services-heading {
  font-size: 40px;
  font-weight: 500;
  color: var(--color-blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex: 0 0 149px;
  white-space: nowrap;
}

.service-desc {
  flex: 0 0 164px;
  font-size: 14px;
  color: var(--color-blue);
  line-height: 1.55;
}
.service-desc .service-intro {
  font-weight: 500;
  margin-bottom: 8px;
}
.service-desc .service-items {
  font-weight: 400;
}
.service-desc .service-items li {
  line-height: 1.7;
}

.site-footer {
  background: var(--color-blue);
  padding: 41px 43px 40px 44px;
  min-height: 398px;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 303px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-copyright {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-email {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  display: block;
}

.footer-legal {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}
.footer-legal .legal-line {
  display: block;
  color: #ffffff;
}
.footer-legal .legal-link {
  display: block;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-social .social-link {
  display: flex;
  align-items: center;
}
.footer-social img {
  width: 12px;
  height: 12px;
  display: block;
}

.btn-pill--dark {
  background: var(--color-black);
}
.btn-pill--dark:hover {
  color: #ffffff;
  opacity: 0.88;
}

.about-portrait {
  padding-top: 42px;
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
}

.portrait-inner {
  position: relative;
  transform: rotate(-3deg);
  border: 1px solid #1791e9;
  width: 307px;
  height: 356px;
  flex-shrink: 0;
}

.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portrait-pin {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border: 1px solid #1791e9;
  z-index: 1;
}

.portrait-pin--tl {
  top: -2px;
  left: -2px;
}

.portrait-pin--tr {
  top: -2px;
  right: -2px;
}

.portrait-pin--bl {
  bottom: -2px;
  left: -2px;
}

.portrait-pin--br {
  bottom: -2px;
  right: -2px;
}

.about-bio {
  padding: 0 45px;
  text-align: center;
  margin-bottom: 32px;
}

.bio-intro {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.55;
  margin-bottom: 16px;
}

.bio-body {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.55;
  margin-bottom: 16px;
}
.bio-body.bio-body--last {
  margin-bottom: 0;
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.about-cta-bar {
  background: var(--color-orange);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.cta-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-bar-line {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.cta-bar-email {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.contact-hero {
  padding-top: 36px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-heading {
  font-size: 60px;
  font-weight: 700;
  line-height: 56px;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 57px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--color-black);
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-radius: 47px;
  border: 2px solid var(--color-black);
  white-space: nowrap;
}
.btn-contact:hover {
  color: #ffffff;
  opacity: 0.88;
}

.work-hero {
  padding-top: 12px;
  text-align: center;
}

.work-heading {
  font-size: 93px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-black);
  margin: 0;
}

.filter-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 26px;
  padding: 0 16px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 0.75px solid rgba(32, 32, 32, 0.2);
  border-radius: 19px;
  font-size: 8px;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--color-black);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #ffffff;
}

.proj-grid {
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.proj-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.proj-card-image {
  width: 100%;
  aspect-ratio: 317/278;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #e8e7e3;
}
.proj-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.proj-card-image img:last-child {
  mix-blend-mode: multiply;
}

.proj-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.proj-card-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  margin: 0;
  line-height: 1.3;
}
.proj-card-title strong {
  font-weight: 700;
}

.proj-card-arrow {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
}

.case-header {
  text-align: center;
  padding-top: 32px;
}

.case-client {
  font-size: 22px;
  font-weight: 400;
  color: rgba(32, 32, 32, 0.5);
  line-height: 1.2;
  margin: 0 0 4px;
}

.case-title {
  font-size: 52px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.case-tags {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 19px;
  font-size: 8px;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 0.75px solid transparent;
  white-space: nowrap;
}

.case-tag--blue {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

.case-tag--orange {
  background: #f24822;
  border-color: #f24822;
  color: #fff;
}

.case-tag--lime {
  background: #c4ff4d;
  border-color: #c4ff4d;
  color: var(--color-black);
}

.case-desc {
  text-align: center;
  padding: 0 42px;
  margin: 20px 0 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.folder-stack {
  position: relative;
  width: 373px;
  height: 462px;
  margin: 0 auto 40px;
  cursor: none;
}

.folder-card {
  position: absolute;
  border-radius: 24px;
  cursor: none;
  transition: filter 0.15s ease;
}
.folder-card:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 4px;
}

.folder-card--cyan {
  top: 0;
  left: 17px;
  width: 330px;
  height: 188px;
  background: #00E5FF;
  transform: rotate(-3deg);
}

.folder-card--green {
  top: 64px;
  left: 22px;
  width: 353px;
  height: 210px;
  background: #00FF4C;
  transform: rotate(6deg);
}

.folder-card--magenta {
  top: 177px;
  left: 0;
  width: 353px;
  height: 210px;
  background: #FB00FF;
  transform: rotate(-6deg);
}

.folder-card--red {
  top: 252px;
  left: 10px;
  width: 353px;
  height: 210px;
  background: #FF0000;
  border-radius: 0 24px 24px 24px;
}
.folder-card--red::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 133px;
  height: 20px;
  background: #FF0000;
  border-radius: 10px 10px 0 0;
}

.folder-stack:hover .folder-card:last-child {
  filter: brightness(1.06);
}

#folderCursor {
  position: fixed;
  width: 18px;
  height: 18px;
  background: var(--color-black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.12s ease;
}
#folderCursor.active {
  opacity: 1;
}

.cursor-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--color-black);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.case-next {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 19px 48px;
  text-decoration: none;
  color: var(--color-black);
}

.case-next-prefix {
  font-size: 20px;
  font-weight: 400;
  display: block;
  line-height: 1.3;
  color: var(--color-black);
}

.case-next-label {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.case-next-arrow {
  font-size: 22px;
  transform: rotate(-45deg);
  display: inline-block;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.work-hero-temp {
  padding: 48px 18px 32px;
  text-align: center;
}

.work-hero-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-black);
  margin: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: calc((100vw - 48px) / 2);
  grid-auto-flow: dense;
  gap: 12px;
  padding: 0 18px;
  margin-bottom: 64px;
}

.work-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(32, 32, 32, 0.05);
  border: none;
  padding: 0;
  cursor: default;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.work-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-item--tall {
  grid-row: span 2;
}

.work-item--wide {
  grid-column: span 2;
}

.work-item__media {
  position: absolute;
  inset: 0;
}
.work-item__media img,
.work-item__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0);
  transition: background 0.15s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px;
  border-radius: 16px;
}

.work-item__icon {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-black);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

button.work-item {
  cursor: pointer;
}
button.work-item:hover .work-item__overlay, button.work-item:focus-visible .work-item__overlay {
  background: rgba(32, 32, 32, 0.06);
}
button.work-item:hover .work-item__icon, button.work-item:focus-visible .work-item__icon {
  opacity: 1;
}
button.work-item:hover .work-item__media img,
button.work-item:hover .work-item__media video, button.work-item:focus-visible .work-item__media img,
button.work-item:focus-visible .work-item__media video {
  transform: scale(1.025);
}
button.work-item:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 3px;
}

.work-collab {
  padding: 0 18px;
  margin-bottom: 80px;
}

.work-collab-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--color-black);
}
.work-collab-link:hover .work-collab-arrow {
  transform: translate(2px, -2px);
}

.work-collab-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
}

.work-collab-arrow {
  font-size: 22px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.15s ease;
  margin-bottom: 2px;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.work-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.work-modal[hidden] {
  display: none;
}

.work-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.work-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.work-modal-close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.work-modal-inner {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.work-modal__media {
  max-width: 100%;
  max-height: calc(85vh - 60px);
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.work-modal__counter {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  text-align: center;
}

.work-modal-prev,
.work-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.work-modal-prev:hover,
.work-modal-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.work-modal-prev:focus-visible,
.work-modal-next:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.work-modal-prev {
  left: 16px;
}

.work-modal-next {
  right: 16px;
}

body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .work-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (min-width: 768px) {
  .site-nav {
    padding: 20px 32px;
  }
  .proj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 32px;
  }
  .work-hero-temp {
    padding: 64px 32px 40px;
  }
  .work-hero-text {
    font-size: 56px;
  }
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: calc((100vw - 96px) / 3);
    gap: 16px;
    padding: 0 32px;
    margin-bottom: 80px;
  }
  .work-collab {
    padding: 0 32px;
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .site-nav {
    padding: 24px 64px;
  }
  .hero {
    height: 560px;
  }
  .hero-heading {
    font-size: 96px;
    top: 180px;
  }
  .hero-board-wrap {
    left: auto;
    right: 5%;
    top: 280px;
  }
  .intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
    padding: 0 32px;
  }
  .intro .intro-text {
    font-size: 18px;
  }
  .featured {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 64px;
  }
  .featured .featured-heading {
    font-size: 52px;
  }
  .featured .featured-cards {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .services {
    padding: 48px 0;
  }
  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
  }
  .services-heading {
    font-size: 52px;
    margin-bottom: 48px;
  }
  .service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 96px;
  }
  .service-title {
    flex: 0 0 200px;
    font-size: 26px;
  }
  .service-desc {
    flex: 1;
    font-size: 15px;
  }
  .site-footer {
    padding: 64px 64px;
  }
  .footer-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }
  .footer-top {
    max-width: 380px;
    flex: 1;
  }
  .footer-copyright {
    font-size: 40px;
    text-align: left;
  }
  .footer-bottom {
    flex-shrink: 0;
    align-items: flex-end;
    text-align: right;
  }
  .footer-contact-info {
    align-items: flex-end;
  }
  .footer-social {
    justify-content: flex-end;
  }
  .about-portrait {
    padding-top: 80px;
    padding-bottom: 56px;
  }
  .portrait-inner {
    width: 380px;
    height: 440px;
  }
  .about-bio {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    padding: 0 32px;
    text-align: left;
  }
  .bio-intro,
  .bio-body {
    font-size: 16px;
  }
  .contact-hero {
    padding-top: 96px;
    margin-bottom: 64px;
  }
  .contact-heading {
    font-size: 96px;
    line-height: 1;
  }
  .contact-buttons {
    margin-bottom: 96px;
    gap: 16px;
  }
  .btn-contact {
    font-size: 16px;
    padding: 12px 28px;
  }
  .work-heading {
    font-size: 160px;
  }
  .filter-pill {
    font-size: 11px;
    padding: 6px 12px;
  }
  .proj-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
    margin-bottom: 80px;
  }
  .work-hero-temp {
    padding: 96px 64px 48px;
  }
  .work-hero-text {
    font-size: 72px;
  }
  .work-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min((100vw - 168px) / 3, 344px);
    gap: 20px;
    padding: 0 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 96px;
  }
  .work-collab {
    width: 100%;
    padding: 0 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 96px;
  }
  .work-collab-text {
    font-size: 24px;
  }
  .work-modal-prev {
    left: 32px;
  }
  .work-modal-next {
    right: 32px;
  }
  .case-header {
    padding-top: 80px;
  }
  .case-title {
    font-size: 80px;
  }
  .case-desc {
    max-width: 640px;
    margin: 24px auto 48px;
    font-size: 16px;
    padding: 0;
  }
  .folder-stack {
    margin-bottom: 64px;
  }
  .case-next {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 96px;
  }
}
@media (min-width: 1400px) {
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 253px;
  }
}
