:root {
  --preview-line: rgba(221, 232, 240, 0.15);
  --preview-line-soft: rgba(221, 232, 240, 0.08);
  --preview-muted: rgba(224, 235, 239, 0.58);
  --preview-faint: rgba(224, 235, 239, 0.38);
  --preview-current: #a9e8ee;
  --preview-gap: clamp(12px, 1.2vw, 18px);
}

html[data-motion="off"],
html[data-motion-mode="off"],
html[data-motion-mode="reduced"] {
  scroll-behavior: auto;
}

.mobile-identity {
  display: none;
}

.hero-working-model {
  color: var(--faint) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-chapter {
  max-width: var(--max);
  padding-top: clamp(74px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.editorial-project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--preview-gap);
  align-items: start;
}

.project-info {
  position: sticky;
  top: clamp(100px, 10vh, 136px);
  grid-column: 1 / 5;
  display: flex;
  min-width: 0;
  max-height: calc(100vh - 118px);
  flex-direction: column;
  padding-right: clamp(18px, 2.4vw, 42px);
}

.project-info__fixed {
  flex: 0 0 auto;
}

.project-info__index {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 clamp(30px, 5vh, 56px);
  color: var(--preview-faint);
  font-size: clamp(9px, 0.72vw, 11px);
  line-height: 1.3;
  text-transform: uppercase;
}

.project-info__index span:last-child {
  text-align: right;
}

.project-info h2 {
  max-width: 8em;
  margin: 0;
  font-size: clamp(46px, 3.6vw, 60px);
  font-weight: 520;
  line-height: 0.99;
}

.project-info__fixed > p:last-child {
  max-width: 29em;
  margin: clamp(22px, 3.4vh, 36px) 0 0;
  color: var(--preview-muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.75;
}

.project-info__dynamic {
  position: relative;
  flex: 0 0 auto;
  min-height: 176px;
  margin-top: clamp(30px, 5vh, 54px);
  padding-top: 18px;
  overflow: hidden;
  border-top: 1px solid var(--preview-line);
  transition: opacity 130ms ease, transform 130ms ease;
}

.project-info__dynamic[data-transition="out"] {
  opacity: 0;
  transform: translateY(-8px);
}

.project-info__dynamic[data-transition="in"] {
  animation: project-info-in 180ms ease-out both;
}

@keyframes project-info-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.project-info__current {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--preview-faint);
  font-size: clamp(9px, 0.68vw, 10px);
  text-transform: uppercase;
}

.project-info__current strong {
  color: var(--preview-current);
  font-size: clamp(10px, 0.76vw, 12px);
  font-weight: 520;
}

.project-info__category-en {
  margin: 19px 0 5px;
  color: var(--preview-current);
  font-size: clamp(10px, 0.82vw, 13px);
  text-transform: uppercase;
}

.project-info__category-zh {
  margin: 0;
  font-size: clamp(20px, 1.72vw, 27px);
  font-weight: 520;
}

.project-info__category-en,
.project-info__category-zh {
  transition: opacity 120ms ease, transform 120ms ease;
}

.project-info__category-en[data-transition="out"],
.project-info__category-zh[data-transition="out"] {
  opacity: 0;
  transform: translateY(-8px);
}

.project-info__category-en[data-transition="in"],
.project-info__category-zh[data-transition="in"] {
  animation: project-info-in 180ms ease-out both;
}

.project-info__role-label {
  margin: 21px 0 10px;
  color: var(--preview-faint);
  font-size: clamp(9px, 0.68vw, 10px);
}

.project-role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  color: rgba(237, 245, 247, 0.78);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.45;
}

.project-role-list span {
  min-width: 0;
  transition: opacity 160ms ease, transform 180ms ease;
}

.project-role-list span.is-new {
  animation: role-item-in 220ms ease-out both;
  animation-delay: calc(var(--role-index, 0) * 24ms);
}

@keyframes role-item-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.project-media {
  grid-column: 5 / 13;
  min-width: 0;
}

.project-spread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: min-content;
  column-gap: var(--preview-gap);
  align-items: start;
  min-width: 0;
  margin-bottom: clamp(76px, 13vh, 138px);
  padding-top: 8px;
  scroll-margin-top: 128px;
}

.project-spread:last-child {
  margin-bottom: 0;
}

[data-layout-mode="C"] .project-spread {
  min-height: clamp(650px, 84vh, 900px);
  padding-top: 18px;
  border-top: 1px solid var(--preview-line-soft);
}

.project-spread__index {
  display: none;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin: -2px 0 28px;
  color: var(--preview-faint);
  font-size: 9px;
}

[data-layout-mode="C"] .project-spread__index {
  display: flex;
}

.project-figure {
  position: relative;
  min-width: 0;
  margin: 0;
  background: transparent;
  transform-origin: center;
  transition: opacity 340ms ease, transform 500ms cubic-bezier(0.22, 0.72, 0.2, 1), clip-path 500ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.project-figure picture,
.project-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.project-figure img {
  object-fit: contain;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
}

.project-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: rgba(224, 235, 239, 0.28);
  font-size: clamp(9px, 0.68vw, 10px);
  text-transform: uppercase;
  transition: color 180ms ease;
}

.project-figure.is-current figcaption,
.project-spread.is-current .project-figure[data-layout-role="primary"] figcaption {
  color: rgba(169, 232, 238, 0.82);
}

.project-figure.is-current {
  transform: translateY(-2px) scale(1.004);
}

[data-layout-mode="C"] .project-spread.is-current .project-figure[data-layout-role="primary"] {
  transform: scale(1.008);
}

.motion-ready .project-figure:not(.is-entered) {
  opacity: 0.68;
  transform: translateY(12px);
  clip-path: inset(2% 0 0);
}

.project-figure.is-entered {
  opacity: 1;
  clip-path: inset(0);
}

.project-figure[data-stills-stage="film"] {
  perspective: 1200px;
}

.project-figure[data-stills-stage="film"] picture {
  position: relative;
  z-index: 1;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.project-figure .restrained-blur--film {
  z-index: 2;
}

/* People / Mode B */
[data-spread-id="people-01"] [data-image-id="people-01"] { grid-column: 1 / 6; grid-row: 2; }
[data-spread-id="people-01"] [data-image-id="people-06"] { grid-column: 6 / 9; grid-row: 2; margin-top: 62px; }
[data-spread-id="people-02"] [data-image-id="people-05"] { grid-column: 1 / 6; grid-row: 2 / 4; }
[data-spread-id="people-02"] [data-image-id="people-07"] { grid-column: 6 / 9; grid-row: 2; margin-top: 28px; }
[data-spread-id="people-02"] [data-image-id="people-02"] { grid-column: 3 / 6; grid-row: 4; margin-top: 42px; }

/* Film / Mode C */
[data-spread-id="film-01"] [data-image-id="film-01"] { grid-column: 1 / 7; grid-row: 2; }
[data-spread-id="film-01"] [data-image-id="film-03"] { grid-column: 7 / 9; grid-row: 2; margin-top: 82px; }
[data-spread-id="film-01"] [data-image-id="film-04"] { grid-column: 5 / 9; grid-row: 3; margin-top: 34px; }
[data-spread-id="film-02"] [data-image-id="film-06"] { grid-column: 1 / 3; grid-row: 2; margin-top: 74px; }
[data-spread-id="film-02"] [data-image-id="film-02"] { grid-column: 3 / 7; grid-row: 2; }
[data-spread-id="film-02"] [data-image-id="film-05"] { grid-column: 7 / 9; grid-row: 2; margin-top: 36px; }

/* Brand / Mode C with verified role separation. */
[data-spread-id="brand-01"] [data-image-id="brand-03"] { grid-column: 1 / 6; grid-row: 2; }
[data-spread-id="brand-01"] [data-image-id="brand-01"] { grid-column: 6 / 9; grid-row: 2; margin-top: 54px; }
[data-spread-id="brand-02"] [data-image-id="brand-02"] { grid-column: 1 / 6; grid-row: 2; }
[data-spread-id="brand-02"] [data-image-id="brand-06"] { grid-column: 6 / 9; grid-row: 2; margin-top: 64px; }
[data-spread-id="brand-03"] [data-image-id="brand-04"] { grid-column: 1 / 6; grid-row: 2; }
[data-spread-id="brand-03"] [data-image-id="brand-05"] { grid-column: 6 / 9; grid-row: 2; margin-top: 70px; }
[data-spread-id="brand-03"] [data-image-id="brand-08"] { grid-column: 3 / 7; grid-row: 3; margin-top: 34px; }

/* Live / Mode B */
[data-spread-id="live-01"] [data-image-id="live-03"] { grid-column: 1 / 6; grid-row: 2; }
[data-spread-id="live-01"] [data-image-id="live-02"] { grid-column: 6 / 9; grid-row: 2; margin-top: 76px; }
[data-spread-id="live-02"] [data-image-id="live-01"] { grid-column: 1 / 6; grid-row: 2; margin-top: 44px; }
[data-spread-id="live-02"] [data-image-id="live-04"] { grid-column: 6 / 9; grid-row: 2; }
[data-spread-id="live-03"] [data-image-id="live-06"] { grid-column: 1 / 6; grid-row: 2; }
[data-spread-id="live-03"] [data-image-id="live-07"] { grid-column: 6 / 8; grid-row: 2; margin-top: 74px; }
[data-spread-id="live-03"] [data-image-id="live-05"] { grid-column: 4 / 9; grid-row: 3; margin-top: 34px; }

.closing-preview {
  padding-top: clamp(88px, 9vw, 134px);
}

.statement-composition {
  padding: clamp(24px, 4vw, 58px) 0 clamp(84px, 10vw, 148px);
}

.statement-composition h2 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}

.statement-intro {
  color: var(--preview-faint);
  font-size: clamp(17px, 1.6vw, 25px);
  font-weight: 360;
}

.statement-values {
  display: flex;
  gap: clamp(24px, 5.6vw, 88px);
  margin-top: clamp(36px, 5vw, 74px);
  color: var(--silver);
  font-size: clamp(38px, 5.8vw, 88px);
}

