:root {
  color-scheme: dark;
  --bg: #030304;
  --bg-soft: #090a0b;
  --surface: #0d0e10;
  --surface-2: #151619;
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f4f1;
  --muted: #a6a8aa;
  --dim: #5f6266;
  --red: #e33722;
  --amber: #d7b06a;
  --steel: #8f989f;
  --max: 1480px;
  --pad: clamp(18px, 3.2vw, 48px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
  color: var(--text);
  overflow-x: hidden;
}

body::selection {
  color: #080808;
  background: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad);
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 4, 0.82);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-link,
.hero-grid,
.statement-meta,
.dispatch-top,
.dispatch-data,
.site-footer,
.contact-actions,
.platform-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #080808;
  background: var(--text);
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 12px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 8px 0;
  line-height: 1;
}

.nav-links small {
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] small,
.nav-links a:hover small {
  color: var(--muted);
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.header-link {
  justify-self: end;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.header-phone-icon,
.mobile-label {
  display: none;
}

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

main {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-media,
.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-video {
  pointer-events: none;
}

.mobile-hero-media {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.84), rgba(3, 3, 4, 0.28) 48%, rgba(3, 3, 4, 0.72)),
    linear-gradient(0deg, #030304 0%, transparent 38%);
}

.frame-label {
  position: absolute;
  z-index: 2;
  top: 94px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0;
}

.top-left {
  left: var(--pad);
}

.top-right {
  right: var(--pad);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), 100%);
  min-height: 92svh;
  margin: 0 auto;
  padding: 18vh var(--pad) 7vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.micro,
.work-caption span,
.work-card span,
.contact-block span,
.dispatch-top,
.frame-label,
.social-ui span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.micro {
  display: grid;
  gap: 5px;
  text-transform: none;
}

.micro span {
  color: var(--text);
}

.micro small {
  color: var(--muted);
  font-size: 11px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(56px, 12.5vw, 190px);
  line-height: 0.78;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-grid {
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hero-grid p {
  width: min(680px, 100%);
  margin: 0;
  color: #d9dada;
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 1.45;
}

.arrow-cta {
  min-width: 178px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(244, 244, 241, 0.08);
  font-size: 13px;
}

.home-hero .arrow-cta {
  animation: ui-border-breathe 2.8s ease-in-out infinite;
}

.arrow-cta span {
  display: grid;
  gap: 4px;
}

.arrow-cta strong {
  font-weight: 600;
}

.arrow-cta small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.arrow-cta:hover {
  color: #050506;
  background: var(--text);
}

.arrow-cta:hover small {
  color: rgba(5, 5, 6, 0.62);
}

.statement-section,
.page-hero,
.work-index,
.case-section,
.contact-grid,
.social-contact,
.dispatch-section,
.brand-collab-section,
.space-specs,
.space-statement,
.space-gallery {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(46px, 6.2vw, 88px) var(--pad);
}

.statement-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line-soft);
}

.statement-index,
.page-count {
  color: var(--text);
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.9;
}

.page-title h1,
.contact-panel h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 80px);
  line-height: 0.95;
  font-weight: 500;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4.4vw, 62px) clamp(28px, 6vw, 88px);
}

.service-matrix article {
  position: relative;
  min-height: 118px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.service-matrix article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text);
}

.service-matrix h2 {
  margin: 0 0 6px;
  padding-left: 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  font-weight: 650;
}

.service-matrix p {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.1;
  text-transform: uppercase;
}

.service-matrix p small {
  font-size: inherit;
}

.statement-meta {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.statement-meta span {
  padding: 9px 12px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.worlds-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(54px, 7vw, 104px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.world-panel {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.world-panel::before,
.work-card::before,
.dispatch-card::before,
.social-post::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.12), transparent 42%);
  transition: opacity 180ms ease;
}

.world-panel:hover::before,
.work-card:hover::before,
.dispatch-card:hover::before,
.social-post:hover::before {
  opacity: 1;
}

.world-panel.tall {
  grid-row: span 2;
  min-height: 654px;
}

.world-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 600ms ease;
}

