:root {
  color-scheme: dark;
  --black: #000;
  --ink: #050505;
  --panel: #0d0d0d;
  --panel-soft: #141414;
  --paper: #f5f3ee;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.app {
  min-height: 100vh;
  background: var(--black);
}

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  pointer-events: none;
  animation: intro-splash-fade 3s ease-in-out forwards;
}

.intro-splash img {
  width: min(100vw, 1500px);
  height: min(100vh, 950px);
  object-fit: contain;
  opacity: 0.96;
  transform: scale(0.96);
  animation: intro-splash-zoom 3s ease-out forwards;
}

@keyframes intro-splash-fade {
  0% {
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-splash-zoom {
  0% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1.02);
  }
}

.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: 0.28em;
  transition: opacity 180ms ease;
}

.brand:hover {
  opacity: 0.55;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-button:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 84px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  padding: 10px 16px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--black);
  padding: 20px 24px 24px;
}

.mobile-nav.open {
  display: grid;
  gap: 18px;
}

.work-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.work-menu.open {
  display: block;
}

.work-menu-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 24px;
}

.work-menu p {
  margin: 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.work-menu-inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.work-menu-item {
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 11px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.work-menu-item:hover {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}

.section {
  padding: 112px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 126px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.11), transparent 24%),
    linear-gradient(135deg, #000, #050505 45%, #111);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 56px;
  padding-bottom: 96px;
  padding-top: 80px;
}

.eyebrow {
  margin: 0;
  color: var(--faint);
  font-size: 0.74rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 24px;
  letter-spacing: 0.55em;
}

.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1,
.section-title,
.project-title,
.modal-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(4.3rem, 9vw, 8.8rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 700px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.78;
}

.hero-actions,
.contact-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 26px;
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: rgba(255, 255, 255, 0.84);
  transform: translateY(-1px);
}

.button.ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--white);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.intro-panel,
.project-info-card,
.contact-panel,
.notice-panel,
.modal-card,
.step-card,
.service-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.intro-panel {
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(18px);
}

.intro-panel h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 400;
}

.intro-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.concept-grid span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.work-section {
  background: var(--black);
}

.project-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 64px 0;
}

.project-card.reverse .project-cover-link,
.project-card.reverse .image-block {
  order: 2;
}

.project-card.reverse .project-copy {
  order: 1;
}

.image-block,
.placeholder-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--black);
}

.project-cover-link {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.project-cover-link .image-block {
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.project-cover-link:hover .image-block {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-4px);
}

.project-cover-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 8px;
}

.image-block img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-block::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 52%);
  pointer-events: none;
}

.placeholder-image {
  display: flex;
  align-items: end;
  min-height: 520px;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(145deg, #050505, #171717 55%, #000);
}

.placeholder-image::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.placeholder-label {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.36);
  padding: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.project-copy .eyebrow {
  margin-top: 30px;
}

.project-title {
  margin-top: 20px;
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.95;
}

.project-statement {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  line-height: 1.75;
}

.project-description {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.keyword-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.6);
}

.text-link {
  width: fit-content;
  margin-top: 38px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.text-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.manifesto,
.commissions {
  background: #0b0b0b;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
}

.section-title {
  margin-top: 20px;
  font-size: clamp(3.1rem, 6vw, 5.6rem);
  line-height: 1.05;
}

.large-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.18rem;
  line-height: 1.8;
}

.large-copy p {
  margin: 0 0 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-head > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card,
.service-card {
  border-radius: 26px;
  padding: 30px;
}

.card-number {
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.step-card h3,
.service-card h3 {
  margin: 34px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 400;
}

.step-card p:last-child,
.service-card p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.commission-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 56px;
}

.commission-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.75;
}

.commissions .cards-grid {
  margin-top: 58px;
}

.notice-panel {
  display: flex;
  justify-content: center;
  margin-top: 52px;
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.35);
  padding: 30px;
  text-align: center;
}

.notice-panel p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact {
  background: var(--paper);
  color: var(--black);
}

.contact .split {
  align-items: center;
}

.contact .eyebrow {
  color: rgba(0, 0, 0, 0.45);
}

.contact-panel {
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  background: var(--black);
  padding: 32px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.rights {
  padding: 64px 0;
}

.rights p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.42);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.project-page {
  min-height: 100vh;
  padding-top: 126px;
}

.project-page-inner {
  padding-top: 44px;
  padding-bottom: 96px;
}

.back-button {
  margin: 0 0 34px;
}

.project-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.project-page h1 {
  margin-top: 24px;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
}

.project-info-card {
  border-radius: 28px;
  padding: 30px;
}

.project-info-card h2 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
}

