:root {
  --red: #e50012;
  --black: #101010;
  --ink: #202020;
  --gray: #6d6d6d;
  --line: #d8d8d8;
  --soft: #f5f5f3;
  --white: #ffffff;
  --page-pad: 40px;
  --section-y: 128px;
  --max: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.hero[id] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

[data-lang="zh"] .lang-en,
[data-lang="en"] .lang-zh {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 12px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 var(--page-pad);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  transition: height 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 166px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: grid;
  min-width: 58px;
  line-height: 1.1;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav span {
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav small {
  margin-top: 5px;
  color: var(--gray);
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--black);
}

.language-switch button {
  min-width: 40px;
  height: 32px;
  padding: 0 8px;
  border: 0;
  border-right: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--black);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-label {
  font-size: 11px;
  font-weight: 700;
}

.menu-mark {
  position: relative;
  width: 24px;
  height: 14px;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transition: transform 200ms ease, border-color 200ms ease;
}

.menu-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  border-top: 2px solid var(--black);
  transition: opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-mark {
  transform: rotate(45deg);
  border-bottom-color: transparent;
}

.menu-button[aria-expanded="true"] .menu-mark::after {
  top: -2px;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 90;
  display: none;
  padding: 32px 24px;
  color: var(--white);
  background: var(--red);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu a span {
  width: 28px;
  font-size: 11px;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: calc(100svh - 148px);
  max-height: 900px;
  overflow: hidden;
  background: #f7f7f7;
  isolation: isolate;
}

.hero::after {
  display: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-system-labels {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.system-label {
  position: absolute;
  right: 6.4%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
}

.system-label i {
  display: none;
}

.system-label-company {
  top: 17%;
}

.system-label-brand {
  top: 48%;
}

.system-label-communication {
  top: 79%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: 8vh var(--page-pad) 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  --eyebrow-edge: calc((100vw - min(100vw, var(--max))) / 2 + var(--page-pad));
  --eyebrow-line: 48px;
}

.eyebrow::before {
  display: none;
}

.hero h1 {
  max-width: none;
  margin: 24px 0 0;
  color: var(--black);
  font-size: 74px;
  line-height: 0.94;
  font-weight: 900;
}

.hero h1 > span {
  display: block;
}

[data-lang="zh"] .hero h1 {
  line-height: 1.08;
  white-space: nowrap;
}

[data-lang="en"] .hero h1 {
  max-width: 940px;
  font-size: 74px;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.hero-statement {
  margin: 28px 0 0;
  color: var(--black);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

[data-lang="en"] .hero-statement {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.3;
}

.hero-copy {
  margin: 22px 0 0;
  color: #464646;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--black);
  background: var(--black);
}

.button-quiet {
  background: rgba(255, 255, 255, 0.72);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--white);
  background: var(--black);
}

.hero-index {
  position: absolute;
  right: var(--page-pad);
  bottom: 24px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.signal-strip {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 var(--page-pad);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
}

.signal-strip i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
}

.signal-strip strong {
  margin-left: auto;
  color: #b7b7b7;
  font-weight: 400;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.section-kicker {
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.section-kicker > span:first-child {
  color: var(--black);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(420px, 0.92fr);
  gap: clamp(72px, 9vw, 150px);
  align-items: start;
  margin-top: 72px;
}

.display-title {
  margin: 0;
  color: var(--black);
  font-size: 64px;
  line-height: 1.12;
  font-weight: 800;
}

[data-lang="en"] .display-title {
  font-size: 52px;
  line-height: 1.04;
}

.display-title em,
.method-quote em {
  color: var(--red);
  font-style: normal;
}

.intro-copy {
  padding-top: 8px;
}

.intro-copy p {
  margin: 0 0 22px;
  color: var(--gray);
  font-size: 15px;
}

.intro-copy .lead {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 50px 0 0;
  padding: 0;
  border-top: 1px solid var(--black);
}

.facts div {
  min-width: 0;
  padding: 20px 12px 0 0;
  border-right: 1px solid var(--line);
}

.facts div:last-child {
  padding-left: 12px;
  border-right: 0;
}

.facts div:nth-child(2) {
  padding-left: 12px;
}

.facts dt {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.facts dd {
  margin: 9px 0 0;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.intro {
  background: var(--white);
}

.services {
  position: relative;
  z-index: 0;
  padding-top: 60px;
  background: transparent;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  background: #e9e9e7;
  transform: translateX(-50%);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  align-items: end;
}

.section-heading .section-kicker {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  justify-items: start;
  border-bottom: 0;
}

.section-heading .section-kicker.section-kicker-inline {
  min-height: 0;
  align-self: start;
  display: flex;
  align-content: initial;
  justify-content: flex-start;
  justify-items: initial;
  gap: 10px;
}

.section-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: 52px;
  line-height: 1.12;
}

[data-lang="en"] .section-heading h2 {
  font-size: 42px;
  line-height: 1.04;
}

.services .section-heading h2 .lang-zh,
.work .section-heading h2 .lang-zh {
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.service-item {
  position: relative;
  min-height: 475px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px;
  border-right: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: color 280ms ease, background-color 280ms ease, transform 280ms ease;
}

.service-item:last-child {
  border-right: 0;
}

.service-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-item:hover {
  color: var(--white);
  background: var(--black);
  transform: translateY(-8px);
}

.service-item:hover::after {
  transform: scaleX(1);
}

.service-item:hover p,
.service-item:hover .service-tags {
  color: #bcbcbc;
}

.service-item:hover .service-meta small {
  color: var(--white);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.service-meta small {
  padding: 3px 6px;
  color: var(--black);
  border: 1px solid currentColor;
  font-size: 9px;
}

.service-item h3 {
  min-height: 138px;
  margin: 56px 0 0;
  font-size: 24px;
  line-height: 1.28;
}

[data-lang="en"] .service-item h3 {
  font-size: 17px;
  line-height: 1.25;
}

.service-item p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  transition: color 280ms ease;
}

.service-tags {
  margin-top: auto;
  padding-top: 30px;
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 700;
  transition: color 280ms ease;
}

.method {
  color: var(--white);
  background: var(--black);
}

.method-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.section-kicker-light {
  color: var(--red);
  border-color: #454545;
}

.section-kicker-light > span:first-child {
  color: var(--white);
}

.method-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.62fr) minmax(260px, 0.72fr);
  gap: 4vw;
  align-items: center;
  margin-top: 76px;
}

.method-quote {
  margin: 0;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 800;
}

[data-lang="en"] .method-quote {
  font-size: 50px;
  line-height: 1.04;
}

.method-copy > p:last-child {
  max-width: 480px;
  margin: 0 0 8px;
  color: #b7b7b7;
  font-size: 16px;
}

.method-book {
  width: min(100%, 260px);
  margin: 0 auto;
}

.method-book img {
  width: 100%;
  height: auto;
}

.alignment {
  --alignment-node-center: 52px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
}

.alignment-line {
  position: absolute;
  top: var(--alignment-node-center);
  right: 16%;
  left: 16%;
  height: 1px;
  background: #6a6a6a;
  transform: translateY(-50%);
}

.alignment-point {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 20px 64px auto auto;
  justify-items: center;
  text-align: center;
}

.alignment-node {
  width: 20px;
  height: 20px;
  align-self: center;
  display: block;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--black);
}

.alignment-target .alignment-node {
  width: 34px;
  height: 34px;
  border: 9px solid var(--red);
  background: var(--white);
  box-shadow: 0 0 0 7px var(--black), 0 0 0 8px var(--red);
}

.alignment-index {
  color: #777;
  font-size: 10px;
}

.alignment-point strong {
  font-size: 18px;
}

.alignment-point small {
  margin-top: 8px;
  color: #888;
  font-size: 11px;
}

.work {
  padding-bottom: 80px;
}

.services .section-heading,
.work .section-heading {
  position: relative;
  display: block;
}

.services .section-heading .section-kicker,
.work .section-heading .section-kicker {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.services .section-heading h2,
.work .section-heading h2 {
  text-align: center;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 62px;
}

.case-filters button {
  min-height: 40px;
  padding: 0 24px;
  color: var(--gray);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
  font-size: 11px;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.case-filters button:hover,
.case-filters button:focus-visible,
.case-filters button.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 34px calc(var(--page-pad) * -1) 0;
  background: var(--white);
}

.work-item {
  min-width: 0;
  background: var(--soft);
}

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

.work-image {
  aspect-ratio: 372 / 246;
  overflow: hidden;
  background: #e9e9e9;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1), filter 300ms ease;
}

.work-item:hover .work-image img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.work-caption {
  min-height: 104px;
  display: block;
  padding: 18px 22px;
}

.work-caption strong {
  display: inline;
  color: var(--red);
  font-size: 14px;
}

.work-caption span {
  display: inline;
  margin-left: 5px;
  color: var(--gray);
  font-size: 10px;
}

.work-caption span small {
  display: block;
  margin-top: 9px;
  color: #a3a3a3;
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.work-more {
  display: flex;
  justify-content: flex-end;
  padding-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.spark-plan {
  background: var(--soft);
}

.spark-plan-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.spark-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 10vw;
  align-items: center;
  margin-top: 72px;
}

.spark-statement {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 52px;
  color: var(--white);
  background: var(--red);
  overflow: hidden;
}

.spark-statement h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 52px;
  line-height: 1.15;
}

.spark-statement h2 em {
  color: var(--black);
  font-style: normal;
}

[data-lang="en"] .spark-statement h2 {
  font-size: 42px;
  line-height: 1.06;
}

.spark-content .lead {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 600;
}

.spark-home-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 210px);
  height: auto;
  margin: 0;
  filter: grayscale(1) contrast(999%);
  mix-blend-mode: multiply;
}

.spark-steps {
  margin: 52px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.spark-steps li {
  min-height: 66px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.spark-steps span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.spark-steps strong {
  font-size: 14px;
}

.team {
  padding-top: var(--section-y);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 76px calc(var(--page-pad) * -1) 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-member {
  min-width: 0;
  background: var(--white);
}

.team-member a {
  display: block;
}

.team-member figure {
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #e9e9e7;
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  transition: filter 320ms ease, transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.team-member:hover img,
.team-member:focus-within img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.team-member-copy {
  min-height: 164px;
  padding: 22px;
  border-top: 4px solid transparent;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.team-member:hover .team-member-copy,
.team-member:focus-within .team-member-copy {
  border-color: var(--red);
  background: var(--soft);
}

.team-index {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.team-member h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.team-member h3 small {
  display: block;
  margin-top: 7px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 600;
}

.team-member p {
  margin: 0;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
}

.team-more {
  display: flex;
  justify-content: flex-end;
  padding-top: 34px;
}

.contact {
  color: var(--white);
  background: var(--red);
}

.contact-inner {
  width: min(100%, var(--max));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr) 176px;
  align-items: end;
  gap: 5vw;
  padding: 100px var(--page-pad);
}

.contact-copy p {
  margin: 0 0 44px;
  font-size: 11px;
  font-weight: 700;
}

.contact-copy h2 {
  margin: 0;
  font-size: 90px;
  line-height: 0.98;
}

[data-lang="en"] .contact-copy h2 {
  font-size: 72px;
}

.contact-details {
  display: grid;
  padding-bottom: 8px;
}

.contact-details a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 20px;
  font-weight: 700;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--black);
}

.contact-details address {
  margin-top: 26px;
  font-size: 12px;
  font-style: normal;
}

.contact-qr {
  width: 176px;
  margin: 0;
  padding: 20px;
  color: var(--black);
  background: var(--white);
}

.contact-qr-code {
  width: 136px;
  height: 136px;
  overflow: hidden;
}

.contact-qr-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-qr figcaption {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  color: #8a8a8a;
  background: var(--black);
  font-size: 10px;
}

.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 6vw;
  padding: 76px var(--page-pad) 66px;
}

.footer-main p {
  margin: 0 0 25px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.footer-brand > a {
  display: block;
  width: 160px;
}

.footer-standard-logo {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: 1799 / 725;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 260px;
  margin-top: 24px;
  color: #888;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 400;
}

.footer-nav,
.footer-services,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a,
.footer-services > span,
.footer-contact a,
.footer-contact > span {
  margin-bottom: 11px;
  color: #8a8a8a;
  font-size: 10px;
  line-height: 1.45;
}

.footer-nav a span {
  color: #555;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-contact > span {
  max-width: 220px;
  margin-top: 12px;
}

.footer-bottom {
  width: min(100%, var(--max));
  min-height: 62px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  padding: 0 var(--page-pad);
  border-top: 1px solid #2f2f2f;
  color: #555;
  font-size: 9px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

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

.workbench-page {
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: var(--section-y) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.workbench-status {
  position: relative;
  width: min(100%, 1180px);
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: start;
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.workbench-status::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.workbench-status h1 {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  font-size: clamp(68px, 11vw, 164px);
  line-height: 0.9;
  font-weight: 800;
}

.workbench-target {
  position: absolute;
  right: 8%;
  top: 50%;
  width: 128px;
  height: 128px;
  border: 1px solid var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.workbench-target::before,
.workbench-target::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.workbench-target::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.workbench-target::after {
  width: 200vw;
  height: 1px;
  opacity: 0.36;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 28px;
    --section-y: 104px;
  }

  .desktop-nav {
    gap: 14px;
  }

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

  [data-lang="en"] .hero h1 {
    font-size: 60px;
  }

  .work .section-heading h2 {
    font-size: 46px;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .contact-qr {
    grid-column: 2;
    justify-self: start;
  }

  .display-title,
  .method-quote {
    font-size: 54px;
  }

  .service-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-item {
    grid-column: span 2;
    min-height: 420px;
    border-bottom: 1px solid var(--line);
  }

  .service-item:nth-child(3) {
    border-right: 0;
  }

  .service-item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-item:nth-child(5) {
    grid-column: 4 / span 2;
    border-right: 0;
  }

  .service-item h3 {
    min-height: 118px;
  }
}

@media (max-width: 960px) and (min-width: 821px) {
  .work-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 20px;
    --section-y: 82px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  section[id],
  .hero[id] {
    scroll-margin-top: 72px;
  }

  .brand img {
    width: 130px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 14px;
  }

  .language-switch button {
    min-width: 36px;
    height: 30px;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .workbench-page {
    min-height: calc(100vh - 72px);
  }

  .workbench-status {
    min-height: 440px;
  }

  .workbench-status h1 {
    font-size: 64px;
  }

  .workbench-target {
    right: -42px;
    width: 112px;
    height: 112px;
  }

  .hero {
    min-height: calc(100svh - 124px);
    max-height: none;
  }

  .hero-canvas {
    opacity: 0.72;
  }

  .hero-system-labels {
    display: none;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 72px;
    justify-content: flex-start;
  }

  .hero h1 {
    margin-top: 20px;
    max-width: none;
    font-size: 44px;
    line-height: 1;
  }

  [data-lang="en"] .hero h1 {
    max-width: 620px;
    font-size: 52px;
  }

  .hero-statement {
    margin-top: 30px;
    font-size: 23px;
  }

  [data-lang="en"] .hero-statement {
    font-size: 21px;
  }

  .hero-copy {
    max-width: 320px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
  }

  .hero-index {
    display: none;
  }

  .signal-strip {
    gap: 14px;
    min-height: 52px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .signal-strip strong {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .method-copy,
  .spark-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 38px;
    margin-top: 48px;
  }

  .display-title,
  .method-quote {
    font-size: 42px;
  }

  [data-lang="en"] .display-title,
  [data-lang="en"] .method-quote {
    font-size: 36px;
  }

  .section-heading {
    gap: 36px;
  }

  .section-heading .section-kicker {
    min-height: 64px;
  }

  .section-heading .section-kicker.section-kicker-inline {
    min-height: 0;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  [data-lang="en"] .section-heading h2 {
    font-size: 33px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .service-item,
  .service-item:nth-child(3),
  .service-item:nth-child(4),
  .service-item:nth-child(5) {
    grid-column: auto;
    min-height: 0;
    padding: 24px 18px 22px;
    border-right: 0;
  }

  .service-item:hover {
    transform: none;
  }

  .service-item h3 {
    min-height: 0;
    margin: 34px 0 18px;
    font-size: 25px;
  }

  [data-lang="en"] .service-item h3 {
    font-size: 18px;
  }

  .service-tags {
    margin-top: 30px;
  }

  .method-copy {
    gap: 44px;
    margin-top: 54px;
  }

  .method-book {
    width: min(100%, 220px);
  }

  .services .section-heading,
  .work .section-heading {
    display: grid;
  }

  .services .section-heading .section-kicker,
  .work .section-heading .section-kicker {
    position: static;
    transform: none;
  }

  .services .section-heading h2,
  .work .section-heading h2 {
    text-align: center;
  }

  .alignment {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 72px;
  }

  .alignment-line {
    top: var(--alignment-node-center);
    bottom: var(--alignment-node-center);
    left: 50%;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .alignment-point {
    padding: 0 0 18px;
    background: var(--black);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }

  .case-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 46px calc(var(--page-pad) * -1) 0;
    padding: 0 var(--page-pad) 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-filters::-webkit-scrollbar {
    display: none;
  }

  .case-filters button {
    flex: 0 0 auto;
  }

  .work-caption {
    min-height: 106px;
  }

  .work-caption span {
    margin-left: 4px;
  }

  .spark-grid {
    gap: 48px;
    margin-top: 52px;
  }

  .spark-statement {
    min-height: 380px;
    padding: 38px;
  }

  .spark-home-logo {
    width: min(100%, 190px);
  }

  .spark-statement h2,
  [data-lang="en"] .spark-statement h2 {
    font-size: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
  }

  .contact-inner {
    min-height: 620px;
    gap: 80px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .contact-qr {
    grid-column: auto;
    justify-self: start;
  }

  .contact-copy h2,
  [data-lang="en"] .contact-copy h2 {
    font-size: 60px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 10vw;
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand img {
    width: 112px;
  }

  .menu-label {
    display: none;
  }

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

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

  [data-lang="en"] .hero h1 {
    font-size: 38px;
  }

  .services .section-heading h2,
  .work .section-heading h2 {
    font-size: 24px;
  }

  .hero-statement {
    max-width: 330px;
    font-size: 21px;
  }

  .eyebrow {
    --eyebrow-line: 28px;
    gap: 12px;
    font-size: 9px;
  }

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

  .facts div,
  .facts div:nth-child(2),
  .facts div:last-child {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts dt {
    white-space: nowrap;
  }

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

  .facts dd {
    margin: 0;
  }

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

  .work-caption {
    min-height: 84px;
  }

  .spark-statement {
    min-height: 330px;
    padding: 28px;
  }

  .spark-statement h2,
  [data-lang="en"] .spark-statement h2 {
    font-size: 34px;
  }

  .spark-content .lead {
    font-size: 17px;
  }

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

  .team-member-copy {
    min-height: 140px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand > a,
  .footer-standard-logo {
    width: 142px;
  }

  .footer-brand > a {
    height: auto;
    overflow: hidden;
  }

  .footer-bottom {
    font-size: 8px;
  }

  .contact-copy h2,
  [data-lang="en"] .contact-copy h2 {
    font-size: 50px;
  }

  .contact-details a {
    font-size: 17px;
  }

  .signal-strip {
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 9px;
  }

  .signal-strip > i:nth-of-type(3) {
    display: none;
  }
}

@media (max-width: 360px) {
  .services .section-heading h2,
  .work .section-heading h2 {
    font-size: 21px;
  }
}

.subpage {
  min-height: 70vh;
  padding-top: 0;
  background: var(--paper);
}

.nov-site > .main,
.nov-site > .cont {
  min-height: 70vh;
  padding-top: 118px;
}

.nov-site > .cont {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-bottom: 96px;
  padding-left: var(--page-pad);
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: #111;
  border-bottom: 8px solid var(--red);
  isolation: isolate;
}

.subpage-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  margin: 0;
  overflow: hidden;
  opacity: 0.56;
}

.subpage-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.subpage-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-copy {
  width: min(100%, var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: 84px var(--page-pad) 64px;
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(420px, 1.35fr);
  align-items: end;
  gap: 48px;
}

.subpage-hero--light {
  color: var(--black);
  background: #f7f7f7;
}

.subpage-hero--light .subpage-hero-media {
  opacity: 0.22;
}

.subpage-hero--light .subpage-hero-media::after {
  background: rgba(247, 247, 247, 0.24);
}

.subpage-hero-meta {
  align-self: end;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.6;
  text-transform: uppercase;
}

.subpage-hero-meta span {
  display: block;
  margin-top: 8px;
  color: currentColor;
  opacity: 0.54;
}

.subpage-hero h1 {
  align-self: end;
  max-width: 920px;
  margin: 0;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.subpage-hero h1 small {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.subpage-hero h1 > span:not(.lang-zh):not(.lang-en) {
  display: block;
}

.portrait-banner,
.case-hero-media {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portrait-banner img,
.case-hero-media img {
  min-width: 0;
  object-position: center 28%;
  filter: grayscale(1);
}

.case-hero-media img {
  object-position: center;
}

.plan-hero-logo {
  display: block;
}

.plan-hero-logo > img {
  width: 88%;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
}

.plan-hero-image {
  opacity: 0.78;
}

.plan-hero-image > img {
  object-position: center 50%;
}

.contact-hero-art {
  opacity: 0.92 !important;
}

.contact-hero-art::after {
  background: rgba(247, 247, 247, 0.16);
}

.contact-hero-art > img {
  width: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.subpage-body {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 72px var(--page-pad) 112px;
}

.subpage-body.narrow {
  max-width: 1180px;
}

.cms-content {
  min-width: 0;
  font-size: 16px;
  line-height: 1.85;
}

.cms-content::after {
  display: table;
  clear: both;
  content: "";
}

.cms-content img,
.cms-content video,
.cms-content iframe {
  max-width: 100%;
  height: auto;
}

.cms-content .content,
.cms-content .about,
.cms-content .plan,
.cms-content .teamlist,
.cms-content .fw_list {
  width: 100%;
  max-width: none;
}

.editorial-content {
  max-width: 1440px;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.content-section:first-child {
  border-top: 0;
}

.content-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.content-heading > p,
.plan-opening > p,
.team-profile-copy > p:first-child {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.content-heading h2,
.plan-opening h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.04;
}

.about-book {
  width: min(100%, 300px);
  aspect-ratio: 3 / 4;
  margin: 42px 0 0;
  overflow: hidden;
}

.about-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.62);
  transform-origin: 50% 54%;
}

.content-prose {
  max-width: 880px;
}

.content-prose p {
  margin: 0 0 24px;
  color: #3b3b3b;
  font-size: 17px;
  line-height: 1.95;
}

.content-prose .lead {
  color: var(--black);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.55;
  font-weight: 700;
}

.content-wide-image {
  margin: 16px 0 96px;
  background: var(--black);
}

.content-wide-image img {
  width: 100%;
  height: auto;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
}

.advantage-grid article {
  min-height: 380px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.advantage-grid article:last-child {
  border-right: 0;
}

.advantage-grid article > span,
.service-detail-index,
.service-detail-title > p {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.advantage-grid h3 {
  min-height: 96px;
  margin: 42px 0 24px;
  font-size: 24px;
  line-height: 1.2;
}

.advantage-grid p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.85;
}

.culture-list {
  margin: 0;
  border-top: 1px solid var(--black);
}

.culture-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.culture-list dt {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.culture-list dd {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--black);
  list-style: none;
}

.client-list li {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.client-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.client-list li:nth-child(even) {
  padding-left: 18px;
}

.client-list li > span {
  color: var(--gray);
  font-size: 11px;
  font-weight: 400;
  text-align: right;
}

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

.numbered-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-list li > span {
  color: var(--red);
  font-size: 11px;
}

.numbered-list strong {
  font-size: 21px;
}

.service-detail-list {
  max-width: 1540px;
  padding-top: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 100px minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.service-detail:first-child {
  border-top: 0;
}

.service-detail--core {
  color: var(--black);
  background: transparent;
  box-shadow: none;
}

.service-detail-index {
  display: flex;
  flex-direction: column;
}

.service-detail-index span {
  font-size: 36px;
  line-height: 1;
}

.service-detail-index small {
  margin-top: 10px;
  color: currentColor;
}

.service-detail-title h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}

.service-detail-title > p {
  margin: 18px 0 0;
}

.service-detail-copy > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.service-detail-copy ul {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.service-detail-copy li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(120, 120, 120, 0.38);
  font-size: 13px;
  font-weight: 700;
}

.plan-opening {
  padding: 48px 0 112px;
}

.plan-opening h2 {
  max-width: 980px;
  font-size: clamp(64px, 8vw, 126px);
}

.plan-story-image {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.plan-extra {
  grid-column: 2;
  margin-top: 32px;
  padding: 34px;
  color: var(--white);
  background: var(--black);
}

.plan-extra h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 22px;
}

.plan-extra p {
  margin: 0;
  line-height: 1.9;
}

.plan-criteria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
}

.plan-criteria article {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.plan-criteria article:last-child {
  border-right: 0;
}

.plan-criteria h3 {
  min-height: 62px;
  margin: 0 0 28px;
  color: var(--red);
  font-size: 24px;
}

.plan-criteria ul,
.plan-criteria ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-criteria li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #4a4a4a;
  font-size: 13px;
}

.plan-criteria ol li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.plan-criteria ol li > span:first-child {
  color: var(--red);
  font-weight: 800;
}

.application-button {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 0 28px;
  color: var(--white);
  background: var(--red);
  font-size: 18px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.application-button:hover,
.application-button:focus-visible {
  background: var(--black);
  transform: translateY(-2px);
}

.timeline-list {
  border-top: 1px solid var(--black);
}

.timeline-list article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.8fr) 1.2fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-list article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.timeline-list h3,
.timeline-list p {
  margin: 0;
}

.timeline-list h3 {
  font-size: 20px;
}

.timeline-list p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.plan-application {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 72px;
  padding: 88px 0;
  border-top: 1px solid var(--black);
}

.plan-application > div:first-child > p:first-child {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.plan-application h2 {
  margin: 0 0 30px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
}

.plan-application > div:first-child > p {
  max-width: 720px;
  line-height: 1.9;
}

.plan-qr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: end;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.plan-qr-grid figure {
  margin: 0;
}

.plan-qr-grid img {
  width: 100%;
  height: auto;
}

.team-profile-list {
  max-width: 1440px;
  padding-top: 0;
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.team-profile:first-child {
  border-top: 0;
}

.team-profile figure {
  align-self: start;
  width: 100%;
  margin: 0;
  background: #ececea;
}

.team-profile figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: grayscale(1);
}

.team-profile-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
}

.team-profile-copy h2 small {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-size: 16px;
  text-transform: uppercase;
}

.team-profile-copy h3 {
  margin: 34px 0;
  font-size: 18px;
  line-height: 1.6;
}

.team-profile-copy > p:not(:first-child) {
  color: #4a4a4a;
  line-height: 1.9;
}

.team-profile-copy ul {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--black);
  list-style: none;
}

.team-profile-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.contact-note {
  max-width: none;
  padding: 58px 0 0;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.contact-note .lang-en {
  white-space: normal;
}

.case-detail-body {
  max-width: 1440px;
}

.case-detail-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: 32px 7vw;
  padding: 32px 0 88px;
}

.case-detail-intro > p:first-child {
  margin: 14px 0 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.case-detail-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.04;
}

.case-detail-intro > p:not(:first-child),
.case-detail-intro > div {
  grid-column: 2;
  margin: 0;
  color: #555;
  line-height: 1.9;
}

.case-original-note {
  padding: 24px;
  border-left: 3px solid var(--red);
  background: var(--soft);
}

.case-detail-images figure {
  margin: 0 0 24px;
}

.case-detail-images img {
  width: 100%;
  height: auto;
}

.case-detail-contact {
  margin-top: 88px;
  padding: 72px 0;
  border-top: 1px solid var(--black);
}

.case-detail-contact > p:first-child {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.case-detail-contact h2 {
  margin: 18px 0 28px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
}

.case-detail-contact a {
  display: inline-block;
  margin-top: 28px;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
}

.case-archive .subpage-body {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.case-archive-heading {
  padding: 0 var(--page-pad);
}

.case-route-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 0 var(--page-pad) 28px;
  scrollbar-width: none;
}

.case-route-filters::-webkit-scrollbar {
  display: none;
}

.case-route-filters a {
  flex: 0 0 auto;
  min-width: 126px;
  padding: 13px 16px;
  border: 1px solid #d6d6d2;
  color: #6a6a66;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.case-route-filters a:hover,
.case-route-filters a:focus-visible,
.case-route-filters a.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.case-archive .work-grid {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.contact-panel > div {
  min-height: 300px;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.contact-panel p {
  margin: 0 0 26px;
  color: #777;
  font-size: 11px;
  font-weight: 800;
}

.contact-direct-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 208px;
  gap: 28px;
  align-items: start;
}

.contact-page-qr {
  width: 208px;
  margin: 0;
  background: #fff;
  text-align: center;
}

.contact-page-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-page-qr figcaption {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.contact-panel a,
.contact-panel address {
  display: block;
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(20px, 2.4vw, 38px);
  font-style: normal;
  font-weight: 800;
}

@media (min-width: 1600px) {
  .subpage-hero h1 {
    font-size: 108px;
  }
}

@media (max-width: 1100px) {
  .subpage-hero h1 {
    font-size: 68px;
  }
}

@media (max-width: 820px) {
  .subpage {
    padding-top: 0;
  }

  .subpage-hero {
    min-height: 410px;
  }

  .subpage-hero-copy {
    min-height: 410px;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 36px;
    padding: 52px 20px 38px;
  }

  .subpage-hero-meta {
    align-self: start;
  }

  .subpage-hero h1 {
    align-self: end;
    font-size: 44px;
  }

  .subpage-hero-media {
    opacity: 0.42;
  }

  .portrait-banner,
  .case-hero-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .plan-hero-logo > img {
    width: 150%;
    max-width: none;
    transform: translateX(22%);
  }

  .contact-hero-art > img {
    object-position: 58% center;
  }

  .subpage-body {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .case-route-filters {
    justify-content: flex-start;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 64px 0;
  }

  .content-heading {
    position: static;
  }

  .about-book {
    width: min(100%, 260px);
    margin-right: auto;
    margin-left: auto;
  }

  .content-prose p {
    font-size: 15px;
  }

  .content-wide-image {
    margin-bottom: 64px;
  }

  .advantage-grid,
  .plan-criteria {
    grid-template-columns: 1fr;
  }

  .advantage-grid article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .advantage-grid h3 {
    min-height: 0;
    margin-top: 24px;
  }

  .culture-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .culture-list dd {
    font-size: 18px;
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .client-list li,
  .client-list li:nth-child(odd),
  .client-list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 56px 0;
  }

  .service-detail--core {
    box-shadow: none;
  }

  .service-detail-index {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .service-detail-index span {
    font-size: 28px;
  }

  .plan-opening {
    padding-bottom: 72px;
  }

  .plan-opening h2 {
    font-size: 54px;
  }

  .plan-extra {
    grid-column: auto;
  }

  .plan-criteria article {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-criteria h3 {
    min-height: 0;
    margin-bottom: 18px;
  }

  .timeline-list article {
    grid-template-columns: 112px 1fr;
    gap: 16px;
  }

  .timeline-list article p {
    grid-column: 2;
  }

  .plan-application,
  .team-profile {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .plan-qr-grid {
    max-width: 520px;
    justify-self: start;
  }

  .team-profile {
    padding: 64px 0;
  }

  .team-profile figure {
    width: min(100%, 280px);
  }

  .case-detail-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 64px;
  }

  .case-detail-intro > p:not(:first-child),
  .case-detail-intro > div {
    grid-column: 1;
  }

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

  .contact-panel > div {
    min-height: 0;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .contact-page-qr {
    margin-top: 12px;
  }

  .contact-page-qr figcaption {
    margin-top: 2px;
  }

  .contact-note {
    font-size: 17px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