.world-panel:hover img,
.work-card:hover img,
.dispatch-card:hover img,
.social-post:hover img {
  transform: scale(1.035);
}

.world-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.82), transparent 54%);
}

.world-panel > div,
.panel-number {
  position: relative;
  z-index: 2;
}

.panel-number {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 11px;
}

.world-panel p,
.world-panel h3 {
  margin: 0;
}

.world-panel p {
  color: var(--muted);
  font-size: 12px;
}

.world-panel p span,
.world-panel p small,
.world-panel h3 small {
  display: block;
}

.world-panel p span {
  color: var(--text);
}

.world-panel p small,
.world-panel h3 small {
  color: var(--muted);
}

.world-panel p small {
  margin-top: 4px;
  font-size: 10px;
  text-transform: uppercase;
}

.world-panel h3 {
  max-width: 540px;
  margin-top: 8px;
  font-size: clamp(24px, 3.4vw, 54px);
  line-height: 1;
  font-weight: 500;
}

.world-panel h3 small {
  margin-top: 8px;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.2;
  text-transform: uppercase;
}

.section-rail {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.section-rail span {
  color: var(--muted);
  font-size: clamp(24px, 4vw, 60px);
  line-height: 1;
}

.section-rail h2 {
  margin: 0;
  font-size: clamp(32px, 5.4vw, 76px);
  line-height: 0.92;
  font-weight: 500;
}

.dispatch-heading {
  margin-bottom: 22px;
}

.dispatch-heading h2,
.dispatch-heading p {
  margin: 0;
}

.dispatch-heading h2 {
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.94;
  font-weight: 500;
}

.dispatch-heading p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1;
}

.dispatch-heading p small {
  font-size: clamp(14px, 1.4vw, 20px);
  text-transform: uppercase;
}

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

.dispatch-card,
.social-post,
.contact-block {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.dispatch-card {
  padding: 14px;
}

.dispatch-top {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.dispatch-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.metric {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-width: 0;
}

.metric strong {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.9;
}

.metric span {
  display: grid;
  gap: 3px;
  padding-bottom: 5px;
}

.metric em {
  color: var(--text);
  font-size: 13px;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}

.metric small {
  color: var(--dim);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-collab-section {
  border-top: 1px solid var(--line-soft);
}

.brand-collab-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 0.92fr) minmax(260px, 0.5fr);
  gap: clamp(18px, 3.4vw, 46px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 48px);
}

.brand-collab-heading > span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.brand-collab-heading h2,
.brand-collab-heading p,
.brand-collab-archive {
  margin: 0;
}

.brand-collab-heading h2 {
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 0.95;
  font-weight: 500;
}

.brand-collab-heading h2 small,
.brand-collab-heading p small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}

.brand-collab-heading h2 small {
  margin-top: 10px;
  font-size: clamp(13px, 1.3vw, 18px);
  line-height: 1.2;
}

.brand-collab-heading p {
  color: #d2d3d4;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
}

.brand-collab-heading p small {
  margin-top: 8px;
  color: var(--dim);
  font-size: 10px;
  line-height: 1.45;
}

.brand-collab-archive {
  position: relative;
  aspect-ratio: 1331 / 1800;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #000;
  background-size: 72px 72px;
}

.brand-collab-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(255, 255, 255, 0.035);
}

.brand-collab-archive img {
  position: absolute;
  top: -4%;
  left: 50%;
  width: 115%;
  max-width: none;
  height: 115%;
  transform: translateX(-50%);
  opacity: 0.94;
}

