﻿:root {
  --paper: #f7f3eb;
  --paper-deep: #ebe4d8;
  --ink: #181817;
  --muted: #716b61;
  --line: #d5ccbd;
  --clay: #9b6f52;
  --olive: #3f4a3d;
  --night: #20201d;
  --white: #fffaf1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

.brand-intro {
  --intro-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --intro-scale: 1;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: var(--paper);
  color: #181817;
  animation: brandIntroExit calc(0.64s * var(--intro-scale)) calc(5.36s * var(--intro-scale)) ease forwards;
}

.brand-intro.is-compact {
  --intro-scale: 0.54;
}

.brand-intro-horizon {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(480px, 64vw);
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: introHorizon calc(0.5s * var(--intro-scale)) 0s ease-out forwards;
}

.brand-intro-stage {
  position: relative;
  display: grid;
  width: min(560px, 76vw);
  justify-items: center;
}

.brand-intro-mark-wrap {
  position: relative;
  width: min(390px, 64vw);
}

.brand-intro-mark {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 18px 18px rgba(46, 46, 46, 0.055));
}

.intro-block {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform, filter;
}

.intro-base {
  fill: #a8a8a8;
}

.intro-lower {
  fill: #2e2e2e;
}

.intro-bridge,
.intro-upper-1 {
  fill: #5b5b5b;
}

.intro-upper-2 {
  fill: #a8a8a8;
}

.intro-top {
  fill: #e2e2e2;
}

.intro-base-left {
  animation: introFromLeft calc(0.62s * var(--intro-scale)) calc(0.5s * var(--intro-scale)) var(--intro-ease) forwards;
}

.intro-base-right {
  animation: introFromRight calc(0.62s * var(--intro-scale)) calc(0.5s * var(--intro-scale)) var(--intro-ease) forwards;
}

.intro-lower-left,
.intro-lower-right {
  animation: introFloatUp calc(0.58s * var(--intro-scale)) calc(1.1s * var(--intro-scale)) var(--intro-ease) forwards;
}

.intro-bridge {
  filter: blur(5px);
  animation: introBeam calc(0.58s * var(--intro-scale)) calc(1.7s * var(--intro-scale)) var(--intro-ease) forwards;
}

.intro-upper-1.intro-upper-left,
.intro-upper-1.intro-upper-right {
  animation: introFloatUp calc(0.52s * var(--intro-scale)) calc(2.18s * var(--intro-scale)) var(--intro-ease) forwards;
}

.intro-upper-2.intro-upper-left,
.intro-upper-2.intro-upper-right {
  animation: introFloatUp calc(0.52s * var(--intro-scale)) calc(2.38s * var(--intro-scale)) var(--intro-ease) forwards;
}

.intro-top-left,
.intro-top-right {
  animation: introDrop calc(0.55s * var(--intro-scale)) calc(2.98s * var(--intro-scale)) var(--intro-ease) forwards;
}

.brand-intro-axis {
  position: absolute;
  top: 3%;
  bottom: 2%;
  left: 50%;
  width: clamp(22px, 6vw, 42px);
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.brand-intro-axis::before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  height: 32%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  filter: blur(3px);
  opacity: 0;
  transform: translateX(-50%);
  animation: introAxisLight calc(0.7s * var(--intro-scale)) calc(3.48s * var(--intro-scale)) ease-out forwards;
}

.brand-intro-wordmark {
  display: grid;
  justify-items: center;
  margin-top: clamp(10px, 2.3vh, 20px);
  text-align: center;
}

.brand-intro-name,
.brand-intro-en {
  opacity: 0;
  will-change: opacity, transform, letter-spacing;
}

.brand-intro-name {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  transform: scale(0.96);
  animation: introNameIn calc(0.68s * var(--intro-scale)) calc(4s * var(--intro-scale)) var(--intro-ease) forwards;
}

