@font-face {
  font-family: "Narve Sans";
  src: url("./assets/fonts/SUIT-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Narve Display";
  src: url("./assets/fonts/SUITE-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --paper: #ffffff;
  --ink: #11110f;
  --line: rgba(17, 17, 15, 0.22);
  --white: #ffffff;
  --header-height: 70px;
  --page-x: clamp(18px, 2.15vw, 42px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Narve Sans", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

body.detail-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: 0 var(--page-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto var(--page-x) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: border-color 260ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after {
  border-color: var(--line);
}

.site-header--solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header--solid::after {
  border-color: var(--line);
}

.brand {
  position: relative;
  z-index: 1;
  justify-self: start;
  cursor: pointer;
  text-align: left;
}

.brand-primary {
  display: block;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(25px, 2.15vw, 38px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.075em;
}

.brand-hint {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.11em;
  opacity: 0;
  transition: opacity 180ms ease;
}

.brand:hover .brand-hint,
.brand:focus-visible .brand-hint {
  opacity: 0.72;
}

.site-header nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 38px);
}

.site-header nav a {
  position: relative;
  z-index: 1;
  padding: 12px 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-align: center;
}

.nav-label {
  position: relative;
  display: block;
  height: 1.35em;
  overflow: hidden;
}

.nav-word {
  display: block;
  height: 1.35em;
  line-height: 1.35;
  text-align: center;
  transform: translateY(0);
  transition: transform 320ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.nav-word--ko {
  position: absolute;
  inset: 0;
  transform: translateY(115%);
}

.site-header nav a:hover .nav-word,
.site-header nav a:focus-visible .nav-word {
  transition-delay: 120ms;
}

.site-header nav a:hover .nav-word--en,
.site-header nav a:focus-visible .nav-word--en {
  transform: translateY(-115%);
}

.site-header nav a:hover .nav-word--ko,
.site-header nav a:focus-visible .nav-word--ko {
  transform: translateY(0);
}

.site-header nav a::after,
.contact-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 240ms ease;
}

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

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #5c554d;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  margin: 0;
  overflow: hidden;
}

.hero-media img {
  object-fit: cover;
  object-position: center 36%;
  transform: scale(calc(1.025 + var(--hero-scale, 0)));
  filter: saturate(0.92) contrast(0.98);
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 500ms ease;
}

.hero:hover .hero-media img {
  transform: scale(calc(1.045 + var(--hero-scale, 0)));
  filter: saturate(0.98) contrast(1.01);
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 22%, transparent 62%, rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.13), transparent 42%);
}

.hero-wordmark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", "Narve Display", sans-serif;
  font-size: clamp(50px, 9.2vw, 148px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  animation: wordmarkIn 900ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

@keyframes wordmarkIn {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--page-x);
  bottom: clamp(48px, 8vh, 92px);
  max-width: min(720px, 80vw);
  display: none;
}

.hero-index,
.hero-meta,
.scroll-cue,
.section-kicker,
.section-note,
.detail-header,
.detail-intro > div > p,
.detail-next > p,
.footer-meta {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.hero-index {
  margin: 0 0 11px;
}

.hero h1 {
  margin: 0;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(58px, 9.3vw, 158px);
  font-weight: 430;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero-meta {
  margin: 22px 0 0;
  display: flex;
  gap: 30px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--page-x);
  bottom: clamp(48px, 8vh, 92px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.scroll-cue i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.scroll-cue:hover i {
  transform: translateY(4px);
  background: var(--white);
  color: var(--ink);
}

.work-section {
  padding: clamp(88px, 12vw, 190px) var(--page-x) clamp(100px, 14vw, 220px);
  scroll-margin-top: var(--header-height);
}

.section-intro {
  margin-bottom: clamp(50px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
}

.section-kicker {
  margin: 0 0 22px;
  grid-column: 1 / -1;
}

.section-intro h2 {
  margin: 0;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(49px, 8.2vw, 132px);
  font-weight: 430;
  line-height: 0.82;
  letter-spacing: -0.077em;
}

.section-intro .work-years {
  font-family: "Narve Sans", sans-serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-note {
  margin: 0 0 4px;
  text-align: right;
}

.section-more {
  position: relative;
  justify-self: end;
  margin: 0 0 4px;
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.section-more i {
  font-size: 14px;
  font-style: normal;
  transition: transform 220ms ease;
}

.section-more:hover i,
.section-more:focus-visible i {
  transform: translateX(5px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(54px, 7vw, 120px) clamp(10px, 1.15vw, 22px);
}

.work-card {
  min-width: 0;
}

.work-card:nth-child(1) {
  grid-column: 1 / span 4;
}

.work-card:nth-child(2) {
  grid-column: 6 / span 7;
  margin-top: 11vw;
}

.work-card:nth-child(3) {
  grid-column: 1 / span 7;
}

.work-card:nth-child(4) {
  grid-column: 9 / span 4;
  margin-top: -5vw;
}

.work-card:nth-child(5) {
  grid-column: 2 / span 8;
}

.work-card:nth-child(6) {
  grid-column: 9 / span 4;
  margin-top: 15vw;
}

.work-trigger {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.work-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #050505;
  transition: transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1), background-color 400ms ease;
}

.work-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 360ms ease, transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.work-card--portrait .work-image {
  aspect-ratio: 2 / 3;
}

.work-card--landscape .work-image,
.work-card--wide .work-image {
  aspect-ratio: 3 / 2;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 800ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 500ms ease;
}

.work-card--photo .work-image img {
  opacity: 1;
}

.work-hover {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(13, 13, 12, 0.24);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 300ms ease, transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.work-trigger:hover .work-image,
.work-trigger:focus-visible .work-image {
  transform: translateY(-5px) rotate(0.25deg);
  background: #141414;
}

.work-trigger:hover .work-image::before,
.work-trigger:focus-visible .work-image::before {
  opacity: 0.6;
  transform: scale(1);
}

.work-trigger:hover .work-image img,
.work-trigger:focus-visible .work-image img {
  transform: scale(1.025);
  filter: saturate(0.86);
}

.work-trigger:hover .work-hover,
.work-trigger:focus-visible .work-hover {
  opacity: 1;
  transform: translateY(0);
}

.work-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid transparent;
  font-size: 9px;
  letter-spacing: 0.085em;
  display: none;
}

.work-caption b {
  overflow: hidden;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-caption span {
  color: rgba(17, 17, 15, 0.58);
  text-align: right;
}

.work-more {
  min-width: 148px;
  margin: clamp(62px, 8vw, 112px) auto 0;
  padding: 13px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.work-more i {
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: transform 360ms ease;
}

.work-more[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.about-section {
  padding: clamp(90px, 11vw, 164px) var(--page-x);
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: clamp(60px, 10vw, 170px);
}

.about-lead .section-kicker {
  margin-bottom: clamp(70px, 8vw, 120px);
}

.about-grid h2 {
  margin: 0;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(52px, 7.9vw, 126px);
  font-weight: 430;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.about-copy > p {
  max-width: 440px;
  margin: clamp(96px, 12vw, 186px) 0 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.about-copy ul {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.contact-section {
  min-height: 0;
  padding: clamp(76px, 8vw, 124px) var(--page-x) 28px;
  background: #10100e;
  color: #f5f2ea;
  scroll-margin-top: var(--header-height);
}

.contact-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(60px, 10vw, 170px);
}

.contact-head .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: clamp(68px, 8vw, 116px);
}

.contact-section h2 {
  margin: 0;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(58px, 7.8vw, 126px);
  font-weight: 410;
  line-height: 0.9;
  letter-spacing: -0.072em;
}

.contact-links {
  display: grid;
  align-self: end;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-links a {
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.business-heading {
  margin: clamp(92px, 10vw, 156px) 0 15px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.business-info {
  margin: 0 0 clamp(62px, 7vw, 104px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.business-info div {
  min-width: 0;
  padding: 16px 22px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.business-info-wide {
  grid-column: auto;
}

.business-info dt {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.business-info dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.5;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-meta span:nth-child(2) {
  text-align: center;
}

.footer-meta span:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) rotate(var(--tilt, 0deg));
  transition: opacity 700ms ease, transform 950ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

.lang-changing [data-en],
.lang-changing [data-ko] {
  animation: langSwap 260ms ease;
}

@keyframes langSwap {
  0% { opacity: 1; transform: translateY(0); }
  45% { opacity: 0; transform: translateY(-5px); }
  55% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.detail {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 340ms ease, transform 540ms cubic-bezier(0.72, 0, 0.18, 1);
}

.detail.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.detail-header {
  position: sticky;
  z-index: 5;
  top: 0;
  height: var(--header-height);
  padding: 0 var(--page-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.detail-brand {
  justify-self: start;
  cursor: pointer;
  font-family: "Narve Display", sans-serif;
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.07em;
}

.detail-header > p {
  margin: 0;
}

.detail-close {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.detail-close i {
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.detail-hero {
  height: calc(100svh - var(--header-height));
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.detail-intro {
  padding: clamp(70px, 9vw, 142px) var(--page-x);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  display: none;
}

.detail-intro > div > p {
  margin: 0 0 24px;
}

.detail-intro h2 {
  margin: 0;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(56px, 8.5vw, 136px);
  font-weight: 430;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.detail-intro > p {
  max-width: 520px;
  margin: auto 0 0;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.detail-gallery {
  padding: 0 var(--page-x);
}

.detail-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.detail-full {
  aspect-ratio: 16 / 9;
}

.detail-pair {
  margin: clamp(50px, 8vw, 130px) auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(10px, 1.3vw, 24px);
}

.detail-pair figure {
  aspect-ratio: 2 / 3;
}

.detail-pair figure:last-child {
  margin-top: 10vw;
}

.detail-wide {
  width: 82%;
  aspect-ratio: 3 / 2;
  margin-left: auto !important;
}

.detail-free {
  min-height: 110vw;
  position: relative;
  margin: clamp(100px, 15vw, 240px) 0;
}

.detail-free figure:first-child {
  position: absolute;
  top: 0;
  left: 4%;
  width: 39%;
  aspect-ratio: 2 / 3;
}

.detail-free figure:last-child {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 58%;
  aspect-ratio: 3 / 2;
}

.detail-next {
  padding: 0 var(--page-x) clamp(80px, 10vw, 150px);
}

.detail-next > p {
  display: none;
}

.detail-next button {
  width: 100%;
  padding: 18px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-family: "Narve Display", sans-serif;
  font-size: clamp(40px, 7vw, 112px);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -0.07em;
  text-align: left;
}

.detail-next i {
  font-family: "Narve Sans", sans-serif;
  font-size: 0.55em;
  font-style: normal;
  transition: transform 220ms ease;
}

.detail-next button:hover i {
  transform: translateX(10px);
}

.archive-main {
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(64px, 8vw, 120px)) var(--page-x) clamp(90px, 12vw, 170px);
}

.archive-intro {
  margin-bottom: clamp(45px, 6vw, 88px);
  padding-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.archive-intro h1 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.035em;
}

.archive-intro a {
  padding: 8px 0;
  display: flex;
  gap: 15px;
  font-size: 10px;
  font-weight: 650;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(10px, 1.2vw, 22px);
}

.archive-card {
  display: block;
  min-width: 0;
}

.archive-card--wide {
  grid-column: span 2;
}

.archive-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #050505;
  transition: transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1), background-color 400ms ease;
}

.archive-card--portrait .archive-frame {
  aspect-ratio: 2 / 3;
}

.archive-card--landscape .archive-frame,
.archive-card--wide .archive-frame {
  aspect-ratio: 3 / 2;
}

.archive-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 360ms ease, transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.archive-frame i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 300ms ease, transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.archive-card:hover .archive-frame,
.archive-card:focus-visible .archive-frame {
  transform: translateY(-5px) rotate(0.2deg);
  background: #141414;
}

.archive-card:hover .archive-frame::before,
.archive-card:focus-visible .archive-frame::before,
.archive-card:hover .archive-frame i,
.archive-card:focus-visible .archive-frame i {
  opacity: 0.65;
  transform: translateY(0) scale(1);
}

.archive-footer {
  padding: 22px var(--page-x);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

@media (min-width: 1800px) {
  :root {
    --header-height: 4.861vw;
    --page-x: 2.15vw;
  }

  body {
    font-size: 0.972vw;
  }

  .brand-primary {
    font-size: 2.15vw;
  }

  .site-header nav {
    gap: 2.1vw;
  }

  .site-header nav a,
  .section-more,
  .about-copy li {
    font-size: 0.694vw;
  }

  .hero-wordmark {
    font-size: 9.2vw;
  }

  .scroll-cue,
  .section-kicker,
  .footer-meta,
  .business-heading {
    font-size: 0.625vw;
  }

  .scroll-cue {
    bottom: 6.4vw;
    gap: 1.25vw;
  }

  .scroll-cue i {
    width: 2.361vw;
    height: 2.361vw;
    font-size: 0.903vw;
  }

  .work-section {
    padding: 12vw var(--page-x) 14vw;
  }

  .section-intro {
    margin-bottom: 7vw;
    gap: 1.389vw;
  }

  .section-intro .work-years {
    font-size: 2.4vw;
  }

  .section-more {
    padding-block: 0.625vw;
    gap: 1.528vw;
  }

  .section-more i {
    font-size: 0.972vw;
  }

  .work-grid {
    gap: 7vw 1.15vw;
  }

  .about-section {
    padding: 11vw var(--page-x);
  }

  .about-grid,
  .contact-head {
    gap: 10vw;
  }

  .about-lead .section-kicker,
  .contact-head .section-kicker {
    margin-bottom: 8vw;
  }

  .about-grid h2 {
    font-size: 7.9vw;
  }

  .about-copy > p {
    max-width: 30.556vw;
    margin-top: 12vw;
    font-size: 1.35vw;
  }

  .about-copy ul {
    margin-top: 2.917vw;
  }

  .about-copy li {
    padding-block: 0.903vw;
  }

  .contact-section {
    padding: 8vw var(--page-x) 1.944vw;
  }

  .contact-section h2 {
    font-size: 7.8vw;
  }

  .contact-links a {
    padding-block: 0.972vw;
    font-size: 1.2vw;
  }

  .business-heading {
    margin: 10vw 0 1.042vw;
  }

  .business-info {
    margin-bottom: 7vw;
  }

  .business-info div {
    padding: 1.111vw 1.528vw 1.111vw 0;
  }

  .business-info dt {
    margin-bottom: 0.486vw;
    font-size: 0.556vw;
  }

  .business-info dd {
    font-size: 0.764vw;
  }

  .footer-meta {
    gap: 1.389vw;
    padding-top: 1.25vw;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 58px;
    --page-x: 14px;
  }

  body {
    font-size: 13px;
  }

  .site-header::after {
    inset-inline: var(--page-x);
  }

  .brand-primary {
    font-size: 21px;
  }

  .brand-hint {
    display: none;
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header nav a {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-copy {
    bottom: 78px;
    max-width: calc(100vw - 28px);
  }

  .hero h1 {
    max-width: 94vw;
    font-size: clamp(54px, 18.5vw, 84px);
  }

  .hero-meta {
    margin-top: 14px;
  }

  .scroll-cue {
    right: auto;
    bottom: 20px;
    left: var(--page-x);
  }

  .scroll-cue i {
    width: 28px;
    height: 28px;
  }

  .work-section {
    padding-top: 88px;
    padding-bottom: 120px;
  }

  .section-intro {
    margin-bottom: 50px;
    display: block;
  }

  .section-intro h2 {
    font-size: 16vw;
  }

  .section-note {
    margin-top: 20px;
    text-align: left;
  }

  .section-more {
    margin-top: 20px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 8px;
  }

  .work-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .work-card:nth-child(3),
  .work-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .work-card--landscape .work-image,
  .work-card--wide .work-image {
    aspect-ratio: 3 / 2;
  }

  .work-caption {
    display: block;
    padding-top: 7px;
    font-size: 7.5px;
    line-height: 1.55;
  }

  .work-caption b,
  .work-caption span {
    display: block;
    text-align: left;
  }

  .work-hover {
    display: none;
  }

  .about-section {
    padding-block: 90px;
  }

  .about-grid {
    display: block;
  }

  .about-grid h2 {
    font-size: 15vw;
  }

  .about-copy {
    margin-top: 58px;
  }

  .about-copy > p {
    margin-top: 0;
    font-size: 14px;
  }

  .contact-section {
    min-height: 0;
    padding-top: 70px;
  }

  .contact-head {
    display: block;
  }

  .contact-head .section-kicker {
    margin-bottom: 60px;
  }

  .contact-section h2 {
    margin-bottom: 48px;
    font-size: 15vw;
  }

  .contact-links {
    display: grid;
    margin-bottom: 0;
  }

  .contact-links a {
    display: block;
    width: 100%;
  }

  .business-heading {
    margin-top: 84px;
  }

  .business-info {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 68px;
  }

  .business-info div {
    padding: 13px 12px 13px 0;
  }

  .business-info-wide {
    grid-column: 1 / -1;
  }

  .footer-meta {
    grid-template-columns: 1fr auto;
    font-size: 7px;
  }

  .footer-meta span:nth-child(2) {
    text-align: right;
  }

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

  .detail-header {
    grid-template-columns: 1fr auto;
  }

  .detail-header > p {
    display: none;
  }

  .detail-close span {
    display: none;
  }

  .detail-hero {
    height: calc(100svh - var(--header-height));
  }

  .detail-hero img {
    object-position: center;
  }

  .detail-intro {
    padding-block: 68px 85px;
    display: block;
  }

  .detail-intro h2 {
    font-size: 17vw;
  }

  .detail-intro > p {
    margin-top: 40px;
    font-size: 14px;
  }

  .detail-gallery {
    padding-inline: 0;
  }

  .detail-full,
  .detail-wide,
  .detail-pair figure,
  .detail-free figure:first-child,
  .detail-free figure:last-child {
    width: 100%;
    aspect-ratio: auto;
    position: static;
    margin: 0 !important;
  }

  .detail-gallery img {
    height: auto;
  }

  .detail-pair {
    margin-block: 8px;
    display: block;
  }

  .detail-pair figure + figure,
  .detail-free figure + figure {
    margin-top: 8px !important;
  }

  .detail-free {
    min-height: 0;
    margin-block: 8px 78px;
  }

  .detail-next {
    padding-inline: var(--page-x);
  }

  .detail-next button {
    font-size: 13vw;
  }

  .archive-main {
    padding-top: calc(var(--header-height) + 58px);
  }

  .archive-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .archive-card--wide {
    grid-column: 1 / -1;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero-copy,
.work-caption,
.detail-intro {
  display: none !important;
}