.site-footer {
  width: min(var(--max), 100%);
  min-height: 76px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.site-footer span,
.site-footer a {
  display: grid;
  gap: 4px;
}

.site-footer small {
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

.page-hero {
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid var(--line-soft);
}

.page-title {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.title-translation {
  display: block;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.bilingual-copy small,
.work-caption span small,
.work-caption h2 small,
.work-caption p small,
.work-card span small,
.work-card h3 small,
.section-rail h2 small,
.case-copy h3 small,
.case-copy p small,
.social-ui strong small,
.social-ui p small,
.contact-panel h1 small,
.contact-panel p small,
.contact-block span small,
.contact-block p small,
.qr-module p small,
.platform-row a small,
.text-link small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}

.bilingual-copy small {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.35;
}

.page-hero p {
  margin: 0;
  color: #d2d3d4;
  font-size: clamp(16px, 1.8vw, 23px);
  line-height: 1.35;
  min-width: 0;
}

.space-hero {
  position: relative;
  min-height: calc(88svh - 40px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}

.space-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.space-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.86), rgba(3, 3, 4, 0.18) 46%, rgba(3, 3, 4, 0.7)),
    linear-gradient(0deg, #030304 0%, transparent 42%);
}

.space-hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), 100%);
  min-height: calc(88svh - 40px);
  margin: 0 auto;
  padding: 16vh var(--pad) 7vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.space-hero-content h1 {
  margin: 0;
  width: 100%;
  text-align: right;
  font-size: clamp(62px, 11.5vw, 156px);
  line-height: 0.82;
  font-weight: 760;
}

.space-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.space-hero-grid p,
.space-statement p {
  margin: 0;
  color: #d9dada;
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 1.5;
}

.space-hero-grid p small,
.space-statement p small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.space-statement p small {
  margin-top: 12px;
  line-height: 1.5;
  text-transform: none;
}

.space-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(32px, 4.6vw, 60px);
  border-bottom: 1px solid var(--line-soft);
}

.space-specs article {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.024);
}

.space-specs span,
.space-frame figcaption {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.space-specs strong {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  font-weight: 520;
}

.space-specs strong .desktop-label,
.space-specs strong .mobile-label {
  color: inherit;
  font: inherit;
  text-transform: none;
}

.space-specs small {
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

.space-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
}

.space-statement .section-rail {
  margin: 0;
}

.space-statement .section-rail h2 {
  max-width: 920px;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.space-frame {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.space-frame.wide {
  grid-column: span 4;
  aspect-ratio: 16 / 10;
}

.space-frame.full {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.space-frame.portrait {
  grid-column: span 2;
  aspect-ratio: 3 / 4;
}

.space-frame.square {
  grid-column: span 3;
  aspect-ratio: 1 / 1;
}

.space-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 700ms ease;
}

.space-frame:hover img {
  transform: scale(1.025);
}

.space-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.68), transparent 42%);
  pointer-events: none;
}

.space-frame figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.space-frame figcaption span {
  color: var(--text);
}

.space-frame figcaption small {
  color: var(--dim);
  font-size: 10px;
}

.work-index {
  display: grid;
  gap: 14px;
  padding-top: clamp(34px, 4vw, 60px);
}

.compact-hero {
  padding-bottom: clamp(34px, 4.8vw, 64px);
}

.feature-work {
  position: relative;
  display: block;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  color: inherit;
}

.feature-work img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.feature-work::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.88), transparent 54%);
}

.work-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 18px;
  align-items: end;
}

.work-caption > * {
  min-width: 0;
}

.work-caption h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4.8vw, 72px);
  line-height: 0.95;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.work-caption h2 small {
  margin-top: 10px;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.2;
}

.work-caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.work-caption span small,
.work-caption p small {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.3;
}

.work-stack {
  display: grid;
  gap: 14px;
}

.work-row {
  display: grid;
  gap: 14px;
}

.work-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  color: inherit;
}

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

.work-card.landscape {
  aspect-ratio: 16 / 9;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.82), transparent 50%);
}