.brand-intro-en {
  margin-top: 14px;
  color: #2e2e2e;
  font-size: clamp(15px, 2.5vw, 24px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.12em;
  transform: translateY(8px);
  animation: introEnglishIn calc(0.62s * var(--intro-scale)) calc(4.65s * var(--intro-scale)) var(--intro-ease) forwards;
}

img {
  display: block;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

canvas,
[data-panorama-viewer] {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4vw;
  color: var(--ink);
  mix-blend-mode: multiply;
}

.detail-header {
  background: rgba(247, 243, 235, 0.82);
  backdrop-filter: blur(14px);
  mix-blend-mode: normal;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: 18px;
  line-height: 1;
}

.brand img {
  width: 36px;
  height: 30px;
  object-fit: contain;
}

.brand span {
  transform: translateY(1px);
}

.desktop-nav {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  font-size: 13px;
}

.desktop-nav a {
  display: inline-flex;
  justify-content: center;
  min-width: 42px;
  padding-bottom: 40px;
  line-height: 1.1;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.mobile-nav a::after,
.site-footer a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a::before {
  position: absolute;
  top: 28px;
  left: 50%;
  color: rgba(24, 24, 23, 0.42);
  content: attr(data-reflection);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.34;
  pointer-events: none;
  transform: translateX(-50%) translateY(2px);
  transform-origin: center top;
  transition: color 220ms ease, filter 220ms ease, opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
  filter: blur(0.55px);
  text-shadow: 0 1px 5px rgba(24, 24, 23, 0.18);
}

.desktop-nav a::after {
  bottom: 23px;
}

.desktop-nav a:hover::before,
.desktop-nav a:focus-visible::before {
  color: var(--ink);
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  filter: blur(0);
  text-shadow: none;
}

.desktop-nav a:hover::after,
.mobile-nav a:hover::after,
.site-footer a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 4vw;
  z-index: 21;
  display: none;
  flex-direction: column;
  gap: 18px;
  min-width: 180px;
  border: 1px solid var(--line);
  background: rgba(247, 243, 235, 0.96);
  padding: 20px;
  font-size: 15px;
}

.mobile-nav.is-open {
  display: flex;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 243, 235, 0.1), rgba(247, 243, 235, 0.25)), url("assets/hero-atelier.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 78vh;
  width: min(1120px, 92vw);
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 58px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.project-meta,
.project-card p,
.project-action,
.archive-list span,
.archive-list em,
.service-item span,
.contact-details,
.site-footer {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: 72px;
  line-height: 0.98;
}

#hero-title {
  max-width: none;
  font-size: 68px;
  white-space: nowrap;
}

h2 {
  font-size: 48px;
  line-height: 1.08;
}

h3 {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  margin-top: 24px;
  color: #2c2a27;
  font-size: 18px;
  line-height: 1.85;
}

.hero-logo {
  width: 172px;
  height: auto;
  margin-bottom: 26px;
}

.company-en {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 14px;
}

.panorama-open-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.intro-section,
.work-section,
.services-section,
.studio-section,
.contact-section {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 46px;
  border-top: 1px solid rgba(24, 24, 23, 0.08);
  border-bottom: 1px solid rgba(24, 24, 23, 0.1);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.58), rgba(247, 243, 235, 0.82));
  text-align: left;
}

.intro-section::before {
  position: absolute;
  top: 30px;
  right: 0;
  left: 308px;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 24, 23, 0.12), rgba(24, 24, 23, 0));
  pointer-events: none;
  content: "";
}

.intro-section .section-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding-top: 2px;
  color: rgba(24, 24, 23, 0.46);
  font-size: 12px;
  line-height: 1.2;
}

.intro-section .section-kicker::before {
  position: absolute;
  top: -14px;
  left: 0;
  width: 76px;
  height: 1px;
  background: rgba(24, 24, 23, 0.16);
  content: "";
}

.intro-section .section-kicker::after {
  display: none;
}

.intro-section p {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: rgba(24, 24, 23, 0.86);
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.08;
  white-space: nowrap;
}

.intro-section p::before {
  display: none;
}

.work-section,
.services-section,
.studio-section,
.contact-section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p:last-child,
.studio-copy p,
.contact-panel p {
  color: #3f3b36;
  font-size: 16px;
  line-height: 1.85;
}