.work-technique {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.work-description {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.data-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.data-item span {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.data-item strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.empty-project {
  padding: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.empty-project p:last-child {
  margin-top: 20px;
  line-height: 1.8;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
  margin: 0 0 56px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 48px;
}

.collection-intro h1 {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.collection-intro-copy {
  display: grid;
  gap: 22px;
  padding-top: 34px;
}

.collection-intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
  line-height: 1.85;
}

.collection-intro-copy .collection-commercial {
  margin-top: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.project-gallery-section {
  margin-top: 0;
  padding-top: 0;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.gallery-heading p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.03rem;
  line-height: 1.75;
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-wrap {
  position: relative;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  text-align: left;
}

.gallery-frame {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 180ms ease,
    transform 240ms ease;
}

.gallery-item:hover .gallery-frame img {
  opacity: 0.82;
  transform: scale(1.018);
}

.gallery-item-contained .gallery-frame {
  display: flex;
  justify-content: center;
  background: #050505;
}

.gallery-item-contained .gallery-frame img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.gallery-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 2px 0;
  color: rgba(255, 255, 255, 0.55);
}

.gallery-caption span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.gallery-caption strong {
  font-size: 0.86rem;
  font-weight: 500;
  text-align: right;
}

.sequential-gallery {
  margin-left: calc((100vw - min(100%, 1280px)) / -2);
  margin-right: calc((100vw - min(100%, 1280px)) / -2);
}

.sequential-gallery .gallery-heading {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.sequential-gallery .gallery-wrap {
  width: 100%;
}

.sequential-gallery .gallery-track {
  display: flex;
  gap: 22px;
  column-count: auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 max(24px, calc((100vw - 1280px) / 2)) 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.32) rgba(255, 255, 255, 0.08);
}

.sequential-gallery .gallery-track::-webkit-scrollbar {
  height: 8px;
}

.sequential-gallery .gallery-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.sequential-gallery .gallery-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.sequential-gallery .gallery-item {
  flex: 0 0 min(78vw, 980px);
  margin: 0;
  scroll-snap-align: center;
}

.sequential-gallery .gallery-frame {
  aspect-ratio: 16 / 9;
}

.sequential-gallery .gallery-frame img {
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.gallery-scroll {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  font-size: 2.35rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.gallery-scroll:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gallery-scroll-prev {
  left: max(18px, calc((100vw - 1280px) / 2));
}

.gallery-scroll-next {
  right: max(18px, calc((100vw - 1280px) / 2));
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.86);
  padding: 40px 24px;
  backdrop-filter: blur(14px);
}

.modal.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(100%, 1120px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 30px;
  background: #090909;
  padding: 76px 44px 44px;
  box-shadow: var(--shadow);
}

.modal-card.narrow {
  width: min(100%, 880px);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: 82px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  padding: 10px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.modal-back {
  margin: 0 0 30px;
}

.author-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.modal-title {
  margin-top: 18px;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.author-copy {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
  line-height: 1.8;
}

.author-copy.secondary {
  color: rgba(255, 255, 255, 0.62);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  outline: 0;
  padding: 15px 20px;
  transition: border-color 180ms ease;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
  border-radius: 22px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

.modal-actions .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.form-message {
  display: none;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.form-message.show {
  display: block;
}

#contact-modal.contact-sent .modal-card {
  min-height: min(620px, calc(100vh - 80px));
  overflow: hidden;
}

#contact-modal.contact-sent .modal-close {
  z-index: 4;
}

#contact-modal.contact-sent .modal-back,
#contact-modal.contact-sent .modal-card > .eyebrow,
#contact-modal.contact-sent .modal-title,
#contact-modal.contact-sent #contact-form {
  display: none !important;
}

.contact-success {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  justify-items: center;
  width: 100%;
  min-height: 100%;
  padding: 72px 30px 48px;
  background: #090909;
  text-align: center;
}

.contact-success[hidden] {
  display: none !important;
}

.contact-success > * {
  max-width: 620px;
}

.contact-success h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.contact-success p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-success .button {
  margin-top: 34px;
}

.privacy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lightbox-modal {
  padding: 18px;
}

.lightbox-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  width: min(100%, 1500px);
  height: min(100%, 92vh);
  color: var(--white);
}

.lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 34px 0 0;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(92vh - 110px);
  object-fit: contain;
}

.lightbox-figure figcaption {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 18px 4px 0;
  color: rgba(255, 255, 255, 0.72);
}

.lightbox-figure span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.lightbox-figure strong {
  font-weight: 500;
  text-align: right;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .hero-grid,
  .project-card,
  .split,
  .commission-intro,
  .project-page-grid,
  .author-grid,
  .gallery-heading,
  .collection-intro {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .work-menu-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-menu-inner > div {
    display: grid;
  }

  .work-menu-item {
    width: 100%;
    text-align: left;
  }

  .project-card.reverse .image-block,
  .project-card.reverse .project-copy {
    order: initial;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .gallery-grid {
    column-count: 2;
  }

  .collection-intro {
    gap: 22px;
  }

  .collection-intro-copy {
    padding-top: 0;
  }

  .sequential-gallery {
    margin-left: -18px;
    margin-right: -18px;
  }

  .sequential-gallery .gallery-heading {
    padding: 0 18px;
  }

  .sequential-gallery .gallery-track {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sequential-gallery .gallery-item {
    flex-basis: 86vw;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 18px;
  }

  .brand {
    max-width: 190px;
    overflow: hidden;
    font-size: 1rem;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-grid {
    gap: 34px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .contact-actions,
  .modal-actions,
  .collection-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .concept-grid,
  .data-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-block,
  .placeholder-image,
  .image-block img {
    min-height: 380px;
  }

  .section {
    padding: 84px 0;
  }

  .project-card {
    padding: 46px 0;
  }

  .project-title {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .section-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .contact-panel,
  .intro-panel,
  .project-info-card,
  .modal-card {
    border-radius: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .modal-card {
    padding-top: 74px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .sequential-gallery .gallery-track {
    gap: 16px;
  }

  .sequential-gallery .gallery-item {
    flex-basis: 88vw;
  }

  .gallery-scroll {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-card {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.42);
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-figure {
    padding-top: 54px;
  }

  .lightbox-figure figcaption {
    flex-direction: column;
  }

  .lightbox-figure strong {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
  }
}