.work-card div {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.work-card h3 {
  margin: 8px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.work-card span small {
  margin-top: 4px;
  font-size: 10px;
}

.work-card h3 small {
  margin-top: 7px;
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.22;
}

.case-section {
  border-top: 1px solid var(--line-soft);
}

.case-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.case-copy {
  position: sticky;
  top: 98px;
  padding-top: 10px;
}

.case-copy h3 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 52px);
  line-height: 0.98;
  font-weight: 500;
}

.section-rail h2 small,
.case-copy h3 small {
  margin-top: 10px;
  font-size: clamp(12px, 1.3vw, 18px);
  line-height: 1.25;
}

.case-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.case-copy p small {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.45;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-post {
  display: block;
  padding: 10px;
  color: inherit;
}

.feature-work:focus-visible,
.work-card:focus-visible,
.social-post:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 4px;
}

.social-post img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms ease;
}

.social-ui {
  display: grid;
  gap: 8px;
  padding: 13px 2px 0;
}

.social-ui strong {
  font-size: 20px;
}

.social-ui strong small {
  margin-top: 3px;
  font-size: 10px;
}

.social-ui p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.social-ui p small {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.35;
}

.project-detail {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.project-hero,
.project-stage,
.project-info-grid,
.project-dossier,
.project-video-section,
.project-gallery-section,
.project-nav {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.project-hero {
  padding-top: 120px;
  padding-bottom: clamp(40px, 6vw, 84px);
  border-bottom: 1px solid var(--line-soft);
}

.project-breadcrumb {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.project-breadcrumb a,
.project-breadcrumb span {
  display: grid;
  gap: 4px;
}

.project-breadcrumb small {
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

.project-title {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.58fr);
  gap: clamp(22px, 4.8vw, 68px);
  align-items: end;
  margin-top: clamp(36px, 6vw, 84px);
}

.project-title > div > span {
  color: var(--muted);
  font-size: 12px;
}

.project-title h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 560;
}

.project-title small,
.project-title p small,
.project-dossier small,
.project-video-heading small,
.project-video-frame small,
.project-gallery-heading small,
.project-gallery-item small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}

#projectTitleEn {
  margin-top: 12px;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.2;
}

.project-title p {
  margin: 0;
  color: #d9dada;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
}

.project-title p small {
  margin-top: 12px;
  color: var(--dim);
  font-size: 11px;
  line-height: 1.45;
}

.project-stage {
  padding-top: clamp(18px, 3vw, 40px);
  padding-bottom: clamp(18px, 3vw, 40px);
}

.project-stage img {
  width: 100%;
  max-height: 82svh;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(36px, 6vw, 84px);
}

.project-info-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.project-info-grid span {
  color: var(--muted);
  font-size: 12px;
}

.project-info-grid span small {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

.project-info-grid strong {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  font-weight: 500;
}

.project-dossier {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.65fr);
  gap: clamp(22px, 4.8vw, 68px);
  padding-top: clamp(38px, 6vw, 84px);
  padding-bottom: clamp(38px, 6vw, 84px);
  border-top: 1px solid var(--line-soft);
}

.project-dossier h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 500;
}

.project-dossier h2 small {
  margin-top: 10px;
  font-size: clamp(12px, 1.2vw, 17px);
}

.project-dossier p {
  margin: 0;
  color: #d9dada;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

.project-dossier p small {
  margin-top: 12px;
  color: var(--dim);
  font-size: 11px;
  line-height: 1.45;
}

.project-video-section {
  padding-top: clamp(38px, 6vw, 84px);
  padding-bottom: clamp(38px, 6vw, 84px);
  border-top: 1px solid var(--line-soft);
}

.project-video-section[hidden] {
  display: none;
}

.project-video-heading,
.project-gallery-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: clamp(18px, 3.2vw, 46px);
  align-items: end;
  margin-bottom: clamp(20px, 4vw, 48px);
}