.statement-values span {
  white-space: nowrap;
}

.statement-bridge {
  align-self: center;
  margin-top: clamp(32px, 4.4vw, 68px);
  color: var(--preview-muted);
  font-size: clamp(28px, 3.4vw, 52px);
}

.statement-anchor {
  align-self: flex-end;
  margin-top: clamp(28px, 4vw, 58px);
  color: var(--text);
  font-size: clamp(60px, 9vw, 138px);
  font-weight: 620;
}

.method-line--preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: clamp(54px, 7vw, 96px);
  color: var(--preview-muted);
  font-size: clamp(15px, 1.45vw, 22px);
}

.method-line--preview span {
  white-space: nowrap;
}

.method-line--preview i {
  color: var(--preview-faint);
  font-style: normal;
}

.contact-preview {
  padding-top: clamp(74px, 8vw, 112px);
  border-top: 1px solid var(--preview-line);
}

.contact-preview__heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 20px;
}

.contact-preview__heading > span,
.contact-path__en,
.contact-direct > div > span {
  color: var(--preview-faint);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-preview__heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.98;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 132px);
  margin: clamp(72px, 9vw, 132px) 0 0 25%;
}

.contact-path {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--preview-line);
}

.contact-path h3 {
  margin: 18px 0 24px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
}

.contact-path > p:not(.contact-path__en) {
  min-height: 4.2em;
  color: var(--preview-muted);
  font-size: 16px;
  line-height: 1.8;
}

.contact-path__types {
  display: flex;
  min-height: 4.2em;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-content: start;
  margin-bottom: 22px;
  color: var(--preview-muted);
  font-size: 15px;
}

.contact-preview .action-link {
  margin-top: 18px;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(74px, 9vw, 128px);
  padding-top: 22px;
  border-top: 1px solid var(--preview-line);
}

.contact-direct > div {
  min-width: 0;
}

.contact-direct button,
.contact-direct a,
.contact-direct p {
  display: block;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text);
  font-size: clamp(13px, 1.1vw, 16px);
  text-align: left;
  text-decoration: none;
}

.contact-direct button {
  cursor: pointer;
}

.contact-direct button:hover,
.contact-direct a:hover {
  color: var(--preview-current);
}

.contact-direct .copy-hint {
  color: var(--preview-faint);
  font-size: 10px;
}

.studio-signoff {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 28%);
  align-items: end;
  gap: 40px;
  min-height: clamp(420px, 56vw, 760px);
  margin-top: clamp(88px, 12vw, 180px);
  padding-top: 30px;
  border-top: 1px solid var(--preview-line-soft);
}

.studio-signoff p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--preview-faint);
  font-size: 10px;
  text-transform: uppercase;
}

.studio-signoff img {
  width: 100%;
  height: auto;
  opacity: 0.56;
  filter: grayscale(1) saturate(0.2) contrast(0.9);
  transition: opacity 260ms ease, filter 260ms ease;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  margin-top: 42px;
  padding: 24px 0 0;
  border-top: 1px solid var(--preview-line-soft);
  color: var(--preview-faint);
  font-size: 9px;
  text-transform: uppercase;
}

.site-footer span:last-child {
  text-align: right;
}

