@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);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Replica", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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;
  transition: opacity 220ms ease;
}

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__iframe,
.home-background__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-background__iframe {
  border: 0;
  pointer-events: none;
  opacity: 0.88;
  filter: brightness(0.9) saturate(0.9);
  transform: scale(1.14);
}

.home-background__video--base {
  opacity: 0.92;
  filter: brightness(0.56) saturate(0.82);
  object-position: center 34%;
  transform: scale(1.18);
}

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

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

.home-background__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.44)),
    rgba(0, 0, 0, 0.16);
}

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

.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: space-between;
  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 {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.site-header__main-nav {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.2vw, 64px);
  min-height: var(--header-height);
}

.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;
}

.floating-title {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 12;
  width: min(78vw, 820px);
  transform: translate(-50%, -50%);
  text-align: center;
  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: 850;
  line-height: 0.94;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.floating-title__line:first-child {
  font-size: clamp(22px, 2.2vw, 34px);
}

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

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

.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: 100svh;
  position: relative;
}

.home-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(220px, 26vh, 292px);
  padding-bottom: 60px;
  display: grid;
  place-items: start center;
}

.home-columns {
  display: grid;
  width: min(1180px, calc(100vw - 160px));
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(96px, 8vw, 188px);
  justify-content: center;
  align-items: start;
  margin-left: clamp(84px, 7vw, 156px);
}

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

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

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

.work-item {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 4px;
  font-size: clamp(14px, 0.52vw + 7px, 16px);
  font-weight: 850;
  line-height: 1.14;
  color: var(--fg);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

.project-page {
  min-height: 100vh;
  background: #000;
}

.project-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.project-top {
  position: fixed;
  top: calc(var(--header-height) + 28px);
  left: var(--side-gap);
  z-index: 14;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: min(24vw, 320px);
}

.project-name {
  margin: 0;
  font-size: clamp(32px, 2.7vw, 50px);
  line-height: 0.9;
  font-weight: 850;
}

.project-owner,
.project-link {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
}

.project-owner {
  color: var(--muted-strong);
}

.project-link {
  color: var(--muted);
  cursor: pointer;
}

.project-grid {
  height: 100vh;
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(0, 67vh) minmax(0, 33vh);
  gap: 0;
}

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

.project-media-tile::after {
  display: none;
}

.project-media-tile.is-active::after,
.project-media-tile:hover::after,
.project-media-tile:focus-visible::after {
  border-color: transparent;
}

.project-media-tile--hero {
  min-height: 0;
}

.project-media__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media__video {
  filter: brightness(0.96);
}

.project-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  pointer-events: none;
}

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

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

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

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

.project-title__meta {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  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-stills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  height: 100%;
}

.project-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.86;
  cursor: pointer;
}

.project-scroll::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.project-info {
  position: relative;
  z-index: 3;
  width: var(--content-width);
  margin: 0 auto;
  padding: 104px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(48px, 6vw, 96px);
  text-transform: none;
}

.detail-copy {
  display: grid;
  gap: 44px;
}

.project-meta-stack {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.project-meta-row {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-strong);
}

.project-meta-row--link {
  color: var(--fg);
}

.project-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.project-cta-links--detail {
  margin-top: 28px;
}

.project-cta-link {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.detail-copy__label,
.credit-group__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.detail-copy__text {
  margin-top: 12px;
  max-width: 34ch;
  font-size: clamp(16px, 1.15vw, 20px);
  font-family: "Replica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--fg);
  text-transform: none;
}

.credit-groups {
  display: grid;
  gap: 16px;
}

.credit-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding-top: 0;
}

.credit-group__value {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.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: 850;
  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: 700;
  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: 700;
  color: var(--muted-strong);
  letter-spacing: 0.08em;
}

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

.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-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 {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 36px;
  }

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

@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 {
    grid-template-columns: repeat(3, minmax(240px, 292px));
    gap: clamp(72px, 6.5vw, 148px);
  }

  .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: block;
  }

  .site-header__brand {
    min-height: auto;
    padding-top: 10px;
    font-size: 10px;
  }

  .site-header__main-nav {
    position: static;
    transform: none;
    justify-content: space-between;
    gap: 16px;
    min-height: auto;
    padding-top: 14px;
  }

  .site-header__nav-item {
    min-height: auto;
    font-size: 10px;
  }

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

  .lang-switch {
    gap: 16px;
  }

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

  .floating-title {
    width: calc(100vw - 36px);
  }

  .floating-title__line:first-child {
    font-size: 20px;
  }

  .floating-title__line:last-child {
    font-size: 24px;
  }

  .home-panel {
    min-height: 100svh;
    width: calc(100vw - 24px);
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 36px;
    align-content: center;
  }

  .home-columns {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100vw - 24px);
    margin-left: 0;
  }

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

  .work-item {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.2;
  }

  .home-background__video--base {
    object-position: center center;
    transform: scale(1.28);
  }

  .project-top {
    top: calc(var(--header-height) + 18px);
    left: 12px;
    right: 12px;
    max-width: 72vw;
  }

  .project-name {
    font-size: clamp(28px, 10vw, 46px);
  }

  .project-owner,
  .project-link,
  .project-meta-row,
  .project-cta-link,
  .project-scroll,
  .detail-copy__label,
  .credit-group__label,
  .player-overlay__meta,
  .player-overlay__button {
    font-size: 10px;
  }

  .project-grid {
    grid-template-rows: minmax(320px, 58vh) auto;
    height: auto;
  }

  .project-hero__overlay {
    padding: 22px;
  }

  .project-title__client {
    font-size: 18px;
  }

  .project-title__name {
    font-size: 22px;
  }

  .project-stills {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-media__video {
    aspect-ratio: 16 / 9;
  }

  .project-info {
    width: calc(100vw - 24px);
    padding: 52px 0 60px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .detail-copy__text {
    max-width: none;
    font-size: 17px;
  }

  .credit-group {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .player-overlay {
    padding: 12px;
  }

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

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

  .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-page {
    padding: calc(var(--header-height) + 18px) 12px 24px;
  }

  .admin-panel {
    padding: 16px;
  }

  .admin-card,
  .admin-subcard {
    padding: 14px;
  }

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

  .admin-panel__top {
    flex-direction: column;
  }

  .admin-editor {
    min-height: 56vh;
    font-size: 11px;
  }
}

@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;
  }
}