.project-video-heading > span,
.project-gallery-heading > span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.project-video-heading > span small,
.project-gallery-heading > span small {
  margin-top: 5px;
  color: var(--dim);
  font-size: 10px;
}

.project-video-heading h2,
.project-gallery-heading h2 {
  margin: 0;
  font-size: clamp(32px, 5.8vw, 78px);
  line-height: 0.95;
  font-weight: 500;
}

.project-video-heading h2 small,
.project-gallery-heading h2 small {
  margin-top: 10px;
  font-size: clamp(12px, 1.3vw, 18px);
  line-height: 1.25;
}

.project-video-frame {
  margin: 0;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #000;
  background-size: 72px 72px;
}

.project-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.project-video-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 16px;
  color: var(--text);
  font-size: 13px;
  border-top: 1px solid var(--line-soft);
}

.project-video-frame small {
  color: var(--dim);
  font-size: 10px;
  text-align: right;
}

.project-gallery-section {
  padding-top: clamp(38px, 6vw, 84px);
  padding-bottom: clamp(38px, 6vw, 84px);
  border-top: 1px solid var(--line-soft);
}

.project-gallery-section[hidden] {
  display: none;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.project-gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.project-gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.84), transparent);
}

.project-gallery-item.wide {
  grid-column: span 6;
}

.project-gallery-item.square {
  grid-column: span 3;
}

.project-gallery-item.portrait {
  grid-column: span 2;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease, filter 800ms ease;
}

.project-gallery-item.wide img {
  aspect-ratio: 16 / 9;
}

.project-gallery-item.square img {
  aspect-ratio: 1 / 1;
}

.project-gallery-item.portrait img {
  aspect-ratio: 3 / 4;
}

.project-gallery-item:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.project-gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  color: var(--text);
  font-size: 13px;
  line-height: 1.1;
}

.project-gallery-item span,
.project-gallery-item small {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.project-gallery-item small {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.project-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(48px, 7vw, 96px);
}

.project-nav a {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
}

.project-nav a:hover {
  border-color: var(--text);
}

.project-nav span {
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1;
}

.project-nav small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-hero {
  position: relative;
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--pad) var(--pad);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 4, 0.88), rgba(3, 3, 4, 0.34));
}

.contact-panel {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.contact-panel p {
  margin: 16px 0 0;
  color: #dedede;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.38;
}

.contact-panel h1 small {
  margin-top: 12px;
  font-size: clamp(17px, 2.1vw, 30px);
  line-height: 1;
}

.contact-panel p small {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.text-link {
  color: var(--muted);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.text-link small {
  margin-top: 4px;
  font-size: 10px;
}

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

.contact-block {
  display: block;
  min-height: 220px;
  padding: clamp(18px, 2.4vw, 28px);
}

.map-address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
}

.map-icon-link {
  position: relative;
  top: clamp(12px, 1vw, 16px);
  right: clamp(24px, 3vw, 48px);
  width: clamp(44px, 4.8vw, 72px);
  height: clamp(44px, 4.8vw, 72px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-icon-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  max-width: none;
  display: block;
  transform: translate(-50%, -50%);
  filter: invert(1) grayscale(1) contrast(2);
  mix-blend-mode: screen;
}

.map-icon-link:hover,
.map-icon-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.map-icon-link:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 6px;
}

.contact-block.wide {
  grid-column: 1 / -1;
}

.contact-block h2 {
  margin: 24px 0 0;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 0.98;
  font-weight: 500;
}

.contact-block p {
  width: min(520px, 100%);
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-block span small {
  margin-top: 4px;
  font-size: 10px;
}

.contact-block p small,
.qr-module p small {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.45;
}

.social-contact {
  border-top: 1px solid var(--line-soft);
}

.qr-module {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  border: 1px solid var(--line-soft);
  padding: clamp(16px, 2.4vw, 28px);
}

.contact-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #050506;
}

.contact-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.45)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% 42%;
}

.qr-module h3 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 66px);
  line-height: 0.95;
  font-weight: 500;
}