@media (max-width: 1179px) and (min-width: 960px) {
  .portfolio-chapter {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .project-info {
    top: 98px;
    grid-column: 1 / 5;
    max-height: calc(100vh - 108px);
    padding-right: 18px;
  }

  .project-info__index {
    margin-bottom: 28px;
  }

  .project-info h2 {
    font-size: clamp(38px, 4.1vw, 46px);
  }

  .project-info__fixed > p:last-child {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.58;
  }

  .project-info__dynamic {
    min-height: 164px;
    margin-top: 24px;
    padding-top: 13px;
  }

  .project-info__category-en { margin-top: 13px; }
  .project-info__role-label { margin-top: 14px; }
  .project-role-list { gap: 5px 10px; font-size: 12px; }
  .project-media { grid-column: 5 / 13; }
  .project-spread { column-gap: 12px; margin-bottom: 90px; }
}

@media (max-width: 959px) and (min-width: 821px) {
  .portfolio-chapter {
    padding-left: 30px;
    padding-right: 30px;
  }

  .editorial-project-grid {
    display: block;
  }

  .project-info {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 30px;
    max-height: none;
    margin-bottom: 58px;
    padding: 0;
  }

  .project-info__index { margin-bottom: 22px; }
  .project-info h2 { font-size: 48px; }
  .project-info__fixed > p:last-child { margin-top: 20px; }
  .project-info__dynamic { margin-top: 0; }
  .project-media { width: 100%; }
}

@media (max-height: 760px) and (min-width: 960px) {
  .project-info {
    top: 84px;
    max-height: calc(100vh - 94px);
  }
  .project-info__index { margin-bottom: 18px; }
  .project-info h2 { font-size: 40px; }
  .project-info__fixed > p:last-child { margin-top: 14px; line-height: 1.5; }
  .project-info__dynamic { min-height: 152px; margin-top: 16px; padding-top: 10px; }
  .project-info__category-en { margin-top: 10px; }
  .project-info__category-zh { font-size: 20px; }
  .project-info__role-label { margin-top: 10px; margin-bottom: 6px; }
  .project-role-list { gap: 3px 10px; font-size: 11px; }
}

@media (max-width: 820px) {
  :root {
    --pad: 16px;
  }

  .desktop-identity {
    display: none !important;
  }

  .mobile-identity {
    display: block;
  }

  .identity {
    min-height: 0;
    padding: 0 16px 66px;
  }

  .mobile-identity__lead {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding-top: calc(var(--nav) + 32px);
  }

  .mobile-identity__location {
    margin: 0 0 22px;
    color: var(--preview-faint);
    font-size: 9px;
  }

  .mobile-identity h1 {
    margin: 0;
    font-family: "Roboto Flex ISMOO", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(74px, 25vw, 108px);
    font-weight: 620;
    line-height: 0.82;
  }

  .mobile-identity__roles {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    color: var(--silver);
    font-size: 13px;
  }

  .mobile-identity__definition {
    display: flex;
    flex-direction: column;
    margin: 24px 0 0;
    color: var(--preview-current);
    font-size: 12px;
    line-height: 1.45;
  }

  .mobile-identity__method {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 7px 24px;
    margin-top: 22px;
    color: var(--preview-muted);
    font-size: 15px;
  }

  .mobile-identity__actions {
    margin-top: 28px;
  }

  .mobile-identity__previews {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    margin-top: auto;
    padding-top: 38px;
  }

  .mobile-preview {
    position: relative;
    margin: 0;
  }

  .mobile-preview img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-preview span {
    display: block;
    margin-top: 6px;
    color: var(--preview-faint);
    font-size: 8px;
  }

  .mobile-preview--film { grid-column: 1 / 10; grid-row: 1; }
  .mobile-preview--brand { grid-column: 7 / 13; grid-row: 2; margin-top: -12px; }
  .mobile-preview--live { grid-column: 1 / 7; grid-row: 3; margin-top: -16px; }

  .mobile-identity__portrait {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    margin-top: 76px;
    padding-top: 24px;
    border-top: 1px solid var(--preview-line-soft);
  }

  .mobile-identity__portrait > p {
    grid-column: 1 / 7;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    color: var(--preview-faint);
    font-size: 9px;
    text-transform: uppercase;
  }

  .mobile-identity__portrait figure {
    grid-column: 6 / 13;
    margin: 0;
  }

  .mobile-identity__portrait figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-identity__portrait > div {
    grid-column: 1 / 9;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: -36px;
  }

  .mobile-identity__portrait strong {
    font-size: 27px;
  }

  .mobile-identity__portrait span {
    color: var(--preview-muted);
    font-size: 10px;
  }

  .portfolio-chapter {
    padding: 54px 16px 70px;
  }

  .editorial-project-grid {
    display: block;
  }

  .project-info {
    position: relative;
    top: auto;
    display: block;
    max-height: none;
    margin-bottom: 36px;
    padding: 0;
  }

  .project-info__index {
    margin-bottom: 22px;
    font-size: 9px;
  }

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

  .project-info h2 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .project-info__fixed > p:last-child {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.65;
  }

  .project-info__dynamic {
    display: none;
  }

  .project-media {
    width: 100%;
  }

  .project-media.project-media--mobile {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 6px;
    row-gap: 42px;
    align-items: start;
  }

  .mobile-role-group {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    margin: -18px 0 6px;
    padding-top: 10px;
    border-top: 1px solid var(--preview-line-soft);
  }

  .mobile-role-entry {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    color: var(--preview-muted);
  }

  .mobile-role-entry > span {
    color: var(--preview-faint);
    font-size: 8px;
    text-transform: uppercase;
  }

  .mobile-role-entry .project-role-list {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 6px 14px;
    font-size: 10px;
  }

  .closing-preview {
    padding: 68px 16px 28px;
  }

  .statement-composition {
    padding: 12px 0 78px;
  }

  .desktop-only-inline {
    display: none;
  }

  .statement-intro {
    font-size: 15px;
  }

  .statement-values {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 8px 24px;
    margin-top: 32px;
    font-size: clamp(32px, 10vw, 40px);
  }

  .statement-values span:last-child {
    grid-column: 1 / -1;
  }

  .statement-bridge {
    align-self: flex-start;
    margin-top: 34px;
    font-size: 24px;
  }

  .statement-anchor {
    align-self: flex-start;
    margin-top: 24px;
    font-size: clamp(46px, 14vw, 60px);
  }

  .method-line--preview {
    display: grid;
    grid-template-columns: max-content 14px max-content;
    gap: 8px 9px;
    margin-top: 52px;
    font-size: 14px;
  }

  .method-line--preview span:nth-of-type(3) {
    grid-column: 1;
  }

  .contact-preview__heading {
    display: block;
  }

  .contact-preview__heading h2 {
    margin-top: 18px;
    font-size: 42px;
  }

  .contact-paths {
    display: block;
    margin: 58px 0 0;
  }

  .contact-path + .contact-path {
    margin-top: 54px;
  }

  .contact-direct {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 18px;
    margin-top: 70px;
  }

  .studio-signoff {
    grid-template-columns: 1fr minmax(120px, 42%);
    min-height: 380px;
    margin-top: 88px;
  }

  .studio-signoff img {
    opacity: 0.5;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }

  [data-motion="off"] .project-figure,
  [data-motion-mode="off"] .project-figure,
  [data-motion-mode="reduced"] .project-figure,
  .no-motion .project-figure {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

@media (max-width: 430px) {
  .mobile-identity__lead {
    padding-top: calc(var(--nav) + 28px);
  }

  .mobile-identity__actions .action-link {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .mobile-role-entry {
    grid-template-columns: 66px 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  .project-info__dynamic,
  .project-role-list span,
  .project-figure,
  .studio-signoff img {
    animation: none !important;
    transition: none !important;
  }

  .project-figure {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* Beta 1D.1: tighter editorial scale and stable information rolls. */
.portfolio-chapter {
  overflow: clip;
  padding-top: clamp(68px, 7vw, 102px);
  padding-bottom: clamp(68px, 7vw, 104px);
}

.project-info {
  transition: opacity 280ms cubic-bezier(0.22, 0.72, 0.2, 1), transform 320ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.portfolio-chapter.is-info-exiting .project-info {
  opacity: 0;
  transform: translateY(-16px);
}

.project-info-exit-sentinel {
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.project-info__index {
  justify-content: flex-start;
  margin-bottom: clamp(26px, 4vh, 44px);
}

.project-info h2 {
  max-width: none;
  font-size: clamp(48px, 3.7vw, 62px);
  line-height: 1.03;
  word-break: keep-all;
  line-break: strict;
  white-space: nowrap;
}

.project-info__fixed > p:last-child {
  max-width: 27em;
  margin-top: clamp(18px, 2.6vh, 28px);
  line-height: 1.7;
  text-wrap: pretty;
}

.project-info__dynamic {
  min-height: 168px;
  margin-top: clamp(26px, 4.2vh, 44px);
  overflow: visible;
  transition: none;
}

.project-info__dynamic[data-transition],
.project-info__category-en[data-transition],
.project-info__category-zh[data-transition] {
  opacity: 1;
  transform: none;
  animation: none;
}

.project-info__current {
  align-items: center;
}

.info-roll {
  position: relative;
  display: block;
  overflow: hidden;
  contain: layout paint;
}

.info-roll--progress {
  width: 5.4em;
  height: 16px;
  color: var(--preview-current);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.info-roll--category-en {
  height: 17px;
  margin-top: 18px;
}

.info-roll--category-zh {
  height: 34px;
  margin-top: 3px;
}

.info-roll--roles {
  height: 50px;
}

.info-roll__item {
  width: 100%;
  will-change: auto;
}

.info-roll__item.is-roll-out,
.info-roll__item.is-roll-in {
  position: absolute;
  inset: 0;
  margin: 0;
}

.info-roll__item.is-roll-out {
  animation: editorial-roll-out 360ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.info-roll__item.is-roll-in {
  animation: editorial-roll-in 380ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

.info-roll--category-zh .info-roll__item.is-roll-in {
  animation-delay: 42ms;
}

.info-roll--roles .info-roll__item.is-roll-in span {
  animation: editorial-role-in 380ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
  animation-delay: calc(var(--role-index, 0) * 24ms);
}

@keyframes editorial-roll-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}

@keyframes editorial-roll-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes editorial-role-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.project-info__category-en,
.project-info__category-zh {
  margin: 0;
  transition: none;
}

.project-info__role-label {
  margin-top: 18px;
  margin-bottom: 9px;
}

.project-role-list span,
.project-role-list span.is-new {
  animation: none;
  transition: none;
}

.project-spread {
  margin-bottom: clamp(68px, 12vh, 126px);
}

[data-layout-mode="C"] .project-spread {
  min-height: 0;
  padding-top: 14px;
}

.project-spread__index {
  margin-bottom: 22px;
}

.closing-preview {
  padding-top: clamp(72px, 7vw, 108px);
}

.statement-composition {
  display: flex;
  min-height: min(78vh, 800px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 42px) 0 clamp(42px, 5vw, 70px);
}

.statement-composition h2 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  row-gap: clamp(22px, 3vh, 34px);
  font-weight: 500;
}

.statement-lead {
  grid-column: 1 / 8;
  color: var(--preview-faint);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 360;
  line-height: 1.35;
}

.mobile-statement-line {
  display: none;
}

.statement-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.02;
}

.statement-block small {
  margin-bottom: 8px;
  color: var(--preview-faint);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 360;
}

.statement-block strong {
  color: var(--text);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 560;
  white-space: nowrap;
}

.statement-block--content {
  grid-column: 1 / 8;
}

.statement-block--picture {
  grid-column: 5 / 12;
}

.statement-block--picture strong {
  font-size: clamp(46px, 4.4vw, 68px);
}

.statement-block--finish {
  grid-column: 2 / 11;
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: end;
  gap: clamp(18px, 2.4vw, 36px);
}

.statement-block--finish small {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 34px);
}

.statement-block--finish strong {
  font-size: clamp(54px, 5.2vw, 78px);
}

.statement-note {
  max-width: 36em;
  margin: clamp(28px, 4vh, 42px) 0 0;
  color: var(--preview-muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
}

.method-line--preview {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(22px, 3vh, 34px);
  font-size: clamp(14px, 1.2vw, 18px);
}

.method-unit {
  display: inline-flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  white-space: nowrap;
}

.contact-preview {
  min-height: 0;
  padding-top: clamp(28px, 2.7vw, 38px);
  padding-bottom: clamp(30px, 2.8vw, 40px);
}

.contact-preview__heading {
  grid-template-columns: minmax(100px, 1fr) 3fr;
}

.contact-preview__heading h2 {
  display: flex;
  flex-direction: column;
  font-size: clamp(50px, 4.5vw, 68px);
  line-height: 0.98;
}

.contact-preview__heading h2 strong {
  font-weight: 620;
}

.contact-preview__heading > div > p {
  max-width: 38em;
  margin: 16px 0 0;
  color: var(--preview-muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-paths {
  gap: clamp(42px, 6vw, 96px);
  margin: clamp(30px, 3vw, 42px) 0 0 25%;
}

.contact-path h3 {
  margin: 10px 0 13px;
  font-size: clamp(25px, 2.2vw, 34px);
}

.contact-path > p:not(.contact-path__en),
.contact-path__types {
  min-height: 2.8em;
  font-size: 14px;
}

.contact-path__types {
  margin-bottom: 14px;
}

.contact-preview .action-link {
  margin-top: 10px;
}

.contact-direct {
  margin-top: clamp(34px, 3.2vw, 46px);
  padding-top: 18px;
}

.studio-signoff {
  grid-template-columns: 1fr minmax(320px, 420px);
  min-height: clamp(360px, 48vh, 500px);
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: 24px;
}

.studio-signoff p {
  align-self: center;
}

.studio-signoff__mark {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
  align-self: center;
  --studio-reveal-x: 50%;
  --studio-reveal-y: 50%;
  --studio-reveal-radius: 170px;
  --studio-reveal-opacity: 0;
}

.studio-signoff__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.studio-signoff .studio-signoff__base {
  opacity: 0.58;
  filter: saturate(0.26) brightness(0.8) contrast(0.9);
}

.studio-signoff .studio-signoff__reveal {
  position: absolute;
  inset: 0;
  opacity: var(--studio-reveal-opacity);
  filter: saturate(0.78) brightness(0.9) contrast(0.96);
  -webkit-mask-image: radial-gradient(circle var(--studio-reveal-radius) at var(--studio-reveal-x) var(--studio-reveal-y), #000 0, rgba(0, 0, 0, 0.92) 34%, rgba(0, 0, 0, 0.45) 66%, transparent 100%);
  mask-image: radial-gradient(circle var(--studio-reveal-radius) at var(--studio-reveal-x) var(--studio-reveal-y), #000 0, rgba(0, 0, 0, 0.92) 34%, rgba(0, 0, 0, 0.45) 66%, transparent 100%);
  transition: opacity 560ms cubic-bezier(0.22, 0.72, 0.2, 1);
  pointer-events: none;
}

.studio-signoff__mark.is-logo-active {
  --studio-reveal-opacity: 0.82;
}

.hero-roles,
.chapter-jump {
  gap: 0;
}

.hero-roles span,
.chapter-jump a {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: none;
}

.hero-roles span + span::before,
.chapter-jump a + a::before {
  content: "/";
  margin: 0 12px;
  color: var(--preview-faint);
}

@media (max-width: 1179px) and (min-width: 960px) {
  .identity {
    min-height: 100svh;
    padding-top: calc(var(--nav) + 24px);
  }

  .hero-composition {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: clamp(24px, 3.2vw, 38px);
  }

  .hero-portrait {
    width: min(39vw, 400px);
    min-width: 0;
    height: min(72vh, 650px);
    aspect-ratio: auto;
  }

  .pressure-title {
    font-size: clamp(82px, 10.8vw, 128px);
  }

  .hero-method {
    margin-top: 20px;
    font-size: clamp(22px, 2.5vw, 30px);
  }

  .hero-meta p {
    margin: 10px 0 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .chapter-jump {
    margin-top: 14px;
    padding-top: 12px;
  }

  .project-info h2 {
    font-size: clamp(38px, 4.1vw, 46px);
  }

  .project-info__fixed > p:last-child {
    line-height: 1.62;
  }

  .project-spread {
    margin-bottom: clamp(62px, 11vh, 100px);
  }

  .studio-signoff {
    grid-template-columns: 1fr minmax(300px, 380px);
  }
}

@media (max-width: 959px) and (min-width: 821px) {
  .identity {
    min-height: 100svh;
    padding-top: calc(var(--nav) + 26px);
  }

  .hero-composition {
    grid-template-columns: minmax(0, 43%) minmax(0, 57%);
    gap: 26px;
  }

  .hero-portrait {
    width: 38vw;
    min-width: 0;
    height: min(68vh, 570px);
    aspect-ratio: auto;
  }

  .pressure-title {
    font-size: clamp(72px, 10.6vw, 98px);
  }

  .hero-method {
    margin-top: 18px;
    font-size: 22px;
  }

  .hero-meta > p:first-child {
    font-size: 12px;
    line-height: 1.6;
  }

  .project-info h2 {
    font-size: 44px;
    white-space: nowrap;
  }
}

@media (min-width: 1800px) {
  .studio-signoff {
    grid-template-columns: 1fr minmax(360px, 460px);
  }

  .studio-signoff__mark {
    max-width: 460px;
  }
}

@media (max-width: 820px) {
  .portfolio-chapter {
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .project-info h2 {
    font-size: clamp(30px, 9.2vw, 39px);
    white-space: nowrap;
  }

  .project-info__fixed > p:last-child {
    max-width: 30em;
    text-wrap: pretty;
  }

  .closing-preview {
    padding-top: 58px;
  }

  .statement-composition {
    min-height: 0;
    padding: 10px 0 66px;
  }

  .statement-composition h2 {
    display: flex;
    row-gap: 0;
  }

  .statement-lead {
    display: flex;
    width: auto;
    flex-direction: column;
    align-self: flex-start;
    text-align: left;
    font-size: 17px;
    line-height: 1.45;
  }

  .desktop-statement-line {
    display: none;
  }

  .mobile-statement-line {
    display: block;
  }

  .statement-block {
    margin-top: 30px;
  }

  .statement-block small {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .statement-block strong,
  .statement-block--picture strong,
  .statement-block--finish strong {
    font-size: clamp(35px, 10.2vw, 43px);
    white-space: nowrap;
  }

  .statement-block--picture {
    align-self: flex-end;
    width: 78%;
  }

  .statement-block--finish {
    display: flex;
    align-self: flex-start;
    gap: 0;
  }

  .statement-block--finish small {
    font-size: 15px;
  }

  .statement-note {
    margin-top: 32px;
    font-size: 12px;
  }

  .method-line--preview {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 8px 16px;
    margin-top: 26px;
    font-size: 13px;
  }

  .method-unit {
    gap: 12px;
  }

  .method-unit:last-child {
    grid-column: 1;
  }

  .contact-preview {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 60px;
  }

  .contact-preview__heading h2 {
    margin-top: 16px;
    font-size: clamp(38px, 11vw, 46px);
  }

  .contact-preview__heading > div > p {
    margin-top: 18px;
    font-size: 13px;
  }

  .contact-paths {
    margin-top: 44px;
  }

  .contact-path + .contact-path {
    margin-top: 44px;
  }

  .contact-direct {
    margin-top: 54px;
  }

  .studio-signoff {
    grid-template-columns: 1fr minmax(180px, 230px);
    min-height: clamp(320px, 44vh, 390px);
    gap: 24px;
    margin-top: 56px;
    padding-top: 22px;
  }

  .studio-signoff__mark {
    width: min(100%, 230px);
  }

  .studio-signoff__reveal {
    display: none;
  }

  .studio-signoff__base {
    opacity: 0.54;
  }

  .portfolio-chapter.is-info-exiting .project-info {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 430px) {
  .studio-signoff {
    grid-template-columns: 1fr minmax(180px, 58%);
  }
}

html[data-motion="off"] .info-roll__item,
html[data-motion-mode="off"] .info-roll__item,
html[data-motion-mode="reduced"] .info-roll__item,
html[data-pointer="touch"] .info-roll__item,
html[data-motion="off"] .studio-signoff__reveal,
html[data-motion-mode="off"] .studio-signoff__reveal,
html[data-motion-mode="reduced"] .studio-signoff__reveal,
html[data-pointer="touch"] .studio-signoff__reveal {
  animation: none !important;
  transition: none !important;
}

html[data-motion="off"] .studio-signoff__reveal,
html[data-motion-mode="off"] .studio-signoff__reveal,
html[data-motion-mode="reduced"] .studio-signoff__reveal,
html[data-pointer="touch"] .studio-signoff__reveal {
  display: none;
}

:root {
  --late-stage-line: rgba(221, 232, 240, 0.13);
  --late-stage-line-strong: rgba(221, 232, 240, 0.2);
}

@media (min-width: 821px) {
  .statement-composition {
    display: grid;
    min-height: 59vh;
    box-sizing: border-box;
    align-content: center;
    padding: clamp(24px, 2.5vw, 34px) 0 clamp(28px, 3vw, 40px);
  }

  .statement-composition h2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(22px, 3vw, 46px);
    row-gap: clamp(18px, 2.2vh, 24px);
    align-items: stretch;
  }

  .statement-lead {
    grid-column: 1 / -1;
    color: rgba(224, 235, 239, 0.56);
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 420;
    line-height: 1.4;
  }

  .statement-block,
  .statement-block--content,
  .statement-block--picture,
  .statement-block--finish {
    grid-column: auto;
    display: flex;
    min-height: clamp(118px, 14vh, 146px);
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    gap: 16px;
    padding-top: 13px;
    border-top: 1px solid var(--late-stage-line-strong);
  }

  .statement-block small,
  .statement-block--finish small {
    margin: 0;
    color: rgba(224, 235, 239, 0.58);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 430;
    line-height: 1.4;
  }

  .statement-block strong,
  .statement-block--picture strong,
  .statement-block--finish strong {
    display: flex;
    flex-direction: column;
    color: rgba(244, 250, 252, 0.94);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 540;
    line-height: 1.08;
    white-space: nowrap;
  }

  .statement-block--picture strong {
    font-size: clamp(32px, 2.8vw, 43px);
  }

  .statement-block--finish strong {
    font-size: clamp(29px, 2.55vw, 39px);
    line-height: 1.12;
  }

  .statement-note {
    max-width: 42em;
    margin: clamp(18px, 2.3vh, 25px) 0 0;
    color: rgba(224, 235, 239, 0.64);
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 420;
    line-height: 1.7;
  }

  .method-line--preview {
    gap: clamp(14px, 1.6vw, 24px);
    margin-top: clamp(14px, 1.8vh, 20px);
    color: rgba(224, 235, 239, 0.68);
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 460;
  }

  .method-unit {
    gap: clamp(14px, 1.6vw, 24px);
  }

  .contact-preview {
    display: block;
    min-height: 55vh;
    box-sizing: border-box;
    padding-top: clamp(24px, 2.2vw, 32px);
    padding-bottom: clamp(24px, 2.4vw, 34px);
  }

  .contact-preview__heading {
    grid-template-columns: minmax(100px, 1fr) 3fr;
    align-items: start;
  }

  .contact-preview__heading h2 {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.38em;
    margin: 0;
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 520;
    line-height: 1;
    white-space: nowrap;
  }

  .contact-preview__heading h2 strong {
    font-weight: 620;
  }

  .contact-preview__heading > div > p {
    max-width: 44em;
    margin-top: 13px;
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 410;
    line-height: 1.6;
  }

  .contact-paths {
    gap: 0;
    margin: clamp(22px, 2.7vh, 30px) 0 0 25%;
    border-top: 1px solid var(--late-stage-line-strong);
    border-bottom: 1px solid var(--late-stage-line);
  }

  .contact-path {
    min-height: 0;
    padding: clamp(13px, 1.4vw, 19px) clamp(20px, 2.5vw, 38px) clamp(15px, 1.6vw, 22px);
    border-top: 0;
  }

  .contact-path:first-child {
    padding-left: 0;
    border-right: 1px solid var(--late-stage-line);
  }

  .contact-path:last-child {
    padding-right: 0;
  }

  .contact-path h3 {
    margin: 7px 0 9px;
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 540;
  }

  .contact-path > p:not(.contact-path__en),
  .contact-path__types {
    min-height: 0;
    margin-bottom: 9px;
    color: rgba(224, 235, 239, 0.65);
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.6;
  }

  .contact-path__types {
    gap: 6px 16px;
  }

  .contact-preview .action-link {
    min-height: 34px;
    margin-top: 7px;
    padding: 0 12px;
    font-size: 12px;
  }

  .contact-direct {
    gap: 0;
    margin-top: clamp(20px, 2.5vh, 28px);
    padding: 0;
    border-top: 1px solid var(--late-stage-line-strong);
    border-bottom: 1px solid var(--late-stage-line);
  }

  .contact-direct > div {
    min-height: 68px;
    box-sizing: border-box;
    padding: 13px clamp(12px, 1.6vw, 24px) 14px;
  }

  .contact-direct > div:first-child {
    padding-left: 0;
  }

  .contact-direct > div + div {
    border-left: 1px solid var(--late-stage-line);
  }

  .contact-direct > div:last-child {
    padding-right: 0;
  }

  .contact-direct button,
  .contact-direct a,
  .contact-direct p {
    margin-top: 8px;
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.45;
  }

  .studio-signoff {
    grid-template-columns: 1fr minmax(320px, 390px);
    min-height: 46vh;
    box-sizing: border-box;
    margin-top: clamp(46px, 5vw, 72px);
    padding-top: 20px;
  }

  .studio-signoff p {
    gap: 9px;
    color: rgba(224, 235, 239, 0.52);
    font-size: clamp(10px, 0.72vw, 11px);
    font-weight: 450;
  }

  .studio-signoff p span:last-child {
    color: rgba(224, 235, 239, 0.66);
    font-size: clamp(12px, 0.9vw, 14px);
    text-transform: none;
  }

  .studio-signoff__mark {
    isolation: isolate;
    width: clamp(320px, 24vw, 390px);
    max-width: 100%;
    max-height: 38vh;
    --studio-reveal-radius: clamp(140px, 12vw, 190px);
  }

  .studio-signoff__mark::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: 0;
    opacity: 0;
    background: radial-gradient(circle calc(var(--studio-reveal-radius) * 0.95) at var(--studio-reveal-x) var(--studio-reveal-y), rgba(174, 219, 221, 0.16) 0, rgba(136, 177, 191, 0.085) 34%, rgba(182, 153, 105, 0.045) 52%, transparent 74%);
    filter: blur(24px);
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .studio-signoff .studio-signoff__base {
    position: relative;
    z-index: 1;
    opacity: 0.78;
    filter: saturate(0.76) brightness(0.9) contrast(1.02);
    transition: opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1), filter 620ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .studio-signoff .studio-signoff__reveal {
    z-index: 2;
    opacity: var(--studio-reveal-opacity);
    filter: saturate(1.04) brightness(1) contrast(1.08);
    -webkit-mask-image: radial-gradient(circle var(--studio-reveal-radius) at var(--studio-reveal-x) var(--studio-reveal-y), #000 0, rgba(0, 0, 0, 0.98) 42%, rgba(0, 0, 0, 0.58) 70%, transparent 100%);
    mask-image: radial-gradient(circle var(--studio-reveal-radius) at var(--studio-reveal-x) var(--studio-reveal-y), #000 0, rgba(0, 0, 0, 0.98) 42%, rgba(0, 0, 0, 0.58) 70%, transparent 100%);
    transition: opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .studio-signoff__mark.is-logo-active {
    --studio-reveal-opacity: 0.93;
  }

  .studio-signoff__mark.is-logo-active::before {
    opacity: 0.34;
  }

  .studio-signoff__mark.is-logo-active .studio-signoff__base {
    opacity: 0.86;
    filter: saturate(0.9) brightness(0.95) contrast(1.06);
  }

  .site-footer {
    margin-top: 24px;
    padding-top: 18px;
  }
}

@media (max-width: 1179px) and (min-width: 821px) {
  .statement-block strong,
  .statement-block--picture strong {
    font-size: clamp(28px, 3.3vw, 38px);
  }

  .statement-block--finish strong {
    font-size: clamp(25px, 2.9vw, 33px);
  }

  .contact-preview__heading h2 {
    font-size: clamp(38px, 4.2vw, 48px);
  }

  .studio-signoff {
    grid-template-columns: 1fr minmax(300px, 350px);
  }

  .studio-signoff__mark {
    width: clamp(300px, 32vw, 350px);
  }
}

@media (max-width: 820px) {
  .statement-block--finish strong {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.08;
  }

  .studio-signoff {
    min-height: 42vh;
    margin-top: 48px;
  }

  .studio-signoff__mark {
    width: min(100%, 210px);
  }

  .studio-signoff .studio-signoff__base {
    opacity: 0.72;
    filter: saturate(0.72) brightness(0.9) contrast(1.01);
  }
}

html[data-motion="off"] .studio-signoff__mark::before,
html[data-motion-mode="off"] .studio-signoff__mark::before,
html[data-motion-mode="reduced"] .studio-signoff__mark::before,
html[data-pointer="touch"] .studio-signoff__mark::before {
  display: none;
}

:root {
  --closing-line: rgba(221, 232, 240, 0.16);
  --closing-line-soft: rgba(221, 232, 240, 0.09);
  --closing-muted: rgba(224, 235, 239, 0.64);
  --closing-faint: rgba(224, 235, 239, 0.46);
}

html {
  overflow-x: clip;
}

.closing-preview {
  padding-top: 0;
  padding-bottom: clamp(24px, 2.6vw, 38px);
}

.closing-kicker,
.method-step__index,
.closing-contact__en,
.closing-contact__direct > div > span {
  margin: 0;
  color: var(--closing-faint);
  font-size: clamp(10px, 0.72vw, 11px);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (min-width: 821px) {
  .closing-method,
  .closing-contact,
  .studio-signoff {
    box-sizing: border-box;
    border-top: 1px solid var(--closing-line);
  }

  .closing-method {
    display: grid;
    height: clamp(400px, 29vw, 440px);
    grid-template-rows: auto 1fr auto;
    padding: clamp(48px, 3.6vw, 58px) 0 clamp(46px, 3.4vw, 54px);
  }

  .closing-method__header,
  .closing-method__meta {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(12px, 1.2vw, 20px);
  }

  .closing-method__header .closing-kicker {
    grid-column: 1 / 4;
  }

  .closing-method__header h2 {
    grid-column: 4 / 13;
    margin: 0;
    color: rgba(239, 247, 250, 0.82);
    font-size: clamp(18px, 1.5vw, 23px);
    font-weight: 500;
    line-height: 1.35;
  }

  .method-steps {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(12px, 1.2vw, 20px);
    align-items: end;
    margin: clamp(25px, 2.2vw, 32px) 0 clamp(22px, 2vw, 30px);
    padding: 0;
    list-style: none;
  }

  .method-step {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    align-self: stretch;
    padding-top: 12px;
    border-top: 1px solid var(--closing-line);
  }

  .method-step--one { grid-column: 1 / 4; }
  .method-step--two { grid-column: 4 / 8; }
  .method-step--three { grid-column: 8 / 13; }

  .method-step > div {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 17px;
  }

  .method-step small {
    display: block;
    margin-bottom: 10px;
    color: rgba(228, 238, 242, 0.72);
    font-size: clamp(14px, 1.12vw, 17px);
    font-weight: 580;
    line-height: 1.35;
  }

  .method-step strong {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: rgba(247, 251, 252, 0.96);
    font-size: clamp(32px, 2.85vw, 45px);
    font-weight: 680;
    line-height: 1.08;
  }

  .method-step--one strong {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: clamp(28px, 2.5vw, 38px);
  }

  .method-step__statement span {
    white-space: nowrap;
  }

  .method-step--two strong {
    font-size: clamp(30px, 2.55vw, 40px);
  }

  .method-step--three strong {
    font-size: clamp(28px, 2.35vw, 37px);
    line-height: 1.1;
  }

  .method-step__phrases {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0 0.42em;
  }

  .method-step__phrases span {
    white-space: nowrap;
  }

  .closing-method__meta {
    align-items: end;
    padding-top: 18px;
    border-top: 1px solid var(--closing-line-soft);
  }

  .closing-method__meta > p {
    grid-column: 1 / 7;
    margin: 0;
    color: var(--closing-muted);
    font-size: clamp(13px, 0.96vw, 15px);
    font-weight: 470;
    line-height: 1.65;
  }

  .closing-method__path {
    grid-column: 7 / 13;
    display: flex;
    justify-content: flex-end;
    gap: clamp(12px, 1.3vw, 20px);
    align-items: center;
    color: rgba(230, 240, 243, 0.76);
    font-size: clamp(12px, 0.95vw, 15px);
    font-weight: 500;
  }

  .closing-method__path span {
    white-space: nowrap;
  }

  .closing-method__path i {
    color: var(--closing-faint);
    font-style: normal;
  }

  .closing-contact {
    height: clamp(430px, 30.5vw, 470px);
    margin-top: clamp(40px, 3.8vw, 58px);
    padding: clamp(44px, 3.6vw, 54px) 0 clamp(34px, 3.1vw, 44px);
  }

  .closing-contact__header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(12px, 1.2vw, 20px);
    align-items: start;
  }

  .closing-contact__header > .closing-kicker {
    grid-column: 1 / 4;
  }

  .closing-contact__header > div {
    grid-column: 4 / 13;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 0.78fr);
    gap: clamp(26px, 3.4vw, 54px);
    align-items: start;
  }

  .closing-contact__header h2 {
    display: flex;
    gap: 0.34em;
    margin: 0;
    color: rgba(247, 251, 252, 0.98);
    font-size: clamp(38px, 3.65vw, 56px);
    font-weight: 670;
    line-height: 1;
    white-space: nowrap;
  }

  .closing-contact__header > div > p {
    margin: 0;
    color: var(--closing-muted);
    font-size: clamp(12px, 0.92vw, 14px);
    font-weight: 470;
    line-height: 1.65;
  }

  .closing-contact__paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: clamp(24px, 2.1vw, 30px) 0 0 25%;
    border-top: 1px solid var(--closing-line);
    border-bottom: 1px solid var(--closing-line-soft);
  }

  .closing-contact__path {
    min-width: 0;
    padding: 13px clamp(22px, 2.6vw, 40px) 14px;
  }

  .closing-contact__path:first-child {
    padding-left: 0;
    border-right: 1px solid var(--closing-line);
  }

  .closing-contact__path:last-child {
    padding-right: 0;
  }

  .closing-contact__path h3 {
    margin: 6px 0 8px;
    color: rgba(244, 249, 251, 0.94);
    font-size: clamp(23px, 1.9vw, 29px);
    font-weight: 590;
    line-height: 1.2;
  }

  .closing-contact__path > p:not(.closing-contact__en),
  .closing-contact__types {
    min-height: 2.6em;
    margin: 0;
    color: var(--closing-muted);
    font-size: clamp(12px, 0.88vw, 14px);
    font-weight: 470;
    line-height: 1.55;
  }

  .closing-contact__types {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
  }

  .closing-contact .action-link {
    min-height: 32px;
    margin-top: 9px;
    padding: 0 12px;
    font-size: 12px;
  }

  .closing-contact__direct {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(20px, 1.8vw, 26px);
    border-top: 1px solid var(--closing-line);
    border-bottom: 1px solid var(--closing-line-soft);
  }

  .closing-contact__direct > div {
    min-width: 0;
    min-height: 70px;
    box-sizing: border-box;
    padding: 13px clamp(12px, 1.5vw, 23px) 12px;
  }

  .closing-contact__direct > div:first-child { padding-left: 0; }
  .closing-contact__direct > div:last-child { padding-right: 0; }
  .closing-contact__direct > div + div { border-left: 1px solid var(--closing-line-soft); }

  .closing-contact__direct button,
  .closing-contact__direct a,
  .closing-contact__direct p {
    display: block;
    margin: 7px 0 0;
    padding: 0;
    border: 0;
    background: none;
    color: rgba(244, 249, 251, 0.94);
    font-size: clamp(12px, 0.92vw, 14px);
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
    text-decoration: none;
  }

  .closing-contact__direct button {
    cursor: pointer;
  }

  .closing-contact__direct button:hover,
  .closing-contact__direct a:hover {
    color: var(--preview-current);
  }

  .closing-contact__direct p {
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
  }

  .closing-contact__direct p b {
    font: inherit;
    white-space: nowrap;
  }

  .closing-contact__direct .copy-hint {
    color: var(--closing-faint);
    font-size: 10px;
    font-weight: 470;
  }

  .studio-signoff {
    display: block;
    height: clamp(270px, 19.5vw, 300px);
    min-height: 0;
    margin-top: clamp(28px, 2.8vw, 44px);
    padding: clamp(36px, 3vw, 46px) 0 0;
  }

  .studio-signoff__body {
    display: grid;
    height: calc(100% - 42px);
    grid-template-columns: minmax(0, 1fr) minmax(210px, 246px);
    gap: clamp(30px, 4vw, 64px);
    align-items: center;
  }

  .studio-signoff__identity {
    align-self: center;
  }

  .studio-signoff__identity p,
  .studio-signoff__identity h2 {
    margin: 0;
    text-transform: none;
  }

  .studio-signoff__english {
    color: rgba(229, 239, 243, 0.58) !important;
    font-size: clamp(10px, 0.78vw, 12px) !important;
    font-weight: 520 !important;
    letter-spacing: 0.06em;
  }

  .studio-signoff__identity h2 {
    margin-top: 10px;
    color: rgba(245, 250, 252, 0.92);
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 640;
    line-height: 1.15;
  }

  .studio-signoff__subtitle {
    margin-top: 9px !important;
    color: var(--closing-muted) !important;
    font-size: clamp(12px, 0.9vw, 14px) !important;
    font-weight: 480 !important;
  }

  .studio-signoff__mark {
    position: relative;
    isolation: isolate;
    width: clamp(210px, 12.8vw, 246px);
    max-width: 100%;
    max-height: none;
    justify-self: end;
    align-self: center;
    --studio-glow-x: var(--ambient-x, 50%);
    --studio-glow-y: var(--ambient-y, 50%);
  }

  .studio-signoff__mark::before,
  .studio-signoff__mark::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
  }

  .studio-signoff__mark::before {
    inset: -18%;
    opacity: 0.18;
    background:
      radial-gradient(ellipse 58% 50% at 44% 44%, rgba(220, 166, 65, 0.2) 0, rgba(220, 166, 65, 0.095) 36%, transparent 76%),
      radial-gradient(ellipse 62% 54% at 60% 62%, rgba(35, 115, 145, 0.15) 0, rgba(35, 115, 145, 0.07) 40%, transparent 78%);
    filter: blur(42px);
    transition: opacity 580ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .studio-signoff__mark::after {
    inset: -24%;
    opacity: 0;
    background:
      radial-gradient(ellipse 44% 38% at var(--studio-glow-x) var(--studio-glow-y), rgba(220, 166, 65, 0.2) 0, rgba(220, 166, 65, 0.075) 46%, transparent 78%),
      radial-gradient(ellipse 48% 42% at var(--studio-glow-x) var(--studio-glow-y), rgba(35, 115, 145, 0.15) 0, rgba(35, 115, 145, 0.055) 50%, transparent 82%);
    filter: blur(38px);
    transition: opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .studio-signoff .studio-signoff__base {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: saturate(0.76) brightness(0.93) contrast(1);
    transition: filter 560ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .site-footer {
    margin-top: 0;
    padding-top: 14px;
  }
}

@media (max-width: 1179px) and (min-width: 821px) {
  .method-step strong {
    font-size: clamp(29px, 3vw, 34px);
  }

  .method-step--two strong {
    font-size: clamp(27px, 2.8vw, 32px);
  }

  .method-step--three strong {
    font-size: clamp(25px, 2.55vw, 29px);
  }

  .method-step--one strong {
    font-size: clamp(23px, 2.72vw, 32px);
  }

  .closing-contact__header > div {
    grid-template-columns: minmax(0, 1.7fr) minmax(210px, 0.8fr);
  }

  .closing-contact__header h2 {
    font-size: clamp(36px, 3.8vw, 44px);
  }

  .studio-signoff__body {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .studio-signoff__mark {
    width: 210px;
  }
}

@media (max-width: 820px) {
  .closing-preview {
    padding: 0 16px 24px;
  }

  .closing-method,
  .closing-contact,
  .studio-signoff {
    box-sizing: border-box;
    border-top: 1px solid var(--closing-line);
  }

  .closing-method {
    padding: 52px 0 48px;
  }

  .closing-method__header h2 {
    margin: 16px 0 0;
    color: rgba(239, 247, 250, 0.82);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
  }

  .method-steps {
    display: block;
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
  }

  .method-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
    padding: 21px 0 22px;
    border-top: 1px solid var(--closing-line-soft);
  }

  .method-step > div {
    min-width: 0;
  }

  .method-step small {
    display: block;
    margin-bottom: 7px;
    color: rgba(228, 238, 242, 0.72);
    font-size: 15px;
    font-weight: 580;
    line-height: 1.35;
  }

  .method-step strong {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: rgba(247, 251, 252, 0.96);
    font-size: clamp(31px, 8.8vw, 38px);
    font-weight: 680;
    line-height: 1.08;
  }

  .method-step--one strong {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .method-step__statement span {
    white-space: nowrap;
  }

  .method-step__phrases {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0 0.38em;
  }

  .method-step__phrases span {
    white-space: nowrap;
  }

  .method-step--three strong {
    font-size: clamp(28px, 8vw, 34px);
  }

  .closing-method__meta {
    padding-top: 21px;
    border-top: 1px solid var(--closing-line-soft);
  }

  .closing-method__meta > p {
    margin: 0;
    color: var(--closing-muted);
    font-size: 13px;
    font-weight: 470;
    line-height: 1.7;
  }

  .closing-method__path {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin-top: 19px;
    color: rgba(230, 240, 243, 0.76);
    font-size: 13px;
    font-weight: 500;
  }

  .closing-method__path span {
    white-space: nowrap;
  }

  .closing-method__path i {
    color: var(--closing-faint);
    font-style: normal;
  }

  .closing-contact {
    margin-top: 48px;
    padding: 52px 0 46px;
  }

  .closing-contact__header h2 {
    display: flex;
    flex-direction: column;
    margin: 19px 0 0;
    color: rgba(247, 251, 252, 0.98);
    font-size: clamp(39px, 11vw, 47px);
    font-weight: 670;
    line-height: 1.02;
  }

  .closing-contact__header > div > p {
    margin: 18px 0 0;
    color: var(--closing-muted);
    font-size: 13px;
    font-weight: 470;
    line-height: 1.65;
  }

  .closing-contact__paths {
    margin-top: 28px;
    border-top: 1px solid var(--closing-line);
  }

  .closing-contact__path {
    padding: 23px 0 25px;
    border-bottom: 1px solid var(--closing-line-soft);
  }

  .closing-contact__path h3 {
    margin: 7px 0 10px;
    color: rgba(244, 249, 251, 0.94);
    font-size: 27px;
    font-weight: 590;
    line-height: 1.2;
  }

  .closing-contact__path > p:not(.closing-contact__en),
  .closing-contact__types {
    margin: 0;
    color: var(--closing-muted);
    font-size: 13px;
    font-weight: 470;
    line-height: 1.6;
  }

  .closing-contact__types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
  }

  .closing-contact .action-link {
    min-height: 36px;
    margin-top: 15px;
    padding: 0 13px;
    font-size: 12px;
  }

  .closing-contact__direct {
    border-bottom: 1px solid var(--closing-line-soft);
  }

  .closing-contact__direct > div {
    min-height: 65px;
    padding: 14px 0 13px;
    border-bottom: 1px solid var(--closing-line-soft);
  }

  .closing-contact__direct > div:last-child {
    border-bottom: 0;
  }

  .closing-contact__direct button,
  .closing-contact__direct a,
  .closing-contact__direct p {
    display: block;
    margin: 7px 0 0;
    padding: 0;
    border: 0;
    background: none;
    color: rgba(244, 249, 251, 0.94);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
    text-decoration: none;
  }

  .closing-contact__direct p {
    display: flex;
    flex-wrap: wrap;
    gap: 0 13px;
  }

  .closing-contact__direct p b {
    font: inherit;
    white-space: nowrap;
  }

  .closing-contact__direct .copy-hint {
    color: var(--closing-faint);
    font-size: 10px;
    font-weight: 470;
  }

  .studio-signoff {
    display: block;
    height: clamp(232px, 64vw, 270px);
    min-height: 0;
    margin-top: 36px;
    padding: 34px 0 0;
  }

  .studio-signoff__body {
    display: grid;
    height: calc(100% - 38px);
    grid-template-columns: minmax(0, 1fr) minmax(130px, 150px);
    gap: 18px;
    align-items: center;
  }

  .studio-signoff__identity p,
  .studio-signoff__identity h2 {
    margin: 0;
    text-transform: none;
  }

  .studio-signoff__english {
    color: rgba(229, 239, 243, 0.58) !important;
    font-size: 9px !important;
    font-weight: 520 !important;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }

  .studio-signoff__identity h2 {
    margin-top: 8px;
    color: rgba(245, 250, 252, 0.92);
    font-size: clamp(18px, 5.4vw, 22px);
    font-weight: 640;
    line-height: 1.18;
  }

  .studio-signoff__subtitle {
    margin-top: 7px !important;
    color: var(--closing-muted) !important;
    font-size: 11px !important;
    font-weight: 480 !important;
  }

  .studio-signoff__mark {
    position: relative;
    isolation: isolate;
    width: clamp(130px, 37vw, 150px);
    max-width: 100%;
    justify-self: end;
  }

  .studio-signoff__mark::before {
    content: "";
    position: absolute;
    inset: -16%;
    z-index: 0;
    opacity: 0.15;
    background:
      radial-gradient(ellipse 58% 50% at 44% 44%, rgba(220, 166, 65, 0.16), transparent 76%),
      radial-gradient(ellipse 62% 54% at 60% 62%, rgba(35, 115, 145, 0.11), transparent 78%);
    filter: blur(34px);
    pointer-events: none;
  }

  .studio-signoff .studio-signoff__base {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: saturate(0.76) brightness(0.93) contrast(1);
  }

  .site-footer {
    margin-top: 0;
    padding-top: 12px;
  }
}

html[data-motion="off"] .studio-signoff__mark::after,
html[data-motion-mode="off"] .studio-signoff__mark::after,
html[data-motion-mode="reduced"] .studio-signoff__mark::after,
html[data-pointer="touch"] .studio-signoff__mark::after {
  display: none;
}

html[data-motion="off"] .studio-signoff__mark::before,
html[data-motion-mode="off"] .studio-signoff__mark::before,
html[data-motion-mode="reduced"] .studio-signoff__mark::before,
html[data-pointer="touch"] .studio-signoff__mark::before {
  opacity: 0.15;
}

html[data-motion="off"] .studio-signoff__base,
html[data-motion-mode="off"] .studio-signoff__base,
html[data-motion-mode="reduced"] .studio-signoff__base,
html[data-pointer="touch"] .studio-signoff__base {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .studio-signoff__mark::before,
  .studio-signoff__mark::after,
  .studio-signoff__base {
    transition: none !important;
  }
}

/* Phase A: static composition correction */
@media (min-width: 821px) {
  .closing-preview {
    padding-bottom: 24px;
  }

  .closing-method {
    height: clamp(360px, 26.5vw, 400px);
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: clamp(34px, 2.8vw, 42px) 0 clamp(28px, 2.4vw, 36px);
  }

  .closing-method__header .closing-kicker {
    grid-column: 1 / 3;
  }

  .closing-method__header h2 {
    grid-column: 3 / 8;
    font-size: clamp(17px, 1.32vw, 20px);
  }

  .method-steps {
    position: relative;
    display: grid;
    min-height: 164px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: start;
    margin: clamp(18px, 1.7vw, 24px) 0 clamp(16px, 1.4vw, 21px);
  }

  .method-step {
    position: relative;
    display: block;
    align-self: start;
    padding: 0;
    border: 0;
  }

  .method-step--one {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    align-self: center;
  }

  .method-step--two {
    grid-column: 7 / 10;
    grid-row: 1;
    margin-top: 4px;
  }

  .method-step--three {
    grid-column: 9 / 13;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    width: 92%;
  }

  .method-step > div {
    display: block;
    margin: 0;
  }

  .method-step__index {
    position: absolute;
    top: 2px;
    left: 0;
    opacity: 0.72;
  }

  .method-step small {
    margin: 0 0 8px 29px;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 560;
  }

  .method-step strong,
  .method-step--one strong,
  .method-step--two strong,
  .method-step--three strong {
    display: flex;
    color: rgba(247, 251, 252, 0.96);
    font-weight: 660;
  }

  .method-step--one strong {
    flex-flow: row nowrap;
    font-size: clamp(43px, 3.65vw, 54px);
    line-height: 1.02;
  }

  .method-step--two strong {
    flex-flow: row wrap;
    max-width: 280px;
    gap: 0 0.34em;
    font-size: clamp(27px, 2.3vw, 34px);
    line-height: 1.08;
  }

  .method-step--three strong {
    flex-direction: column;
    font-size: clamp(23px, 1.85vw, 28px);
    line-height: 1.12;
  }

  .closing-method__meta {
    align-items: center;
    padding-top: clamp(14px, 1.3vw, 18px);
    border-top-color: var(--closing-line);
  }

  .closing-method__meta > p {
    grid-column: 1 / 7;
    max-width: 520px;
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.55;
  }

  .closing-method__path {
    grid-column: 7 / 13;
    gap: clamp(10px, 1vw, 15px);
    font-size: clamp(11px, 0.84vw, 13px);
  }

  .closing-contact {
    height: clamp(370px, 27vw, 400px);
    margin-top: clamp(32px, 2.7vw, 40px);
    padding: clamp(34px, 2.7vw, 40px) 0 clamp(24px, 2vw, 30px);
  }

  .closing-contact__main {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(16px, 1.45vw, 22px);
    align-items: start;
  }

  .closing-contact__header {
    grid-column: 1 / 5;
    display: block;
  }

  .closing-contact__header > .closing-kicker,
  .closing-contact__header > div {
    display: block;
  }

  .closing-contact__header > div {
    margin-top: clamp(18px, 1.7vw, 24px);
  }

  .closing-contact__header h2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: clamp(38px, 3.1vw, 47px);
    line-height: 1.02;
    white-space: normal;
  }

  .closing-contact__header > div > p {
    max-width: 330px;
    margin-top: clamp(15px, 1.35vw, 20px);
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.7;
  }

  .closing-contact__path {
    position: relative;
    min-width: 0;
    padding: clamp(20px, 1.75vw, 26px) 0 0;
    border: 0 !important;
  }

  .closing-contact__path:nth-child(2) {
    grid-column: 6 / 9;
  }

  .closing-contact__path:nth-child(3) {
    grid-column: 10 / 13;
  }

  .closing-contact__path::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 1px;
    background: var(--closing-line);
  }

  .closing-contact__path h3 {
    margin: 8px 0 12px;
    font-size: clamp(24px, 1.85vw, 28px);
  }

  .closing-contact__path > p:not(.closing-contact__en),
  .closing-contact__types {
    min-height: 0;
    font-size: clamp(12px, 0.86vw, 13px);
    line-height: 1.62;
  }

  .closing-contact__types {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .closing-contact .action-link {
    min-height: 32px;
    margin-top: 17px;
  }

  .closing-contact__direct {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1.55fr 1.05fr 1.35fr;
    gap: clamp(20px, 2.2vw, 34px);
    margin-top: clamp(26px, 2.15vw, 32px);
    border-top: 1px solid var(--closing-line);
    border-bottom: 0;
  }

  .closing-contact__direct > div {
    position: relative;
    min-height: 58px;
    padding: 13px 0 0;
    border: 0 !important;
  }

  .closing-contact__direct > div + div::before {
    content: "";
    position: absolute;
    top: 16px;
    left: calc(clamp(20px, 2.2vw, 34px) / -2);
    width: 1px;
    height: 24px;
    background: var(--closing-line-soft);
  }

  .closing-contact__direct button,
  .closing-contact__direct a,
  .closing-contact__direct p {
    margin-top: 6px;
    font-size: clamp(12px, 0.86vw, 13px);
  }

  .studio-signoff {
    display: grid;
    height: clamp(280px, 20vw, 310px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 50px;
    gap: 0;
    margin-top: clamp(24px, 2.2vw, 34px);
    padding: 0;
  }

  .studio-signoff__body {
    display: grid;
    height: auto;
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 216px);
    align-self: stretch;
    gap: clamp(28px, 3vw, 48px);
    align-items: center;
    padding-top: 8px;
  }

  .studio-signoff__identity {
    align-self: center;
    transform: translateY(-6px);
  }

  .studio-signoff__mark {
    width: clamp(200px, 11.2vw, 216px);
    align-self: center;
    transform: translateY(-11px);
  }

  .studio-signoff__mark::before {
    opacity: 0.1;
  }

  .studio-signoff__mark::after {
    display: none;
  }

  .studio-signoff .studio-signoff__base {
    filter: saturate(0.88) brightness(0.97) contrast(1.02);
    transition: filter 480ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .site-footer {
    display: grid;
    min-height: 50px;
    grid-column: 1;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--closing-line-soft);
  }
}

@media (min-width: 821px) and (max-width: 1179px) {
  .closing-method {
    height: clamp(420px, 44vw, 480px);
    padding: 40px 0 34px;
  }

  .closing-method__header .closing-kicker {
    grid-column: 1 / 4;
  }

  .closing-method__header h2 {
    grid-column: 4 / 10;
  }

  .method-steps {
    min-height: 218px;
    margin: 24px 0 19px;
  }

  .method-step--one {
    grid-column: 1 / 8;
    grid-row: 1;
    align-self: start;
  }

  .method-step--two {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .method-step--three {
    grid-column: 6 / 13;
    grid-row: 2;
    width: 72%;
  }

  .method-step--one strong {
    font-size: clamp(36px, 4.1vw, 42px);
  }

  .method-step--two strong {
    max-width: none;
    font-size: clamp(27px, 3vw, 31px);
  }

  .method-step--three strong {
    font-size: clamp(23px, 2.55vw, 27px);
  }

  .closing-contact {
    height: clamp(440px, 46vw, 500px);
    padding: 40px 0 30px;
  }

  .closing-contact__header {
    grid-column: 1 / 5;
  }

  .closing-contact__header h2 {
    font-size: clamp(34px, 3.8vw, 40px);
  }

  .closing-contact__path:nth-child(2) {
    grid-column: 6 / 9;
  }

  .closing-contact__path:nth-child(3) {
    grid-column: 10 / 13;
  }

  .closing-contact__direct {
    gap: 18px;
  }

  .closing-contact__direct > div + div::before {
    left: -9px;
  }

  .studio-signoff__body {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .studio-signoff__mark {
    width: 200px;
  }
}

@media (max-width: 820px) {
  .closing-preview {
    padding-bottom: 20px;
  }

  .closing-method {
    padding: 42px 0 36px;
  }

  .closing-method__header h2 {
    margin-top: 14px;
    font-size: 19px;
  }

  .method-steps {
    display: block;
    margin: 34px 0 30px;
  }

  .method-step {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
  }

  .method-step--one {
    margin: 0 0 42px;
  }

  .method-step--two {
    margin: 0 0 40px 30px;
  }

  .method-step--three {
    width: calc(100% - 62px);
    margin-left: 62px;
  }

  .method-step > div {
    display: block;
    margin: 0;
  }

  .method-step__index {
    position: absolute;
    top: 2px;
    left: 0;
    opacity: 0.7;
  }

  .method-step small {
    margin: 0 0 8px 30px;
    font-size: 14px;
  }

  .method-step strong,
  .method-step--one strong,
  .method-step--two strong,
  .method-step--three strong {
    display: flex;
    font-weight: 660;
  }

  .method-step--one strong {
    flex-flow: row nowrap;
    font-size: clamp(38px, 10.3vw, 42px);
    line-height: 1.04;
  }

  .method-step--two strong {
    flex-flow: row wrap;
    gap: 0 0.32em;
    font-size: clamp(30px, 8.35vw, 34px);
    line-height: 1.07;
  }

  .method-step--three strong {
    flex-direction: column;
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1.12;
  }

  .closing-method__meta {
    padding-top: 20px;
  }

  .closing-method__meta > p {
    font-size: 12px;
    line-height: 1.65;
  }

  .closing-method__path {
    margin-top: 16px;
    gap: 7px 10px;
    font-size: 12px;
  }

  .closing-contact {
    margin-top: 32px;
    padding: 36px 0 28px;
  }

  .closing-contact__main {
    display: block;
  }

  .closing-contact__header {
    display: block;
  }

  .closing-contact__header h2 {
    margin-top: 17px;
    font-size: clamp(38px, 10.6vw, 44px);
    line-height: 1.02;
  }

  .closing-contact__header > div > p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.7;
  }

  .closing-contact__path {
    position: relative;
    margin-top: 26px;
    padding: 16px 0 0;
    border: 0;
  }

  .closing-contact__path::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 1px;
    background: var(--closing-line);
  }

  .closing-contact__path h3 {
    margin: 7px 0 10px;
    font-size: 25px;
  }

  .closing-contact__types {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .closing-contact .action-link {
    margin-top: 12px;
  }

  .closing-contact__direct {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--closing-line);
    border-bottom: 0;
  }

  .closing-contact__direct > div {
    min-height: 58px;
    padding: 0;
    border: 0;
  }

  .closing-contact__direct button,
  .closing-contact__direct a,
  .closing-contact__direct p {
    font-size: 12px;
  }

  .studio-signoff {
    display: grid;
    height: clamp(280px, 76vw, 300px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 46px;
    gap: 0;
    margin-top: 28px;
    padding: 0;
  }

  .studio-signoff__body {
    display: grid;
    height: auto;
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr) minmax(130px, 145px);
    align-self: stretch;
    gap: clamp(24px, 7vw, 30px);
    align-items: center;
    padding-top: 8px;
  }

  .studio-signoff__identity {
    transform: translateY(-6px);
  }

  .studio-signoff__mark {
    width: clamp(130px, 36vw, 145px);
    transform: translateY(-10px);
  }

  .studio-signoff__mark::before {
    opacity: 0.08;
  }

  .studio-signoff__mark::after {
    display: none;
  }

  .studio-signoff .studio-signoff__base {
    filter: saturate(0.88) brightness(0.97) contrast(1.02);
  }

  .site-footer {
    display: grid;
    min-height: 46px;
    grid-column: 1;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--closing-line-soft);
  }

  .studio-signoff .site-footer span:nth-child(2) {
    display: block;
  }
}

@media (max-width: 370px) {
  .method-step--one strong {
    font-size: 36px;
  }

  .method-step--three {
    width: calc(100% - 46px);
    margin-left: 46px;
  }

  .studio-signoff__body {
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 18px;
  }

  .studio-signoff__mark {
    width: 130px;
  }
}

/* Phase A.2: Method reading path and mobile center-of-gravity correction */
@media (min-width: 1180px) {
  .closing-method {
    height: clamp(358px, 25.8vw, 384px);
  }

  .closing-method__header .closing-kicker {
    grid-column: 1 / 3;
  }

  .closing-method__header h2 {
    grid-column: 3 / 7;
  }

  .method-steps {
    min-height: 168px;
    margin: clamp(17px, 1.5vw, 22px) 0 clamp(15px, 1.25vw, 19px);
  }

  .method-step--one {
    grid-column: 2 / 7;
    grid-row: 1 / 3;
    align-self: center;
  }

  .method-step--two {
    grid-column: 7 / 11;
    grid-row: 1;
    margin-top: 8px;
  }

  .method-step--three {
    grid-column: 7 / 12;
    grid-row: 2;
    align-self: end;
    justify-self: start;
    width: 78%;
    margin-left: clamp(34px, 3vw, 48px);
  }

  .method-step--one strong {
    font-size: clamp(42px, 3.2vw, 48px);
    font-weight: 650;
  }

  .method-step--two strong {
    max-width: none;
    font-size: clamp(28px, 2.15vw, 32px);
    font-weight: 640;
  }

  .method-step--three strong {
    font-size: clamp(23px, 1.75vw, 27px);
    font-weight: 630;
  }

  .closing-method__meta > p {
    grid-column: 2 / 7;
  }

  .closing-method__path {
    grid-column: 7 / 12;
    justify-content: flex-start;
  }
}

@media (min-width: 821px) and (max-width: 1179px) {
  .closing-method__header .closing-kicker {
    grid-column: 1 / 3;
  }

  .closing-method__header h2 {
    grid-column: 3 / 8;
  }

  .method-step--one {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    align-self: center;
  }

  .method-step--two {
    grid-column: 7 / 13;
    grid-row: 1;
  }

  .method-step--three {
    grid-column: 7 / 13;
    grid-row: 2;
    justify-self: start;
    width: 78%;
    margin-left: 30px;
  }

  .method-step--one strong {
    font-size: clamp(36px, 3.9vw, 40px);
    font-weight: 650;
  }

  .method-step--two strong {
    font-size: clamp(27px, 2.9vw, 30px);
    font-weight: 640;
  }

  .method-step--three strong {
    font-size: clamp(23px, 2.45vw, 26px);
    font-weight: 630;
  }

  .closing-method__meta > p {
    grid-column: 1 / 7;
  }

  .closing-method__path {
    grid-column: 7 / 13;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .closing-method,
  .closing-contact,
  .studio-signoff {
    width: min(calc(100% - 28px), 332px);
    margin-right: auto;
    margin-left: auto;
  }

  .method-step--two {
    margin-left: 24px;
  }

  .method-step--three {
    width: calc(100% - 48px);
    margin-left: 48px;
  }

  .method-step--one strong {
    font-size: clamp(36px, 9.6vw, 40px);
    font-weight: 650;
  }

  .method-step--two strong {
    font-size: clamp(29px, 7.9vw, 33px);
    font-weight: 640;
  }

  .method-step--three strong {
    font-size: clamp(25px, 6.9vw, 29px);
    font-weight: 630;
  }

  .closing-contact__header {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
  }

  .closing-contact__path:nth-child(2) {
    width: 90%;
    margin-left: 5%;
  }

  .closing-contact__path:nth-child(3) {
    width: 88%;
    margin-left: 12%;
  }

  .closing-contact__direct {
    width: 96%;
    margin-right: 2%;
    margin-left: 2%;
  }

  .studio-signoff__body {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 140px);
    gap: 18px;
  }

  .studio-signoff__mark {
    width: clamp(132px, 34vw, 140px);
  }
}

@media (max-width: 370px) {
  .method-step--one strong {
    font-size: 36px;
  }

  .studio-signoff__body {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 16px;
  }

  .studio-signoff__mark {
    width: 132px;
  }
}

/* Phase A.3: content-driven Contact ending and locked Studio color states */
@media (min-width: 1180px) {
  .closing-contact {
    height: auto;
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--closing-line);
  }

  .closing-contact__direct {
    margin-top: 20px;
  }

  .closing-contact__direct > div {
    min-height: 0;
    padding-bottom: 7px;
  }

  .studio-signoff {
    margin-top: clamp(24px, 2vw, 32px);
    border-top: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .studio-signoff .studio-signoff__base {
    opacity: 1;
    filter: saturate(0.64) brightness(0.92) contrast(0.99);
    transition: filter 580ms cubic-bezier(0.22, 0.72, 0.2, 1);
  }

  .studio-signoff__mark::before {
    display: block;
    opacity: 0.12;
  }

  .studio-signoff__mark::after {
    display: block;
    opacity: 0;
  }

  .studio-signoff__mark:hover::before {
    opacity: 0.8;
  }

  .studio-signoff__mark:hover::after {
    opacity: 0.66;
  }

  .studio-signoff__mark:hover .studio-signoff__base {
    filter:
      saturate(1.06)
      brightness(1.035)
      contrast(1.04)
      drop-shadow(0 0 16px rgba(225, 176, 72, 0.14))
      drop-shadow(0 0 24px rgba(40, 118, 145, 0.09));
    transition-duration: 520ms;
  }

  .studio-signoff__mark:not(:hover) .studio-signoff__base {
    transition-duration: 760ms;
  }
}

@media (hover: none), (pointer: coarse) {
  .studio-signoff__mark,
  .studio-signoff__mark:hover,
  .studio-signoff__mark:active,
  .studio-signoff__mark:focus,
  .studio-signoff__mark:focus-visible,
  .studio-signoff__mark:focus-within {
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }

  .studio-signoff .studio-signoff__base,
  .studio-signoff__mark:hover .studio-signoff__base,
  .studio-signoff__mark:active .studio-signoff__base,
  .studio-signoff__mark:focus .studio-signoff__base,
  .studio-signoff__mark:focus-visible .studio-signoff__base,
  .studio-signoff__mark:focus-within .studio-signoff__base,
  .studio-signoff__base:hover,
  .studio-signoff__base:active,
  .studio-signoff__base:focus,
  .studio-signoff__base:focus-visible {
    opacity: 1;
    filter: saturate(1) brightness(1) contrast(1) !important;
    transition: none !important;
  }

  .studio-signoff__mark::before,
  .studio-signoff__mark::after,
  .studio-signoff__mark:hover::before,
  .studio-signoff__mark:hover::after,
  .studio-signoff__mark:active::before,
  .studio-signoff__mark:active::after,
  .studio-signoff__mark:focus-within::before,
  .studio-signoff__mark:focus-within::after {
    display: none !important;
    opacity: 0 !important;
  }
}

@media (max-width: 820px) {
  .studio-signoff .studio-signoff__base {
    opacity: 1;
    filter: saturate(1) brightness(1) contrast(1) !important;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 820px) {
  .editorial-frame.editorial-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .editorial-frame.editorial-reveal picture {
    opacity: 0;
    transition: opacity 190ms ease;
  }

  .editorial-frame.editorial-reveal picture.is-media-ready {
    opacity: 1;
  }
}


/* Production responsive image wrappers preserve the frozen image boxes. */
.hero-portrait picture,
.mobile-identity__portrait picture,
.mobile-preview picture {
  display: block;
  width: 100%;
  height: 100%;
}
