@font-face {
  font-family: "Field Gothic Wide Local";
  src: url("/assets/fonts/FieldGothicWide-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Field Gothic Wide Local";
  src: url("/assets/fonts/FieldGothicWide-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Field Gothic Wide Local";
  src: url("/assets/fonts/FieldGothicWide-XXBold.woff") format("woff");
  font-style: normal;
  font-weight: 850;
  font-display: swap;
}

@font-face {
  font-family: "Replica";
  src: url("/assets/fonts/ReplicaStd-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Replica";
  src: url("/assets/fonts/ReplicaStd-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Replica";
  src: url("/assets/fonts/ReplicaStd-Heavy.woff2") format("woff2");
  font-style: normal;
  font-weight: 850;
}

:root {
  --bg: #050505;
  --fg: #f5f4ef;
  --muted: rgba(245, 244, 239, 0.36);
  --muted-strong: rgba(245, 244, 239, 0.56);
  --line: rgba(255, 255, 255, 0.11);
  --header-height: 84px;
  --side-gap: clamp(20px, 2.6vw, 44px);
  --top-gap: clamp(170px, 22vh, 238px);
  --panel-width: min(1480px, calc(100vw - clamp(72px, 9vw, 188px)));
  --content-width: min(1280px, calc(100vw - clamp(72px, 8vw, 160px)));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --site-font: "Field Gothic Wide Local", "Replica", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
  font-family: var(--site-font);
  background: var(--bg);
  color: var(--fg);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

button,
a,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

a {
  text-decoration: none;
}

figure {
  margin: 0;
}

.home-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
  min-height: 100dvh;
}

body.is-detail .home-background,
body.is-contact .home-background {
  opacity: 0;
  pointer-events: none;
}

body.is-contact .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-background__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  object-fit: cover;
  object-position: center 34%;
}

.home-background__video--base {
  opacity: 0.92;
  filter: brightness(0.48) saturate(0.82);
  transform: scale(1.18);
  transition: opacity 220ms ease, filter 220ms ease;
}

.home-background__video--hover {
  opacity: 0;
  filter: brightness(0.68) saturate(0.96);
  transform: scale(1.18);
  transition: opacity 260ms ease;
}

body.is-hovering-work .home-background__video--hover {
  opacity: 1;
}

body.is-hovering-work .home-background__video--base {
  opacity: 0;
}

body.is-hover-video-loading .home-background__video--base,
body.is-hover-video-loading .home-background__video--hover {
  opacity: 0;
}

.home-background__shade {
  display: none;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 0;
}

body.is-home .site-shell {
  height: 100dvh;
  min-height: 100dvh;
  padding-bottom: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 0 var(--side-gap);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.site-header__brand,
.site-header__nav-item,
.lang-switch__button,
.home-column__label,
.work-item,
.project-link,
.project-owner,
.project-scroll,
.detail-copy__label,
.credit-group__label,
.player-overlay__meta,
.player-overlay__button {
  letter-spacing: 0.08em;
}

.site-header__brand {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 21;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.site-header__main-nav {
  display: none;
}

.site-header__nav-item {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: color 160ms ease;
}

.site-header__nav-item--active {
  color: var(--fg);
}

.site-header__brand:hover,
.site-header__brand:focus-visible,
.site-header__nav-item:hover,
.site-header__nav-item:focus-visible,
.lang-switch__button:hover,
.lang-switch__button:focus-visible {
  color: var(--fg);
}

.site-header__side-nav {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-switch__button {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.lang-switch__button.is-active {
  color: var(--fg);
}

.app-view {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
}

body.is-home .app-view {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.floating-title {
  position: fixed;
  left: max(24px, calc((100vw - min(1220px, calc(100vw - 160px))) / 2 + 8px));
  bottom: clamp(92px, 11vh, 148px);
  z-index: 12;
  width: min(49vw, 820px);
  max-width: 820px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.is-hovering-work .floating-title,
body.is-floating-visible .floating-title {
  opacity: 1;
}

.floating-title__line {
  font-weight: 400;
  line-height: 0.94;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.floating-title__line:first-child {
  font-size: clamp(30px, 3vw, 54px);
}

.floating-title__line:last-child {
  font-size: clamp(40px, 4.35vw, 78px);
}

.floating-title__line + .floating-title__line {
  margin-top: 7px;
}

.split-target {
  display: inline-flex;
  flex-wrap: wrap;
}

.split-word {
  display: inline-flex;
}

.split-word--space {
  margin-right: 0.36em;
}

.split-char {
  display: inline-flex;
  overflow: hidden;
  padding: 0.16em 0;
  margin: -0.16em 0;
  --char-opacity: 1;
  --char-clip-top: 0%;
  --char-clip-bottom: 0%;
  --char-accent-opacity: 0;
}

.split-char__inner {
  position: relative;
  display: inline-flex;
  opacity: var(--char-opacity);
  clip-path: inset(var(--char-clip-top) 0 var(--char-clip-bottom) 0);
  transition:
    opacity 120ms ease,
    clip-path 120ms ease;
  transition-delay: var(--char-delay, 0ms);
}

.split-char__inner::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  left: 0;
  color: #f08cb6;
  opacity: var(--char-accent-opacity);
  clip-path: inset(var(--char-clip-top) 0 var(--char-clip-bottom) 0);
  transition:
    opacity 120ms ease,
    clip-path 120ms ease;
  transition-delay: var(--char-delay, 0ms);
}

.split-char.is-half-top {
  --char-clip-bottom: 42%;
  --char-opacity: 0.86;
  --char-accent-opacity: 0.9;
}

.split-char.is-half-bottom {
  --char-clip-top: 42%;
  --char-opacity: 0.86;
  --char-accent-opacity: 0.9;
}

.split-char.is-slim-cut {
  --char-clip-top: 16%;
  --char-clip-bottom: 16%;
  --char-opacity: 0.82;
  --char-accent-opacity: 0.76;
}

.home-page {
  min-height: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

body.is-home {
  overflow: hidden;
}

.home-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(170px, 22vh, 250px);
  padding-bottom: clamp(94px, 11vh, 132px);
  min-height: 100%;
  height: 100%;
  display: grid;
  place-items: start center;
}

.home-columns {
  display: grid;
  width: min(1220px, calc(100vw - clamp(72px, 9vw, 188px)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(34px, 5vw, 112px);
  row-gap: 0;
  justify-content: center;
  align-items: start;
  margin-inline: auto;
}

.home-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.home-column__label {
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted-strong);
}

.home-column__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-column:nth-child(2),
.home-column:nth-child(2) .home-column__list {
  align-items: center;
}

.home-column:nth-child(3),
.home-column:nth-child(3) .home-column__list {
  align-items: flex-end;
}

.home-column:nth-child(2) .work-item {
  justify-content: center;
}

.home-column:nth-child(3) .work-item {
  justify-content: flex-end;
}

.work-item {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: fit-content;
  margin: 0 0 3px;
  font-size: clamp(14px, 0.52vw + 7px, 16px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-item__artist {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
  white-space: nowrap;
}

.work-item:hover,
.work-item:focus-visible {
  transform: translateX(4px);
}

.work-item.is-dimmed {
  opacity: 0.28;
}

.project-page {
  --project-fg: #f5f4ef;
  --project-muted: rgba(245, 244, 239, 0.55);
  --project-glass: rgba(10, 11, 14, 0.32);
  --project-line: rgba(255, 255, 255, 0.16);
  min-height: 100svh;
  min-height: 100dvh;
  color: var(--project-fg);
  background: #07090b;
}

.project-page--paper {
  --project-fg: #121316;
  --project-muted: rgba(18, 19, 22, 0.52);
  --project-glass: rgba(255, 255, 255, 0.48);
  --project-line: rgba(18, 19, 22, 0.1);
  background: #f4f1eb;
}

.project-page--frost {
  background:
    radial-gradient(circle at 72% 24%, rgba(174, 205, 215, 0.2), transparent 35%),
    linear-gradient(135deg, #070b0f 0%, #101a20 56%, #06080b 100%);
}

.project-page--dots {
  background-color: #09090b;
  background-image: radial-gradient(circle, rgba(245, 244, 239, 0.14) 1px, transparent 1px);
  background-size: 25px 25px;
}

body.is-detail[data-detail-theme="paper"] .site-header__brand,
body.is-detail[data-detail-theme="paper"] .lang-switch__button.is-active {
  color: #121316;
}

body.is-detail[data-detail-theme="paper"] .lang-switch__button {
  color: rgba(18, 19, 22, 0.42);
}

.project-stage {
  height: 100svh;
  height: 100dvh;
  padding: calc(var(--header-height) + 22px) var(--side-gap) 26px;
  display: grid;
  grid-template-columns: clamp(188px, 17vw, 270px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  overflow: hidden;
}

.project-info-panel,
.project-carousel-shell {
  border: 1px solid var(--project-line);
  background: var(--project-glass);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.project-info-panel {
  align-self: start;
  padding: clamp(16px, 1.6vw, 23px);
  border-radius: 18px;
}

.project-name {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 39px);
  line-height: 0.92;
  font-weight: 400;
}

.project-artist {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--project-muted);
}

.project-crew {
  margin-top: clamp(26px, 4vh, 46px);
  display: grid;
  gap: 13px;
}

.project-crew__row {
  display: grid;
  gap: 4px;
}

.project-crew__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--project-muted);
}

.project-crew__value {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.28;
}

.project-grid {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(250px, 29vw, 404px);
  gap: clamp(12px, 1.2vw, 18px);
}

.project-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.project-media-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 16px;
  background: #000;
  cursor: pointer;
}

.project-media-tile--hero {
  height: 100%;
}

.project-media__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96);
}

.project-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: clamp(20px, 2.2vw, 36px);
  text-align: left;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 42%);
}

.project-title {
  display: inline-grid;
  gap: 4px;
  color: #f5f4ef;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.project-title__client,
.project-title__name {
  font-weight: 400;
  line-height: 0.94;
}

.project-title__client {
  font-size: clamp(16px, 1.35vw, 23px);
}

.project-title__name {
  font-size: clamp(21px, 1.8vw, 32px);
}

.project-title__meta {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-media-tile--hero:hover .project-title__meta,
.project-media-tile--hero:focus-visible .project-title__meta {
  opacity: 0.78;
  transform: translateY(0);
}

.project-carousel-shell {
  min-height: 0;
  padding: 14px;
  border-radius: 18px;
  display: grid;
  grid-template-rows: auto 34px minmax(0, 1fr) 34px;
  gap: 8px;
}

.project-carousel__header {
  display: flex;
  justify-content: space-between;
  padding: 0 5px 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--project-muted);
}

.project-carousel__arrow {
  width: 100%;
  color: var(--project-muted);
  font-size: 17px;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.project-carousel__arrow:hover,
.project-carousel__arrow:focus-visible {
  color: var(--project-fg);
  background: rgba(128, 128, 128, 0.1);
}

.project-carousel {
  min-height: 0;
  display: grid;
  gap: 12px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.project-carousel::-webkit-scrollbar {
  display: none;
}

.project-media-tile--thumb {
  min-height: clamp(185px, 29vh, 292px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-media-tile--thumb.is-active,
.project-media-tile--thumb:hover,
.project-media-tile--thumb:focus-visible {
  opacity: 1;
}

.project-media-tile__number {
  position: absolute;
  left: 13px;
  bottom: 12px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 999px;
  color: #f5f4ef;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-mobile-info {
  display: none;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 22;
  padding: 0 var(--side-gap) 26px;
  pointer-events: none;
}

.site-footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  pointer-events: auto;
}

.site-footer__item {
  min-width: 0;
  width: fit-content;
  display: grid;
  justify-items: start;
  justify-self: start;
  text-align: left;
  gap: 5px;
}

.site-footer__item--instagram {
  grid-column: 3;
  justify-self: end;
  justify-items: end;
  text-align: right;
}

.site-footer__item--instagram .site-footer__value {
  text-align: right;
}

.site-footer__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245, 244, 239, 0.34);
}

.site-footer__value {
  font-size: 11px;
  font-weight: 700;
  color: rgba(245, 244, 239, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: text;
  -webkit-user-select: text;
  text-align: left;
}

.site-footer__value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.site-footer.is-highlighted .site-footer__inner {
  opacity: 1;
}

body.is-admin .site-footer,
body.is-detail .site-footer {
  display: none;
}

.contact-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  padding-top: var(--header-height);
}

.contact-page__video,
.contact-page__shade {
  position: absolute;
  inset: 0;
}

.contact-page__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(0.56) saturate(0.82);
}

.contact-page__shade {
  background: rgba(0, 0, 0, 0.28);
}

.contact-close {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  right: 24px;
  z-index: 8;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.contact-close::before,
.contact-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1.65fr 1fr 1fr;
  width: min(1620px, calc(100vw - max(72px, var(--side-gap) * 2)));
  margin: 0 auto;
  padding-top: 104px;
  min-height: calc(100vh - var(--header-height));
}

.contact-column {
  padding: 0 22px 108px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.contact-column:last-child {
  padding-right: 0;
}

.contact-column__top {
  min-height: 96px;
}

.contact-column__title {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.contact-column__subtitle {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

.contact-column__body {
  padding-top: 34px;
}

.contact-item + .contact-item {
  margin-top: 32px;
}

.contact-item__label {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.contact-item__value {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

.contact-item__value div + div {
  margin-top: 2px;
}

.contact-link {
  color: var(--fg);
  text-decoration: none;
  transition: opacity 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  opacity: 0.72;
}

.contact-address {
  position: fixed;
  left: var(--side-gap);
  bottom: 18px;
  z-index: 5;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted-strong);
  letter-spacing: 0.08em;
}

.admin-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 34px) var(--side-gap) 40px;
}

.admin-screen {
  min-height: 100dvh;
  padding: calc(var(--header-height) + 18px) var(--side-gap) 24px;
}

.admin-screen--auth {
  display: grid;
  place-items: center;
}

.admin-auth-card {
  width: min(520px, calc(100vw - 32px));
  padding: 28px;
  background: rgba(10, 10, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(22px);
}

.admin-shell {
  width: min(1480px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 18px;
  padding: 22px;
  background: rgba(10, 10, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(18px);
}

.admin-sidebar__eyebrow,
.admin-section-block__eyebrow,
.admin-project__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-sidebar__title {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 850;
  line-height: 0.94;
}

.admin-sidebar__meta {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: none;
  line-height: 1.5;
}

.admin-sidebar__nav {
  display: grid;
  gap: 10px;
}

.admin-sidebar__jump {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.admin-sidebar__jump.is-active {
  color: rgba(255, 255, 255, 0.98);
}

.admin-sidebar__project-links {
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-project-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-project-link-row__jump {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.admin-project-link-row__remove,
.admin-project__remove {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.admin-sidebar__actions {
  display: grid;
  gap: 10px;
}

.admin-content {
  display: grid;
  gap: 22px;
  min-width: 0;
  overflow: hidden;
}

.admin-section-block {
  display: grid;
  gap: 18px;
}

.admin-section-block__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-section-block__title {
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 850;
  line-height: 0.96;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.admin-metric-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-metric {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  align-content: space-between;
  gap: 10px;
}

.admin-metric__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-metric__value {
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 850;
  line-height: 0.95;
}

.admin-metric__value--small {
  font-size: 12px;
  line-height: 1.45;
  text-transform: none;
}

.admin-chart {
  padding-top: 6px;
}

.admin-chart__bars {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 200px;
}

.admin-chart__bar-group {
  display: grid;
  gap: 8px;
  align-items: end;
  justify-items: center;
}

.admin-chart__bar {
  width: 100%;
  min-height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.24));
}

.admin-chart__value,
.admin-chart__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.admin-page-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.admin-page-table__head,
.admin-page-table__row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(4, minmax(72px, 0.6fr));
  gap: 14px;
  align-items: center;
}

.admin-page-table__head {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-page-table__row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
}

.admin-projects {
  display: grid;
  gap: 14px;
}

.admin-project {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.admin-project__summary {
  list-style: none;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.admin-project__summary::-webkit-details-marker {
  display: none;
}

.admin-project__title {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 850;
}

.admin-project__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
  text-align: right;
}

.admin-project__order {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted-strong);
  letter-spacing: 0.08em;
}

.admin-project__order .admin-mini {
  min-width: 28px;
  padding: 0;
}

.admin-mini:disabled {
  opacity: 0.32;
  cursor: default;
}

.admin-project__body {
  padding: 0 18px 18px;
}

.admin-project-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.admin-project-tab {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-project-tab.is-active {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  color: #050505;
}

.admin-project-panel[hidden] {
  display: none !important;
}

.admin-panel {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 26px;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.admin-panel__title {
  margin: 0;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.admin-panel__intro {
  margin: 10px 0 0;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
  color: rgba(255, 255, 255, 0.74);
}

.admin-editor {
  width: 100%;
  min-height: 62vh;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.62);
  color: var(--fg);
  font: 12px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  resize: vertical;
  text-transform: none;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.admin-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-button--ghost {
  background: transparent;
}

.admin-button--primary {
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  border-color: transparent;
}

.admin-status {
  margin-top: 12px;
  min-height: 16px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.admin-status.is-error {
  color: #e6b4a8;
}

.admin-card,
.admin-subcard {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.admin-card__top,
.admin-subcard__top,
.admin-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-card__title,
.admin-section__title,
.admin-subcard__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.admin-stack {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.admin-section + .admin-section {
  margin-top: 18px;
}

.admin-field,
.admin-check {
  display: grid;
  gap: 6px;
}

.admin-field__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.admin-field__input {
  min-height: 38px;
  width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: var(--fg);
  font-size: 12px;
  text-transform: none;
}

.admin-field__textarea {
  min-height: 100px;
  padding: 10px;
  resize: vertical;
  line-height: 1.45;
}

.admin-check {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.admin-mini {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.admin-actions--top {
  margin-top: 22px;
}

.player-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px var(--side-gap);
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.player-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.player-overlay__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.player-overlay__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.player-overlay__actions {
  display: flex;
  gap: 18px;
}

.player-overlay__button {
  font-size: 12px;
  font-weight: 700;
  color: var(--fg);
  cursor: pointer;
}

.player-overlay__stage {
  display: grid;
  place-items: center;
  min-height: 0;
}

.player-overlay__video {
  width: min(100%, 1600px);
  max-height: calc(100vh - 110px);
  background: #000;
}

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .home-columns {
    width: calc(100vw - 96px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 0;
  }

  .work-item {
    font-size: 14px;
  }

  .site-footer__inner {
    width: min(1080px, calc(100vw - 96px));
    transform: none;
  }
}

@media (min-width: 1700px) {
  :root {
    --side-gap: 48px;
    --panel-width: min(1620px, calc(100vw - 112px));
    --content-width: min(1380px, calc(100vw - 128px));
  }

  .site-header__brand,
  .site-header__nav-item,
  .lang-switch__button {
    font-size: 11px;
  }

  .home-panel {
    padding-top: clamp(204px, 24vh, 270px);
  }

  .home-columns {
    width: min(1480px, calc(100vw - 176px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(96px, 6vw, 160px);
    row-gap: 0;
  }

  .home-column__label {
    margin-bottom: 30px;
    font-size: 11px;
  }

  .work-item {
    font-size: 16px;
    line-height: 1.14;
  }

  .project-name {
    font-size: clamp(34px, 2.4vw, 48px);
  }

  .project-title__client {
    font-size: clamp(20px, 1.5vw, 28px);
  }

  .project-title__name {
    font-size: clamp(24px, 1.8vw, 34px);
  }

  .contact-layout {
    width: min(1760px, calc(100vw - 112px));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
    --top-gap: 118px;
  }

  .site-header {
    padding: 0 12px;
    display: flex;
    justify-content: flex-end;
  }

  .site-header__brand {
    position: fixed;
    top: 0;
    left: 12px;
    transform: none;
    z-index: 21;
    min-height: auto;
    padding-top: 14px;
    font-size: 12px;
  }

  .site-header__side-nav {
    position: fixed;
    top: 14px;
    right: 12px;
    min-height: auto;
  }

  .lang-switch {
    gap: 16px;
  }

  .lang-switch__button {
    min-height: auto;
    font-size: 12px;
  }

  .floating-title {
    display: none;
  }

  .home-panel {
    min-height: auto;
    height: auto;
    width: 100%;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 28px;
    padding-inline: 12px;
    place-items: start center;
    align-content: start;
  }

  body.is-home .site-shell {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
    padding-bottom: 0;
    overflow: visible;
  }

  body.is-home {
    overflow-y: auto;
  }

  body.is-home .app-view {
    flex: 1 0 auto;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .home-columns {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 336px);
    max-width: 336px;
    margin-inline: auto;
  }

  .home-column {
    min-width: 0;
    align-items: flex-start;
  }

  .home-column:nth-child(2),
  .home-column:nth-child(2) .home-column__list,
  .home-column:nth-child(3),
  .home-column:nth-child(3) .home-column__list {
    align-items: flex-start;
  }

  .home-column:nth-child(2) .work-item,
  .home-column:nth-child(3) .work-item {
    justify-content: flex-start;
  }

  .home-column__label {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .work-item {
    display: inline-grid;
    gap: 3px;
    margin-bottom: 6px;
    font-size: clamp(18px, 2.8vh, 28px);
    line-height: 0.95;
  }

  .home-background__video--base {
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    object-fit: cover;
    object-position: 58% center;
    transform: scale(1.62);
  }

  .project-page,
  .project-stage {
    min-height: 100dvh;
    height: auto;
    overflow: visible;
  }

  .project-stage {
    display: block;
    padding: var(--header-height) 0 0;
  }

  .project-info-panel {
    display: none;
  }

  .project-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .project-media-tile--hero,
  .project-media-tile--thumb {
    display: block;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 12px;
    width: calc(100% - 24px);
    border-radius: 14px;
    flex: 0 0 auto;
  }

  .project-media__video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .project-hero__overlay {
    display: none;
  }

  .project-mobile-info {
    display: block;
    order: 1;
    margin: 0 12px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--project-line);
    background: var(--project-glass);
    backdrop-filter: blur(18px);
  }

  .project-name--mobile {
    margin: 0;
    font-size: clamp(26px, 9vw, 44px);
    line-height: 0.92;
  }

  .project-mobile-info .project-crew {
    margin-top: 25px;
  }

  .project-carousel-shell {
    order: 2;
    margin: 0 12px 18px;
    padding: 13px;
    display: block;
  }

  .project-carousel__header {
    margin-bottom: 12px;
  }

  .project-carousel__arrow {
    display: none;
  }

  .project-carousel {
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .project-carousel .project-media-tile--thumb {
    width: 100%;
    margin: 0;
  }

  .player-overlay {
    padding: calc(12px + env(safe-area-inset-top)) 12px calc(12px + env(safe-area-inset-bottom));
  }

  .player-overlay__topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .player-overlay__video {
    max-height: calc(100vh - 120px);
  }

  .site-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 12px calc(18px + env(safe-area-inset-bottom));
    background: none;
    pointer-events: auto;
    z-index: 2;
  }

  .site-footer__inner {
    width: min(100%, 356px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    transform: none;
    padding-top: 0;
    align-items: end;
    pointer-events: auto;
    margin-inline: auto;
  }

  .site-footer__item {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer__item--instagram {
    grid-column: 2;
    justify-self: end;
    justify-items: end;
    text-align: right;
  }

  .site-footer__label {
    font-size: 7px;
  }

  .site-footer__value {
    font-size: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-close {
    top: calc(var(--header-height) + 8px);
    right: 12px;
    width: 22px;
    height: 22px;
  }

  .contact-close::before,
  .contact-close::after {
    width: 22px;
  }

  .contact-layout {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .contact-column {
    padding: 0 0 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact-column:first-child {
    border-top: 0;
  }

  .contact-column__top {
    min-height: auto;
    padding-top: 18px;
  }

  .contact-column__body {
    padding-top: 26px;
  }

  .contact-item + .contact-item {
    margin-top: 24px;
  }

  .contact-address {
    position: static;
    width: calc(100vw - 24px);
    margin: 18px auto 24px;
    font-size: 10px;
  }

  .admin-screen {
    padding: calc(var(--header-height) + 10px) 12px 18px;
  }

  .admin-auth-card,
  .admin-sidebar,
  .admin-card,
  .admin-subcard,
  .admin-project__body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .admin-shell {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-sidebar__actions,
  .admin-sidebar__nav {
    grid-template-columns: 1fr;
  }

  .admin-section-block__top,
  .admin-panel__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-page-table__head,
  .admin-page-table__row {
    grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(44px, 1fr));
    gap: 10px;
    font-size: 10px;
  }

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

  .admin-project__summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-project__meta {
    text-align: left;
  }
}

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