.qr-module h3 small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.qr-module p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.platform-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.platform-row a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  animation: ui-border-breathe 2.8s ease-in-out infinite;
}

.platform-row a small {
  margin-top: 4px;
  font-size: 10px;
}

.platform-row a:hover {
  background: var(--text);
  color: var(--bg);
}

@keyframes ui-border-breathe {
  0%,
  100% {
    border-color: rgba(244, 244, 241, 0.28);
    box-shadow: 0 0 0 rgba(244, 244, 241, 0);
  }

  50% {
    border-color: rgba(244, 244, 241, 0.92);
    box-shadow:
      0 0 14px rgba(244, 244, 241, 0.28),
      0 0 30px rgba(244, 244, 241, 0.08),
      inset 0 0 10px rgba(244, 244, 241, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .arrow-cta,
  .platform-row a {
    animation: none;
    border-color: rgba(244, 244, 241, 0.72);
    box-shadow: 0 0 10px rgba(244, 244, 241, 0.16);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 68px;
    align-items: start;
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    gap: clamp(24px, 8vw, 56px);
    order: 3;
  }

  .header-link {
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .header-link::after {
    content: none;
  }

  .header-phone-text {
    display: none;
  }

  .header-phone-icon {
    display: block;
    width: 17px;
    height: 17px;
    stroke-width: 1.7;
  }

  .hero-grid,
  .space-hero-grid,
  .statement-section,
  .page-hero,
  .space-statement,
  .work-caption,
  .case-layout,
  .project-title,
  .project-info-grid,
  .project-dossier,
  .project-video-heading,
  .project-gallery-heading,
  .project-nav,
  .qr-module {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: flex-start;
  }

  .space-hero-grid {
    align-items: start;
  }

  .frame-label {
    top: 132px;
  }

  .statement-section,
  .page-hero {
    gap: 22px;
  }

  .brand-collab-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-matrix {
    grid-template-columns: 1fr;
  }

  .worlds-section,
  .project-gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .dispatch-grid,
  .work-row.three,
  .work-row.two,
  .social-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .space-frame.wide,
  .space-frame.full,
  .space-frame.portrait,
  .space-frame.square {
    grid-column: span 1;
  }

  .space-frame.wide,
  .space-frame.full,
  .space-frame.square {
    aspect-ratio: 4 / 5;
  }

  .project-gallery-item.wide,
  .project-gallery-item.square,
  .project-gallery-item.portrait {
    grid-column: 1 / -1;
  }

  .world-panel.tall {
    min-height: 450px;
  }

  .case-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    background-size: 58px 58px;
  }

  .site-header {
    min-height: 64px;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .brand-mark {
    display: none;
  }

  .brand {
    gap: 0;
  }

  .nav-links {
    justify-content: center;
    gap: clamp(18px, 6.8vw, 34px);
    font-size: 14.3px;
  }

  .nav-links a {
    gap: 3.9px;
    padding: 10.4px 0;
  }

  .nav-links small {
    font-size: 11.7px;
  }

  .header-link::after {
    content: none;
  }

  .header-phone-icon {
    width: 16px;
    height: 16px;
  }

  .page-hero,
  .work-index,
  .project-hero,
  .project-stage,
  .project-info-grid,
  .project-dossier,
  .project-video-section,
  .project-gallery-section,
  .project-nav,
  .case-section,
  .contact-grid,
  .social-contact,
  .dispatch-section,
  .space-specs,
  .space-statement,
  .space-gallery,
  .brand-collab-section,
  .statement-section {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  .hero-content {
    padding-top: 138px;
  }

  .home-hero {
    min-height: 88svh;
    background: #030304;
  }

  .space-hero > img:not(.mobile-hero-media),
  .contact-hero > img:not(.mobile-hero-media) {
    display: none;
  }

  .space-hero > img.mobile-hero-media,
  .contact-hero > img.mobile-hero-media {
    display: block;
  }

  .home-hero .hero-media {
    object-fit: cover;
    object-position: center 46%;
  }

  .home-hero .frame-label {
    display: none;
  }

  .space-hero-content {
    padding: 126px 18px 78px;
  }

  .space-hero {
    min-height: 82svh;
    background: #030304;
  }

  .space-hero > img {
    object-fit: cover;
    object-position: center 44%;
  }

  .space-hero-content {
    min-height: 82svh;
  }

  .contact-hero {
    min-height: 78svh;
    padding: 112px 18px 82px;
    background: #030304;
  }

  .contact-hero > img {
    object-fit: cover;
    object-position: center 50%;
  }

  .frame-label {
    top: 120px;
  }

  body[data-page="space"] .space-hero .frame-label {
    top: 148px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .space-hero-content h1 {
    font-size: clamp(42px, 14vw, 56px);
  }

  .hero-grid p,
  .space-hero-grid p,
  .space-statement p,
  .contact-panel p,
  .project-title p,
  .project-dossier p {
    font-size: 14px;
    line-height: 1.45;
  }

  .page-title h1,
  .contact-panel h1 {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  .title-translation,
  .contact-panel h1 small {
    font-size: 13px;
  }

  .statement-index,
  .page-count {
    font-size: clamp(36px, 11vw, 48px);
  }

  .micro,
  .work-caption span,
  .work-card span,
  .contact-block span,
  .dispatch-top,
  .frame-label,
  .social-ui span {
    font-size: 10px;
  }

  .hero-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .space-hero-grid {
    gap: 20px;
  }

  .space-specs {
    gap: 7px;
  }

  .space-specs article {
    min-height: 104px;
    gap: 10px;
    padding: 9px 7px;
  }

  .space-specs strong {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.08;
  }

  .space-specs small {
    font-size: 7.5px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .arrow-cta {
    width: 100%;
    min-height: 50px;
    font-size: 12px;
  }

  .service-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-matrix article {
    min-height: 104px;
    padding: 14px 10px 12px;
    border: 1px solid var(--line-soft);
  }

  .service-matrix article::before {
    top: 16px;
    left: 10px;
    width: 6px;
    height: 6px;
  }

  .service-matrix h2 {
    margin-bottom: 8px;
    padding-left: 13px;
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.05;
  }

  .service-matrix p {
    padding-left: 13px;
    font-size: 9.5px;
    line-height: 1.15;
  }

  .worlds-section,
  .dispatch-grid,
  .work-row.three,
  .work-row.two,
  .social-strip,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-panel {
    min-height: 0;
    padding: 14px;
    aspect-ratio: 3 / 4;
  }

  .world-panel.tall {
    grid-row: auto;
    min-height: 0;
  }

  .worlds-section .world-panel:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .world-panel h3 {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .world-panel h3 small,
  .world-panel p small {
    font-size: 8px;
  }

  .dispatch-card {
    padding: 8px;
  }

  .dispatch-data {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .metric {
    gap: 7px;
  }

  .metric strong {
    font-size: clamp(19px, 6vw, 24px);
  }

  .dispatch-section .metric em {
    display: none;
  }

  .metric small {
    font-size: 8px;
  }

  .space-gallery {
    grid-template-columns: 1fr;
  }

  .space-frame,
  .space-frame.wide,
  .space-frame.full,
  .space-frame.portrait,
  .space-frame.square {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .work-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .work-caption h2 {
    max-width: calc(100vw - 68px);
    font-size: clamp(22px, 6.6vw, 28px);
  }

  .page-hero p {
    max-width: calc(100vw - 36px);
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  body[data-page="work"] .compact-hero {
    padding-top: 142px;
    padding-bottom: 28px;
  }

  body[data-page="work"] .page-title h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 0.98;
  }

  body[data-page="work"] .title-translation {
    font-size: 11px;
  }

  body[data-page="work"] .page-hero p {
    font-size: 13px;
    line-height: 1.28;
  }

  body[data-page="work"] .bilingual-copy {
    display: none;
  }

  .project-hero {
    padding-top: 126px;
  }

  .project-breadcrumb {
    flex-direction: column;
  }

  .project-title h1 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .project-stage img {
    max-height: none;
  }

  .project-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding-bottom: 34px;
  }

  .project-info-grid article {
    min-height: 116px;
    gap: 12px;
    padding: 12px 8px;
  }

  .project-info-grid span {
    font-size: 10px;
    line-height: 1.15;
  }

  .project-info-grid span small {
    margin-top: 3px;
    font-size: 7.5px;
    line-height: 1.15;
  }

  .project-info-grid strong {
    font-size: clamp(12px, 3.55vw, 15px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .feature-work,
  .feature-work img {
    min-height: 320px;
  }

  .feature-work img {
    object-position: center 48%;
  }

  .work-card.landscape {
    grid-column: 1 / -1;
  }

  .work-card.mobile-landscape {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .work-card div {
    left: 9px;
    right: 9px;
    bottom: 9px;
  }

  .work-card h3 {
    font-size: clamp(12px, 3.7vw, 16px);
    line-height: 1.02;
  }

  .work-card h3 small {
    margin-top: 5px;
    font-size: 7.5px;
    line-height: 1.12;
  }

  .work-card span {
    font-size: 8px;
    line-height: 1.12;
  }

  .work-card span small {
    margin-top: 3px;
    font-size: 7px;
    line-height: 1.1;
  }

  .work-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .work-caption h2 {
    max-width: calc(100vw - 54px);
    font-size: clamp(19px, 5.5vw, 23px);
    line-height: 1;
  }

  .work-caption h2 small {
    margin-top: 6px;
    font-size: 9px;
  }

  .work-caption p {
    font-size: 11px;
    line-height: 1.35;
  }

  .work-caption span,
  .work-caption span small,
  .work-caption p small {
    font-size: 8px;
    line-height: 1.18;
  }

  .social-post {
    padding: 8px;
  }

  .social-ui {
    gap: 6px;
    padding-top: 10px;
  }

  .social-ui strong {
    font-size: 17px;
  }

  .social-ui p {
    font-size: 10.5px;
  }

  .case-copy h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .case-copy p {
    font-size: 13px;
  }

  .section-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .space-statement .section-rail h2 {
    font-size: clamp(24px, 6.8vw, 31px);
    line-height: 1.04;
  }

  .section-rail span {
    font-size: clamp(22px, 7vw, 32px);
  }

  .space-hero-grid p small,
  .space-statement p small,
  .bilingual-copy small {
    font-size: 10.5px;
  }

  .contact-block {
    min-height: 150px;
    padding: 14px;
  }

  .map-address-row {
    gap: 16px;
  }

  .map-icon-link {
    top: 9px;
    right: 0;
    width: clamp(28px, 8vw, 34px);
    height: clamp(28px, 8vw, 34px);
  }

  .contact-block.wide {
    grid-column: 1 / -1;
  }

  .contact-grid .contact-block > span {
    font-size: 9px;
  }

  .contact-grid .contact-block > span small {
    font-size: 8.5px;
  }

  .contact-block h2 {
    margin-top: 18px;
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .contact-block p {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .contact-grid .contact-block p small {
    font-size: 8.5px;
  }

  .qr-module h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .contact-portrait {
    width: 50%;
    min-height: 0;
    margin-inline: auto;
  }

  .qr-module p {
    font-size: 13px;
  }

  .platform-row a {
    flex: 1 1 calc(50% - 6px);
    padding: 11px 12px;
    font-size: 12px;
  }

  .site-footer {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

.site-footer .beian-record { display: inline-flex; align-items: center; gap: 6px; }
.beian-record img { width: 18px; height: 20px; object-fit: contain; }