:root {
  --ink: #f6f1e8;
  --paper: #070707;
  --white: #ffffff;
  --muted: #a69d8f;
  --line: rgba(246, 241, 232, 0.18);
  --signal: #c49b5a;
  --paper-light: #10100e;
  --ink-light: #f6f1e8;
  --muted-light: #a69d8f;
  --line-light: rgba(246, 241, 232, 0.14);
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 78% 4%, rgba(196, 155, 90, 0.16), transparent 32vw),
    linear-gradient(180deg, #050505 0%, #0c0b09 52%, #050505 100%);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 22px 32px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.82);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  gap: 4px;
  width: fit-content;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.brand-mark small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-en {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.brand-cn {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-divider {
  display: block;
  width: 2px;
  height: 30px;
  background: currentColor;
}

.site-nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", SimSun, serif;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 7s ease;
}

.hero-media.is-changing {
  opacity: 0;
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 45%, transparent 0 38%, rgba(0, 0, 0, 0.45) 74%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.88));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 40px;
  width: 100%;
  padding: 132px 32px 44px;
}

.hero .eyebrow {
  position: absolute;
  top: 104px;
  left: 32px;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-size: 140px;
  font-weight: 400;
  line-height: 0.82;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.62);
}

.hero-kicker {
  position: absolute;
  top: 110px;
  right: 28px;
  margin: 0;
  font-size: 14px;
}

.hero-copy {
  max-width: 440px;
  margin: 0 0 4px;
  font-size: 15px;
}

.hero-actions {
  display: none;
}

.hero-meta {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 2;
  display: none;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-band,
.services-section,
.work-section,
.press-section,
.contact-section {
  padding: 136px max(32px, calc((100vw - var(--max)) / 2 + 32px));
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(196, 155, 90, 0.08), transparent 38%),
    var(--paper);
  color: var(--ink);
}

.intro-copy h2,
.section-heading h2,
.work-top h2,
.contact-copy h2 {
  max-width: 1050px;
  margin: 0;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.02;
}