.section-kicker {
  margin-bottom: 14px;
}

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.portfolio-controls button {
  min-width: 76px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 10px 18px;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.portfolio-controls button:hover,
.portfolio-controls button[aria-pressed="true"] {
  border-color: var(--night);
  background: var(--night);
  color: var(--white);
}

.portfolio-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 34px;
  background: var(--line);
}

.spotlight-media,
.spotlight-copy {
  min-height: 420px;
  background: var(--night);
}

.spotlight-media {
  display: block;
  overflow: hidden;
}

.spotlight-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.01);
  transition: opacity 260ms ease, transform 520ms ease;
}

.spotlight-media:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
}

.spotlight-copy .section-kicker,
.spotlight-copy p {
  color: rgba(255, 250, 241, 0.68);
}

.spotlight-copy h3 {
  color: var(--white);
  font-size: 34px;
}

.spotlight-copy p:not(.section-kicker) {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.8;
}

.spotlight-copy .text-link {
  color: var(--white);
}

.portfolio-status {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

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

.project-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.project-card a {
  display: block;
}

.project-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  transition: filter 280ms ease, transform 280ms ease;
}

.project-card:hover img {
  filter: contrast(1.04) saturate(0.94);
  transform: translateY(-4px);
}

.project-card.is-active img {
  outline: 1px solid var(--night);
  outline-offset: 5px;
}