.intro-copy p {
  max-width: 720px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.services-section,
.work-section,
.press-section,
.contact-section {
  max-width: none;
  margin-inline: 0;
}

.intro-band .section-label,
.services-section .section-label,
.press-section .section-label {
  color: var(--muted);
}

.services-section {
  padding-top: 108px;
  background: #090908;
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  margin-bottom: 64px;
}

.service-grid {
  border-top: 1px solid var(--line);
}

.service-grid article {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: baseline;
  min-height: auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.service-grid span,
.service-grid p {
  color: var(--muted);
  font-size: 13px;
}

.service-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.service-grid p {
  margin: 0;
}

.work-section {
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(196, 155, 90, 0.08), transparent 260px),
    #050505;
  color: var(--ink);
}

.work-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.work-top .section-label {
  display: block;
  margin-bottom: 20px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 14px;
}

.filter {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.filter.is-active {
  border-color: var(--signal);
  color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 42px 20px;
}

.project-card {
  grid-column: span 6;
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

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

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #202020;
  filter: saturate(0.82) contrast(1.06);
  transition: filter 220ms ease, transform 400ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  filter: saturate(1.02) contrast(1.12);
  transform: scale(1.012);
}

.project-card-body {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 58px 18px 18px;
  border-top: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.project-card h3 {
  grid-column: 1;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.project-card p {
  display: none;
}

.project-meta {
  display: contents;
  color: rgba(246, 241, 232, 0.68);
  font-size: 12px;
}

.project-meta:first-child span:first-child {
  grid-column: 1;
  grid-row: 2;
}

.project-meta:first-child span:last-child {
  grid-column: 2;
  grid-row: 1;
}

.project-meta:last-child span:first-child {
  grid-column: 2;
  grid-row: 2;
}

.project-meta:last-child span:last-child {
  display: none;
}

.press-section {
  border-top: 1px solid var(--line);
  background: #0f0e0c;
  color: var(--ink);
}

.press-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
}

.press-feature {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.press-feature h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.press-feature p {
  color: var(--muted);
  font-size: 13px;
}

.press-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.press-list li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.press-list span {
  color: var(--muted);
  font-size: 12px;
}

.press-list strong {
  font-size: 15px;
  font-weight: 400;
}

.contact-section {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 40%, rgba(196, 155, 90, 0.15), transparent 34vw),
    #050505;
  color: var(--ink);
}

.contact-copy .section-label {
  display: block;
  margin-bottom: 20px;
}

.contact-actions {
  display: grid;
  gap: 0;
}

.button {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--signal);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.button::after {
  content: "\2197";
}

.project-dialog {
  width: min(1480px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 0;
  background: #080808;
  color: var(--ink);
  overflow: auto;
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.project-dialog[open] {
  display: block;
}

.dialog-cover {
  width: 100%;
  height: min(76svh, 920px);
  object-fit: cover;
}

.dialog-body {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.65fr;
  gap: 48px;
  align-items: start;
  padding: 48px 30px 72px;
  border-bottom: 1px solid var(--line);
}

.dialog-body h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
}

.dialog-description {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.dialog-description:empty {
  display: none;
}

.dialog-body dl {
  margin: 28px 0 0;
}

.dialog-body dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.dialog-body dt {
  color: var(--muted);
}

.dialog-body dd {
  margin: 0;
}

.dialog-gallery {
  padding: 0;
}

.dialog-gallery img {
  width: 100%;
  height: auto;
  margin: 0;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.dialog-close::before,
.dialog-close::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 1px;
  background: var(--white);
  content: "";
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 88px;
  }

  .intro-copy h2,
  .section-heading h2,
  .work-top h2,
  .contact-copy h2 {
    font-size: 52px;
  }

  .hero-content,
  .intro-band,
  .section-heading,
  .work-top,
  .press-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 520px;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .dialog-cover {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .dialog-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 14px 18px;
  }

  .site-header.menu-open {
    background: rgba(12, 12, 12, 0.98);
  }

  .brand-mark {
    position: relative;
    z-index: 35;
  }

  .brand-mark small {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 35;
    display: grid;
    gap: 5px;
    width: 36px;
    height: 36px;
    place-content: center;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .nav-toggle:focus {
    outline: none;
  }

  .nav-toggle:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 4px;
  }

  .nav-toggle span {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 32;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 6px 18px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(12, 12, 12, 0.98);
    color: var(--white);
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 64px));
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .hero {
    min-height: 92svh;
  }

  .hero .eyebrow {
    top: 86px;
    left: 18px;
    max-width: 260px;
  }

  .hero-kicker {
    top: auto;
    right: 18px;
    bottom: 18px;
  }

  .hero-content {
    align-content: end;
    padding: 120px 18px 76px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .intro-band,
  .services-section,
  .work-section,
  .press-section,
  .contact-section {
    padding: 72px 18px;
  }

  .intro-copy h2,
  .section-heading h2,
  .work-top h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .intro-copy p {
    margin-left: 0;
    font-size: 15px;
  }

  .service-grid article {
    grid-template-columns: 44px 1fr;
    gap: 8px;
  }

  .service-grid p {
    grid-column: 2;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-card {
    grid-column: 1;
  }

  .press-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    padding: 24px 18px;
  }

  .dialog-body {
    gap: 20px;
    padding: 36px 18px 52px;
  }

  .dialog-gallery {
    padding: 0;
  }
}

/* Editorial gallery direction inspired by quiet hospitality studio sites. */
:root {
  --jws-paper: #fbfbf8;
  --jws-ink: #151515;
  --jws-muted: #6c6a66;
  --jws-line: #dedbd3;
}

body {
  background: var(--jws-paper);
  color: var(--jws-ink);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", SimSun, serif;
}

.site-header {
  grid-template-columns: 1fr auto 1fr;
  min-height: 72px;
  padding: 24px 56px;
  background: transparent;
  color: var(--white);
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-bottom: 1px solid var(--jws-line);
  background: rgba(251, 251, 248, 0.94);
  color: var(--jws-ink);
  backdrop-filter: blur(14px);
}

.brand-mark {
  grid-column: 2;
  justify-self: center;
  display: grid;
  gap: 5px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark small {
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr repeat(2, auto);
  gap: 42px;
  width: 100%;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", SimSun, serif;
  font-size: 13px;
  text-transform: none;
}

.site-nav a:nth-child(3) {
  grid-column: 4;
}

.site-nav a:nth-child(4) {
  grid-column: 5;
}

.hero {
  min-height: 74svh;
  color: var(--white);
}

.hero-media {
  filter: saturate(0.82) brightness(0.92);
  transform: none;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 42%, rgba(0, 0, 0, 0.18));
}

.hero-content {
  display: block;
  padding: 0;
}

.hero .eyebrow {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: auto;
  top: auto;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  text-align: right;
}

.hero h1 {
  display: none;
}

.intro-band,
.services-section,
.work-section,
.press-section,
.contact-section {
  padding: 104px max(52px, calc((100vw - 1320px) / 2 + 52px));
}

.intro-band,
.services-section,
.press-section,
.contact-section {
  border-color: var(--jws-line);
  background: var(--jws-paper);
  color: var(--jws-ink);
}

.intro-band {
  display: block;
  min-height: 36svh;
  text-align: center;
}

.intro-band .section-label,
.services-section .section-label,
.press-section .section-label,
.work-section .section-label,
.contact-section .section-label {
  color: var(--jws-muted);
}

.intro-band .section-label {
  display: block;
  margin-bottom: 18px;
}

.intro-copy h2,
.section-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.16;
}

.section-heading,
.press-layout,
.contact-section {
  grid-template-columns: 1fr;
  text-align: center;
}

.section-heading {
  gap: 18px;
  margin-bottom: 52px;
}

.work-top h2,
.contact-copy h2 {
  max-width: 920px;
  margin-inline: auto;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.16;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 34px;
  border-top: 1px solid var(--jws-line);
}

.service-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid var(--jws-line);
  text-align: center;
}

.service-grid span,
.service-grid p {
  color: var(--jws-muted);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.service-grid h3 {
  font-size: 25px;
}

.work-section {
  background: var(--jws-paper);
  color: var(--jws-ink);
}

.work-top {
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 76px;
  text-align: center;
}

.filter-tabs {
  justify-content: center;
}

.filter {
  color: var(--jws-muted);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.filter.is-active {
  border-color: var(--jws-ink);
  color: var(--jws-ink);
}

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

.project-card {
  grid-column: auto;
  display: grid;
  gap: 24px;
  color: var(--jws-ink);
}

.project-card-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.project-card-media img,
.project-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #e4e1da;
  filter: saturate(0.78) contrast(0.94);
  transition: filter 220ms ease, opacity 220ms ease;
}

.project-card-media img:nth-child(2) {
  object-position: 18% 28%;
}

.project-card:hover img,
.project-card:focus-visible img {
  filter: saturate(1) contrast(1);
  transform: none;
}

.project-card-body {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
}

.project-card h3 {
  grid-column: auto;
  font-size: 18px;
  font-weight: 400;
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--jws-muted);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
}

.project-meta:last-child span:last-child {
  display: inline;
}

.press-list,
.press-list li,
.press-feature,
.button,
.site-footer {
  border-color: var(--jws-line);
}

.press-list {
  max-width: 920px;
  margin-inline: auto;
}

.press-list li {
  grid-template-columns: 220px 1fr;
  text-align: left;
}

.press-list span,
.press-feature p,
.site-footer {
  color: var(--jws-muted);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.contact-section {
  gap: 42px;
  align-items: center;
}

.contact-actions {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

.contact-actions .button {
  justify-content: center;
  text-align: center;
}

.contact-actions .button::after {
  display: none;
}

.button {
  color: var(--jws-ink);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.project-dialog {
  background: var(--jws-paper);
  color: var(--jws-ink);
}

.dialog-body,
.dialog-body dl div {
  border-color: var(--jws-line);
}

.dialog-description,
.dialog-body dt {
  color: var(--jws-muted);
}

.site-footer {
  background: var(--jws-paper);
}

@media (max-width: 1000px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }

  .brand-mark {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .brand-line {
    gap: 7px;
  }

  .brand-en {
    font-size: 15px;
  }

  .brand-cn {
    font-size: 14px;
  }

  .brand-divider {
    width: 1px;
    height: 19px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 4px 26px 10px;
    border-top: 1px solid var(--jws-line);
    border-bottom: 1px solid var(--jws-line);
    background: rgba(251, 251, 248, 0.98);
    color: var(--jws-ink);
    font-size: 20px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }

  .site-nav a:nth-child(n) {
    grid-column: auto;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--jws-line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 70svh;
  }

  .hero .eyebrow {
    right: 18px;
    bottom: 24px;
    left: 18px;
    max-width: none;
    text-align: left;
  }

  .intro-band,
  .services-section,
  .work-section,
  .press-section,
  .contact-section {
    padding: 72px 18px;
  }

  .section-heading h2,
  .work-top h2,
  .contact-copy h2 {
    font-size: 30px;
  }

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

  .service-grid article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .service-grid span,
  .service-grid h3,
  .service-grid p {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }

  .project-grid {
    gap: 62px;
  }

  .press-list li {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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