.project-card.is-hidden,
.archive-list a.is-hidden {
  display: none;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.project-card h3 {
  margin-top: 10px;
}

.project-card p {
  margin-top: 8px;
}

.project-action {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
}

.archive-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.archive-list a {
  display: grid;
  grid-template-columns: 220px 1fr 130px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: background 180ms ease, padding 180ms ease;
}

.archive-list a:hover,
.archive-list a.is-active {
  background: rgba(32, 32, 29, 0.045);
  padding-right: 16px;
  padding-left: 16px;
}

.archive-list strong {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: 26px;
  font-weight: 400;
}

.archive-list em {
  text-align: right;
}

.project-detail {
  background: var(--paper);
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 20px;
  min-height: 100vh;
  padding: 120px 20px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.project-detail-media {
  order: 2;
  min-height: calc(100vh - 140px);
  background: var(--night);
  overflow: hidden;
}

.project-detail-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.project-detail-intro {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-deep);
  padding: clamp(44px, 7vw, 96px);
}

.project-detail-intro h1 {
  max-width: 640px;
}

.project-detail-lead {
  max-width: 620px;
  margin-top: 28px;
  color: #34312c;
  font-size: 18px;
  line-height: 1.85;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.project-detail-body {
  display: grid;
  width: min(1180px, 92vw);
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 92px;
  padding: 86px 0;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.project-facts {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.project-facts div {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.project-facts span,
.project-gallery-detail figcaption,
.related-list span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.project-facts strong {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.project-narrative {
  display: grid;
  gap: 28px;
}

.project-narrative p {
  max-width: 820px;
  color: #312e2a;
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: 28px;
  line-height: 1.58;
}

.project-gallery-detail {
  width: 100%;
  padding: 0;
  margin: 0;
  scroll-margin-top: 96px;
  background: var(--paper);
}

.project-gallery-editorial {
  display: grid;
  gap: clamp(20px, 4vw, 56px);
  padding-bottom: 96px;
}

.project-gallery-detail figure {
  margin: 0;
}

.project-gallery-composition,
.project-gallery-slide-layout {
  display: grid;
  width: min(1380px, 92vw);
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin: 0 auto;
}

.project-gallery-composition img,
.project-gallery-slide img {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
  background: var(--paper-deep);
}

.project-space-note {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 360px;
}

.project-space-note h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  white-space: nowrap;
}

.project-space-note p:not(.section-kicker) {
  color: #312e2a;
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

.project-space-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.project-space-note-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  padding: 8px 11px;
}

.project-gallery-carousel {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(36px, 5vw, 72px) 0 clamp(52px, 7vw, 96px);
}

.project-gallery-slider-header {
  display: flex;
  width: min(1180px, 92vw);
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 24px;
}

.project-gallery-slider-header h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;
}

.project-gallery-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.project-gallery-nav {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.project-gallery-nav:hover {
  border-color: var(--night);
  background: var(--night);
  color: var(--white);
}

.project-gallery-viewport {
  width: 100%;
  overflow: hidden;
}

.project-gallery-track {
  display: flex;
  transform: translateX(calc(var(--active-index, 0) * -100%));
  transition: transform 700ms ease;
  will-change: transform;
}

.project-gallery-slide {
  flex: 0 0 100%;
  padding: 0;
}

.project-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.project-gallery-dots button {
  width: 8px;
  height: 8px;
  border: 1px solid var(--muted);
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.project-gallery-dots button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
}

.project-gallery-static-grid {
  display: grid;
  width: min(1380px, 92vw);
  grid-auto-flow: dense;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin: 0 auto;
}

.project-gallery-static-card {
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-content: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.project-gallery-static-card.is-wide,
.project-gallery-static-card.is-board {
  grid-column: span 6;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
}

.project-gallery-static-card.is-portrait {
  grid-column: span 3;
}

.project-gallery-static-card img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  background: var(--paper-deep);
}

.project-gallery-static-card.is-wide img,
.project-gallery-static-card.is-board img {
  max-height: min(72vh, 760px);
}

.project-gallery-static-card .project-space-note {
  max-width: none;
}

.project-gallery-static-card .project-space-note h3 {
  font-size: clamp(22px, 1.8vw, 32px);
}

.project-gallery-detail figcaption {
  margin-top: 12px;
  padding: 0 clamp(0px, 1vw, 10px);
}

.panorama-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: #050505;
  color: var(--white);
}

.panorama-modal.is-open {
  display: block;
}

.panorama-modal-backdrop,
.panorama-modal-shell,
.panorama-viewer {
  position: absolute;
  inset: 0;
}

.panorama-modal-backdrop {
  background: #050505;
}

.panorama-modal-shell {
  overflow: hidden;
}

.panorama-viewer {
  background: #090908;
  cursor: grab;
}

.panorama-viewer.is-dragging {
  cursor: grabbing;
}

.panorama-viewer canvas,
.panorama-viewer [data-panorama-fallback] {
  width: 100%;
  height: 100%;
}

.panorama-viewer canvas {
  display: block;
}

.panorama-viewer [data-panorama-fallback] {
  display: none;
  object-fit: cover;
}

.panorama-viewer.is-fallback canvas {
  display: none;
}

.panorama-viewer.is-fallback [data-panorama-fallback] {
  display: block;
}

.panorama-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px 72px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.panorama-topbar .section-kicker {
  color: rgba(255, 250, 241, 0.62);
}

.panorama-topbar h2 {
  color: var(--white);
  font-size: 30px;
  line-height: 1.1;
}

.panorama-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  background: rgba(8, 8, 7, 0.62);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  pointer-events: auto;
}

.panorama-toolbar {
  position: absolute;
  top: 104px;
  right: 28px;
  z-index: 3;
  display: grid;
  gap: 8px;
}

.panorama-toolbar button {
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: rgba(8, 8, 7, 0.68);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease;
}

.panorama-toolbar button:hover,
.panorama-toolbar button[aria-pressed="true"] {
  border-color: rgba(255, 250, 241, 0.78);
  background: rgba(255, 250, 241, 0.16);
}

.panorama-scenes {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.panorama-scenes button {
  display: grid;
  width: 132px;
  min-width: 132px;
  gap: 8px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: rgba(8, 8, 7, 0.7);
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  text-align: left;
}

.panorama-scenes button[aria-pressed="true"] {
  border-color: var(--white);
}

.panorama-scenes img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.panorama-scenes span {
  overflow: hidden;
  color: rgba(255, 250, 241, 0.78);
  font-size: 12px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panorama-caption,
.panorama-loading {
  position: absolute;
  z-index: 3;
  color: rgba(255, 250, 241, 0.76);
  font-size: 12px;
}

.panorama-caption {
  bottom: 124px;
  left: 28px;
  margin: 0;
}

.panorama-loading {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.panorama-modal.is-ready .panorama-loading,
.panorama-modal.is-clear .panorama-topbar,
.panorama-modal.is-clear .panorama-toolbar,
.panorama-modal.is-clear .panorama-scenes,
.panorama-modal.is-clear .panorama-caption {
  display: none;
}

body.panorama-lock {
  overflow: hidden;
}

.project-story-sections {
  display: grid;
  width: min(1180px, 92vw);
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  padding: 20px 0 96px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.project-section-copy {
  display: grid;
  gap: 42px;
}

.project-section-copy article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.project-section-copy p:last-child {
  max-width: 760px;
  color: #3f3b36;
  font-size: 17px;
  line-height: 1.9;
}

.project-highlights {
  align-self: start;
  background: var(--night);
  color: var(--white);
  padding: 28px;
}

.project-highlights .section-kicker {
  color: rgba(255, 250, 241, 0.66);
}

.project-highlights span {
  display: block;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  padding: 16px 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
}

.project-related {
  display: grid;
  width: min(1180px, 92vw);
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
  padding: 86px 0;
  margin: 0 auto;
}

.project-related h2 {
  font-size: 38px;
}

.related-list {
  border-top: 1px solid var(--line);
}

.related-list a {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.related-list strong {
  font-family: Georgia, "Times New Roman", "SimSun", serif;
  font-size: 25px;
  font-weight: 400;
}

.project-empty {
  min-height: 80vh;
  width: min(900px, 92vw);
  padding: 150px 0 80px;
  margin: 0 auto;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.service-item {
  min-height: 290px;
  background: var(--paper);
  padding: 26px;
}

.service-item h3 {
  margin-top: 42px;
  font-size: 24px;
}

.service-item p {
  margin-top: 18px;
  color: #48443e;
  font-size: 15px;
  line-height: 1.8;
}

.studio-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: end;
}

.studio-copy h2 {
  max-width: 700px;
}

.studio-copy p {
  max-width: 680px;
  margin-top: 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.proof-grid div {
  min-height: 140px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel p {
  max-width: 620px;
  margin-top: 24px;
}

.contact-details {
  display: grid;
  gap: 12px;
  padding-bottom: 6px;
}


.contact-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 48vw);
  background: var(--white);
}

.contact-form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(34px, 7vw, 118px) 22px;
}

.contact-form-panel h1 {
  font-size: 34px;
  line-height: 1.12;
}

.contact-page-copy {
  max-width: 560px;
  margin-top: 10px;
  color: #3f3b36;
  font-size: 13px;
  line-height: 1.55;
}

.contact-request-form {
  display: grid;
  width: min(620px, 100%);
  gap: 6px;
  margin-top: 16px;
}

.contact-request-form label {
  display: grid;
  gap: 4px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
}

.contact-request-form label span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.contact-request-form input,
.contact-request-form select,
.contact-request-form textarea {
  width: 100%;
  border: 1px solid #9d978d;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.3;
  padding: 7px 11px;
}

.contact-request-form textarea {
  min-height: 76px;
  resize: vertical;
}

.contact-request-form input:focus,
.contact-request-form select:focus,
.contact-request-form textarea:focus {
  border-color: var(--night);
  outline: 1px solid var(--night);
  outline-offset: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-submit {
  justify-self: start;
  border: 1px solid var(--night);
  background: var(--night);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  margin-top: 2px;
  padding: 9px 22px;
  transition: background 220ms ease, color 220ms ease;
}

.contact-submit:hover {
  background: transparent;
  color: var(--night);
}

.contact-form-status {
  min-height: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--paper-deep);
  cursor: pointer;
  isolation: isolate;
}

.contact-visual img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  animation: contactImageBreath 7.5s ease-in-out infinite;
}

.contact-visual-ambient,
.contact-visual-lamp-light,
.contact-visual-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-visual-ambient {
  z-index: 1;
  background:
    radial-gradient(ellipse at 61% 19%, rgba(255, 190, 104, 0.16) 0%, rgba(255, 190, 104, 0.08) 12%, transparent 27%),
    radial-gradient(ellipse at 59% 51%, rgba(255, 160, 74, 0.2) 0%, rgba(255, 160, 74, 0.1) 13%, transparent 32%),
    radial-gradient(ellipse at 72% 39%, rgba(255, 127, 62, 0.22) 0%, rgba(255, 127, 62, 0.1) 11%, transparent 25%),
    linear-gradient(180deg, transparent 58%, rgba(255, 174, 83, 0.16) 70%, rgba(255, 174, 83, 0.06) 83%, transparent 100%);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: contactLightBreath 4.8s ease-in-out infinite;
}

.contact-visual-lamp-light {
  z-index: 2;
  top: 21.5%;
  right: 21.7%;
  bottom: auto;
  left: auto;
  width: 20%;
  height: 0.95%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 244, 224, 0.22), rgba(255, 214, 163, 0.46), rgba(255, 244, 224, 0.2));
  box-shadow:
    0 0 10px rgba(255, 215, 166, 0.18),
    0 0 24px rgba(255, 196, 126, 0.1);
  filter: blur(1.4px);
  mix-blend-mode: screen;
  opacity: 0.12;
  transform: rotate(var(--lamp-rotate, -17deg)) scaleX(0.96);
  transform-origin: center;
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease, box-shadow 360ms ease;
}

.contact-visual-lamp-light::before,
.contact-visual-lamp-light::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  inset: 0;
}

.contact-visual-lamp-light::before {
  background: linear-gradient(90deg, rgba(255, 250, 238, 0.12), rgba(255, 226, 184, 0.72), rgba(255, 250, 238, 0.16));
}

.contact-visual-lamp-light::after {
  inset: -4px -7px;
  background: radial-gradient(ellipse at center, rgba(255, 207, 142, 0.58), rgba(255, 188, 104, 0.26) 42%, transparent 72%);
  filter: blur(13px);
  opacity: 0;
  transition: opacity 360ms ease, filter 360ms ease;
}

.contact-visual:hover .contact-visual-lamp-light,
.contact-visual:focus-within .contact-visual-lamp-light {
  box-shadow:
    0 0 10px rgba(255, 228, 190, 0.68),
    0 0 22px rgba(255, 201, 137, 0.34),
    0 0 34px rgba(255, 184, 92, 0.14);
  filter: blur(0.6px);
  opacity: 0.92;
  transform: rotate(var(--lamp-rotate, -17deg)) scaleX(1.04) scaleY(1.12);
}

.contact-visual:hover .contact-visual-lamp-light::after,
.contact-visual:focus-within .contact-visual-lamp-light::after {
  filter: blur(11px);
  opacity: 1;
}

.contact-visual-corners {
  z-index: 3;
  background:
    radial-gradient(circle at 0 0, rgba(12, 12, 11, 0.44), rgba(12, 12, 11, 0.18) 24%, transparent 43%),
    radial-gradient(circle at 100% 0, rgba(12, 12, 11, 0.42), rgba(12, 12, 11, 0.17) 25%, transparent 44%),
    radial-gradient(circle at 0 100%, rgba(12, 12, 11, 0.38), rgba(12, 12, 11, 0.14) 25%, transparent 44%),
    radial-gradient(circle at 100% 100%, rgba(12, 12, 11, 0.4), rgba(12, 12, 11, 0.16) 25%, transparent 45%);
  box-shadow: inset 0 0 110px rgba(12, 12, 11, 0.34);
  backdrop-filter: blur(2.6px);
  -webkit-backdrop-filter: blur(2.6px);
  mask-image: radial-gradient(ellipse at center, transparent 0 54%, rgba(0, 0, 0, 0.22) 66%, #000 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 54%, rgba(0, 0, 0, 0.22) 66%, #000 100%);
}

body.lamp-align-active .contact-visual-lamp-light {
  pointer-events: auto;
  cursor: move;
  filter: blur(0.6px);
  opacity: 0.92;
  transform: rotate(var(--lamp-rotate, -17deg)) scaleX(1.04) scaleY(1.12);
}

body.lamp-align-active .contact-visual-lamp-light::after {
  filter: blur(11px);
  opacity: 1;
}

body.lamp-align-guides .contact-visual-lamp-light {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.lamp-align-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  gap: 10px;
  border: 1px solid rgba(247, 243, 235, 0.34);
  background: rgba(24, 24, 23, 0.88);
  color: var(--white);
  padding: 16px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lamp-align-panel strong {
  font-size: 14px;
  font-weight: 500;
}

.lamp-align-panel p {
  color: rgba(255, 250, 241, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.lamp-align-control {
  display: grid;
  grid-template-columns: 64px 1fr 54px;
  gap: 8px;
  align-items: center;
  color: rgba(255, 250, 241, 0.78);
  font-size: 12px;
}

.lamp-align-control input {
  width: 100%;
  accent-color: #ffe2b8;
}

.lamp-align-value {
  color: var(--white);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.lamp-align-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lamp-align-actions button,
.lamp-align-panel label {
  border: 1px solid rgba(255, 250, 241, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  padding: 7px 10px;
}

.lamp-align-panel label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lamp-align-panel label input {
  accent-color: #ffe2b8;
}

@keyframes contactLightBreath {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.018);
  }
}

@keyframes contactImageBreath {
  0%,
  100% {
    filter: saturate(0.94) brightness(0.9);
  }

  50% {
    filter: saturate(1.05) brightness(0.98);
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--night);
  color: var(--white);
  padding: 28px 4vw;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.icp-link {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes introHorizon {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }

  100% {
    opacity: 0.42;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes introFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-42px);
  }

  72% {
    opacity: 1;
    transform: translateX(2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes introFromRight {
  0% {
    opacity: 0;
    transform: translateX(42px);
  }

  72% {
    opacity: 1;
    transform: translateX(-2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes introFloatUp {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introBeam {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: scaleX(0.2);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scaleX(1);
  }
}

@keyframes introDrop {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introAxisLight {
  0% {
    opacity: 0;
    top: 92%;
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: -26%;
  }
}

@keyframes introNameIn {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introEnglishIn {
  0% {
    opacity: 0;
    letter-spacing: 0.18em;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    letter-spacing: 0.08em;
    transform: translateY(0);
  }
}

@keyframes brandIntroExit {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

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

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 50px;
  }

  #hero-title {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .intro-section,
  .section-heading,
  .studio-section,
  .contact-section,
  .project-detail-hero,
  .project-detail-body,
  .project-story-sections,
  .project-related {
    grid-template-columns: 1fr;
  }

  .project-detail-hero {
    min-height: 0;
    gap: 14px;
    padding: 88px 14px 14px;
  }

  .project-detail-media {
    order: 1;
    height: 58vh;
    min-height: 360px;
    max-height: 560px;
  }

  .project-detail-intro {
    order: 2;
    padding: 44px 5vw 62px;
  }

  .project-detail-body,
  .project-story-sections,
  .project-related {
    gap: 42px;
  }

  .intro-section {
    gap: 18px;
  }

  .intro-section::before {
    display: none;
  }

  .intro-section .section-kicker {
    padding-top: 0;
  }

  .intro-section .section-kicker::after {
    display: none;
  }

  .project-grid,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-spotlight {
    grid-template-columns: 1fr;
  }

  .project-gallery-slider-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-gallery-composition,
  .project-gallery-slide-layout,
  .project-gallery-static-card.is-wide,
  .project-gallery-static-card.is-board {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .project-gallery-composition img,
  .project-gallery-slide img {
    height: 58vh;
  }

  .project-gallery-static-grid {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery-static-card,
  .project-gallery-static-card.is-wide,
  .project-gallery-static-card.is-board,
  .project-gallery-static-card.is-portrait {
    grid-column: span 2;
  }

  .panorama-topbar {
    padding: 20px 5vw 62px;
  }

  .panorama-topbar h2 {
    font-size: 24px;
  }

  .panorama-toolbar {
    top: auto;
    right: 5vw;
    bottom: 142px;
    grid-template-columns: repeat(7, 42px);
  }

  .panorama-scenes {
    right: 5vw;
    bottom: 22px;
    left: 5vw;
  }

  .panorama-caption {
    bottom: 110px;
    left: 5vw;
  }

  .spotlight-media,
  .spotlight-copy {
    min-height: auto;
  }

  .spotlight-media img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .studio-section,
  .contact-section {
    gap: 36px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 108px 5vw 58px;
  }

  .contact-visual {
    position: relative;
    height: 46vh;
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 5vw;
  }

  .mobile-nav {
    right: 5vw;
  }

  .hero,
  .hero-content {
    min-height: 74vh;
  }

  .hero-content {
    width: 90vw;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 36px;
  }

  #hero-title {
    font-size: 31px;
  }

  .brand span {
    display: none;
  }

  .hero-logo {
    width: 138px;
    margin-bottom: 20px;
  }

  .brand-intro-stage {
    width: min(430px, 94vw);
  }

  .brand-intro-mark-wrap {
    width: min(290px, 68vw);
  }

  .brand-intro-wordmark {
    width: 100%;
  }

  .brand-intro-name {
    max-width: 100%;
    font-size: clamp(20px, 6.5vw, 27px);
    white-space: nowrap;
  }

  .brand-intro-en {
    max-width: 100%;
    font-size: clamp(11px, 3.2vw, 14px);
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.75;
  }

  .project-detail-lead {
    font-size: 16px;
  }

  .project-detail-media {
    height: 46vh;
    min-height: 280px;
    max-height: 420px;
  }

  .intro-section,
  .work-section,
  .services-section,
  .studio-section,
  .contact-section {
    width: 90vw;
    padding: 58px 0;
  }

  .intro-section p {
    max-width: 100%;
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1.16;
    white-space: nowrap;
  }

  .project-narrative p {
    font-size: 22px;
    line-height: 1.62;
  }

  .project-detail-body,
  .project-story-sections,
  .project-related {
    width: 90vw;
    padding: 58px 0;
  }

  .project-gallery-editorial {
    gap: 14px;
    padding-bottom: 58px;
  }

  .project-gallery-carousel {
    padding: 36px 0 52px;
  }

  .project-gallery-slider-header {
    width: 90vw;
    margin-right: auto;
    margin-bottom: 18px;
    margin-left: auto;
  }

  .project-gallery-controls,
  .project-gallery-dots {
    display: none;
  }

  .project-gallery-viewport {
    width: 90vw;
    margin: 0 auto;
    overflow: visible;
  }

  .project-gallery-track {
    display: grid;
    gap: 28px;
    transform: none !important;
    transition: none;
  }

  .project-gallery-slide {
    flex: none;
  }

  .project-gallery-composition,
  .project-gallery-slide-layout,
  .project-gallery-static-grid,
  .project-gallery-static-card.is-wide,
  .project-gallery-static-card.is-board {
    width: 90vw;
  }

  .project-gallery-composition img,
  .project-gallery-slide img {
    height: auto;
    max-height: none;
  }

  .project-space-note {
    gap: 14px;
  }

  .project-space-note p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.8;
  }

  .project-gallery-nav {
    width: 40px;
    height: 40px;
  }

  .project-grid,
  .service-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-controls {
    margin-top: -4px;
  }

  .portfolio-controls button {
    flex: 1 1 90px;
  }

  .spotlight-copy {
    padding: 24px;
  }

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

  .related-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .archive-list em {
    text-align: left;
  }

  .service-item {
    min-height: 230px;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-panel h1 {
    font-size: 34px;
  }

  .contact-request-form {
    margin-top: 28px;
  }

  .contact-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    display: none;
  }
}

