:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-soft: rgba(0, 0, 0, 0.58);
  --color-border: rgba(0, 0, 0, 0.07);
  --color-surface: rgba(255, 255, 255, 0.82);
  --color-dark: #010120;
  --color-dark-border: rgba(255, 255, 255, 0.12);
  --color-lavender: #bdbbff;
  --color-magenta: #ef2cc1;
  --color-orange: #fc4c02;
  --shadow-soft: 0 24px 80px rgba(1, 1, 32, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --desktop-min-width: 1280px;
  --container-min: 1184px;
  --container: min(1480px, calc(100vw - 96px));
  --font-display: "The Future", "Avenir Next", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "PP Neue Montreal Mono", "IBM Plex Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: var(--desktop-min-width);
  background:
    radial-gradient(circle at top left, rgba(239, 44, 193, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(189, 187, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fcfcff 100%);
  color: var(--color-text);
  font-family: var(--font-display);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p,
li {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.16px;
}

.container {
  width: var(--container);
  min-width: var(--container-min);
  margin: 0 auto;
}

.page-shell {
  min-width: var(--desktop-min-width);
  overflow: clip;
  overflow-x: auto;
}

.home-page {
  background:
    linear-gradient(180deg, rgba(247, 244, 245, 0.9) 0%, #ffffff 12%, #fcfcff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  min-width: max-content;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "name name"
    "en slogan";
  align-items: end;
  column-gap: 14px;
  row-gap: 2px;
}

.brand-copy strong {
  grid-area: name;
  font-family: "STXinwei", "华文新魏", "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-rendering: optimizeLegibility;
}

.brand-copy > span {
  grid-area: en;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.brand-slogan {
  grid-area: slogan;
  justify-self: end;
  align-self: end;
  margin: 0;
  padding-bottom: 2px;
  font-size: 20px;
  line-height: 1.02;
  font-family: "STXingkai", "华文行楷", "STKaiti", "KaiTi", "STSong", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.07em;
  white-space: nowrap;
  background: linear-gradient(92deg, rgba(72, 112, 198, 0.84) 0%, rgba(128, 109, 184, 0.62) 52%, rgba(226, 172, 99, 0.34) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.94;
  text-shadow: 0 6px 16px rgba(122, 136, 181, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0;
  flex: 0 0 auto;
}

.site-nav > * {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.12px;
  white-space: nowrap;
  transition: opacity 160ms ease;
}

.site-nav-link.nav-home-link {
  padding-left: 0;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.76);
}

.site-nav > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.site-nav-link:hover {
  opacity: 0.62;
}

.site-nav-link.is-active {
  font-weight: 600;
}

.site-nav-link.is-active::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -14px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(1, 1, 32, 0.8), rgba(111, 145, 232, 0.4));
}

.site-nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.site-subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 25;
  display: grid;
  gap: 4px;
  min-width: 188px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px rgba(10, 22, 52, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-subnav a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.78);
  transition: background-color 160ms ease, color 160ms ease;
}

.site-subnav a:hover {
  background: rgba(108, 132, 186, 0.1);
  color: rgba(0, 0, 0, 0.96);
}

.site-nav-group:hover .site-subnav,
.site-nav-group:focus-within .site-subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hero-section,
.sub-hero {
  position: relative;
}

.hero-section {
  padding: 54px 0 30px;
}

.hero-home-grid,
.sub-hero-grid,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.hero-gradient {
  position: absolute;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  filter: blur(14px);
}

.hero-gradient-left {
  top: -8vw;
  left: -10vw;
  background:
    radial-gradient(circle at 40% 40%, rgba(239, 44, 193, 0.22), transparent 38%),
    radial-gradient(circle at 62% 48%, rgba(189, 187, 255, 0.38), transparent 30%);
}

.hero-gradient-right {
  top: 8vw;
  right: -12vw;
  background:
    radial-gradient(circle at 30% 35%, rgba(252, 76, 2, 0.16), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(189, 187, 255, 0.32), transparent 30%);
}

.eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.sub-hero-title,
.entry-copy h3,
.service-card h3,
.feature-card h3,
.contact-copy h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -1.3px;
  white-space: nowrap;
}

.hero-copy h1,
.sub-hero-title {
  max-width: none;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.14;
}

.hero-home .hero-copy h1 {
  white-space: nowrap;
}

.sub-hero {
  padding: 84px 0 20px;
}

.sub-hero-page {
  padding: 46px 0 10px;
}

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

.mobile-page-panel {
  display: grid;
  gap: 14px;
}

.mobile-page-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 21, 40, 0.48);
}

.mobile-page-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mobile-page-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(13, 21, 40, 0.66);
}

.mobile-page-tags,
.mobile-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-page-tags span,
.mobile-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
}

.mobile-page-tags span,
.mobile-anchor-nav a {
  border: 1px solid rgba(13, 21, 40, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
  color: rgba(13, 21, 40, 0.72);
  white-space: nowrap;
}

.sub-hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(111, 145, 232, 0.08), rgba(239, 44, 193, 0.03));
  box-shadow: var(--shadow-soft);
}

.sub-hero-panel::before,
.module-gallery::before,
.footer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(111, 145, 232, 0), rgba(111, 145, 232, 0.42), rgba(239, 44, 193, 0.18), rgba(111, 145, 232, 0));
  pointer-events: none;
}

.sub-hero-panel-text {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
  padding: 32px 34px;
  overflow: hidden;
  border-color: rgba(83, 111, 174, 0.16);
  background:
    radial-gradient(circle at 82% 18%, rgba(111, 145, 232, 0.2), transparent 22%),
    radial-gradient(circle at 92% 78%, rgba(239, 44, 193, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(248, 250, 255, 0.98) 0%, rgba(236, 242, 252, 0.96) 54%, rgba(255, 244, 248, 0.94) 100%);
}

.sub-hero-panel-text::after {
  display: none;
}

.sub-hero-copy {
  align-self: start;
  position: relative;
  z-index: 1;
}

.sub-hero-copy-wide {
  max-width: none;
  width: 100%;
}

.sub-hero-title {
  max-width: none;
  font-size: clamp(26px, 3vw, 34px);
}

.sub-hero-copy-wide .sub-hero-title {
  max-width: none;
  font-size: clamp(21px, 1.75vw, 24px);
  letter-spacing: -0.42px;
  white-space: nowrap;
}

.sub-hero-copy-wide .sub-hero-text {
  max-width: none;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
  white-space: nowrap;
}

.hero-text,
.sub-hero-text,
.contact-copy p,
.service-card p,
.feature-card p {
  margin: 14px 0 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.42;
  letter-spacing: -0.14px;
  color: var(--color-text-soft);
}

.sub-hero-kicker {
  margin: -6px 0 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.44);
}

.sub-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sub-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 244, 251, 0.66));
  box-shadow: 0 10px 22px rgba(42, 58, 96, 0.08);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.82);
  white-space: nowrap;
}

.sub-hero-art {
  position: relative;
  min-height: 176px;
  z-index: 1;
}

.sub-hero-art-circle,
.sub-hero-art-square,
.sub-hero-art-grid {
  position: absolute;
}

.sub-hero-art-circle {
  top: 10px;
  right: 14px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(38, 60, 107, 0.18);
  border-radius: 50%;
}

.sub-hero-art-circle::before,
.sub-hero-art-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.sub-hero-art-circle::before {
  inset: 18px;
  border: 1px dashed rgba(38, 60, 107, 0.22);
}

.sub-hero-art-circle::after {
  top: 28px;
  left: 28px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, rgba(111, 145, 232, 0.22), rgba(239, 44, 193, 0.14));
}

.sub-hero-art-square {
  left: 10px;
  bottom: 12px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(38, 60, 107, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(111, 145, 232, 0.14), rgba(239, 44, 193, 0.08));
  backdrop-filter: blur(6px);
}

.sub-hero-art-grid {
  right: 0;
  bottom: 24px;
  width: 164px;
  height: 60px;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(38, 60, 107, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 60, 107, 0.24) 1px, transparent 1px);
  background-size: 12px 12px;
}

.hero-theme-about {
  background:
    radial-gradient(circle at 86% 16%, rgba(111, 145, 232, 0.22), transparent 21%),
    linear-gradient(135deg, rgba(248, 250, 255, 0.98) 0%, rgba(239, 244, 252, 0.98) 58%, rgba(252, 246, 249, 0.95) 100%);
}

.hero-theme-services {
  background:
    radial-gradient(circle at 88% 18%, rgba(67, 154, 128, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(247, 250, 252, 0.98) 0%, rgba(236, 245, 243, 0.98) 56%, rgba(246, 249, 255, 0.95) 100%);
}

.hero-theme-cases {
  background:
    radial-gradient(circle at 86% 18%, rgba(240, 170, 70, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(251, 249, 244, 0.98) 0%, rgba(247, 242, 232, 0.96) 54%, rgba(245, 247, 251, 0.95) 100%);
}

.hero-theme-resources {
  background:
    radial-gradient(circle at 86% 18%, rgba(132, 120, 236, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(247, 249, 255, 0.98) 0%, rgba(237, 241, 252, 0.98) 52%, rgba(246, 244, 252, 0.95) 100%);
}

.hero-art-about .sub-hero-art-circle {
  border-radius: 30px;
}

.hero-art-about .sub-hero-art-circle::before {
  border-style: solid;
  border-radius: 24px;
}

.hero-art-about .sub-hero-art-square {
  transform: rotate(-8deg);
}

.hero-art-about .sub-hero-art-square::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1px solid rgba(38, 60, 107, 0.12);
  border-radius: 16px;
}

.hero-art-about .sub-hero-art-grid {
  height: 48px;
  opacity: 0.3;
}

.hero-art-services .sub-hero-art-circle {
  top: 14px;
  right: 8px;
  width: 164px;
  height: 92px;
  border-radius: 24px;
}

.hero-art-services .sub-hero-art-circle::before {
  inset: 18px 22px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(38, 60, 107, 0.3) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(38, 60, 107, 0.3) 0 4px, transparent 5px),
    radial-gradient(circle at 100% 50%, rgba(38, 60, 107, 0.3) 0 4px, transparent 5px),
    linear-gradient(rgba(38, 60, 107, 0.18), rgba(38, 60, 107, 0.18)) center/100% 1px no-repeat;
}

.hero-art-services .sub-hero-art-circle::after {
  top: auto;
  left: 22px;
  bottom: 18px;
  width: 120px;
  height: 20px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(67, 154, 128, 0.18), rgba(67, 154, 128, 0.18)) 0 0/28px 3px no-repeat,
    linear-gradient(90deg, rgba(111, 145, 232, 0.22), rgba(111, 145, 232, 0.22)) 46px 0/34px 3px no-repeat,
    linear-gradient(90deg, rgba(239, 44, 193, 0.18), rgba(239, 44, 193, 0.18)) 96px 0/24px 3px no-repeat;
}

.hero-art-services .sub-hero-art-square {
  left: 20px;
  bottom: 8px;
  width: 86px;
  height: 54px;
  border-radius: 18px;
}

.hero-art-services .sub-hero-art-grid {
  width: 170px;
  height: 44px;
  background-image:
    linear-gradient(90deg, rgba(38, 60, 107, 0.12) 20%, transparent 20% 40%, rgba(38, 60, 107, 0.12) 40% 60%, transparent 60% 80%, rgba(38, 60, 107, 0.12) 80%),
    linear-gradient(rgba(38, 60, 107, 0.14) 1px, transparent 1px);
  background-size: 100% 100%, 12px 12px;
}

.hero-art-cases .sub-hero-art-circle {
  top: 8px;
  right: 18px;
  width: 142px;
  height: 142px;
  border-radius: 28px;
  transform: rotate(4deg);
}

.hero-art-cases .sub-hero-art-circle::before {
  inset: 16px;
  border-style: solid;
  border-radius: 20px;
}

.hero-art-cases .sub-hero-art-circle::after {
  top: auto;
  left: 18px;
  bottom: 18px;
  width: 84px;
  height: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(240, 170, 70, 0.3), rgba(111, 145, 232, 0.14));
}

.hero-art-cases .sub-hero-art-square {
  left: 8px;
  bottom: 14px;
  width: 78px;
  height: 98px;
  border-radius: 18px;
  transform: rotate(-6deg);
}

.hero-art-cases .sub-hero-art-grid {
  right: 8px;
  bottom: 10px;
  width: 168px;
  height: 36px;
  background-image:
    radial-gradient(circle, rgba(38, 60, 107, 0.18) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(240, 170, 70, 0.14), rgba(240, 170, 70, 0));
  background-size: 10px 10px, 100% 100%;
}

.hero-art-resources .sub-hero-art-circle {
  border-radius: 50%;
}

.hero-art-resources .sub-hero-art-circle::before {
  inset: 20px;
  border-style: solid;
  border-color: rgba(38, 60, 107, 0.18) transparent transparent transparent;
}

.hero-art-resources .sub-hero-art-circle::after {
  top: auto;
  left: 32px;
  bottom: 26px;
  width: 84px;
  height: 48px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(132, 120, 236, 0.22) 0 12%, transparent 12% 22%, rgba(132, 120, 236, 0.22) 22% 34%, transparent 34% 44%, rgba(132, 120, 236, 0.22) 44% 60%, transparent 60% 70%, rgba(132, 120, 236, 0.22) 70% 86%, transparent 86%);
}

.hero-art-resources .sub-hero-art-square {
  left: 14px;
  bottom: 12px;
  width: 96px;
  height: 36px;
  border-radius: 16px;
}

.hero-art-resources .sub-hero-art-grid {
  width: 170px;
  height: 52px;
  background-image:
    linear-gradient(90deg, rgba(38, 60, 107, 0.16) 0 8%, transparent 8% 16%, rgba(38, 60, 107, 0.16) 16% 28%, transparent 28% 38%, rgba(38, 60, 107, 0.16) 38% 52%, transparent 52% 62%, rgba(38, 60, 107, 0.16) 62% 74%, transparent 74% 84%, rgba(38, 60, 107, 0.16) 84%),
    linear-gradient(180deg, rgba(132, 120, 236, 0.12), rgba(132, 120, 236, 0));
  background-size: 100% 100%, 100% 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  letter-spacing: -0.16px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.jump-card:hover,
.entry-card:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--color-dark);
  color: #ffffff;
  border-color: var(--color-dark);
}

.button-light {
  background: rgba(255, 255, 255, 0.78);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  grid-auto-rows: 162px;
}

.mosaic-card,
.sub-hero-image,
.gallery-photo,
.focus-card,
.entry-card {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.mosaic-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
}

.sub-hero-image {
  min-height: 360px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
}

.sub-hero-image img {
  object-position: center;
}

.mosaic-tall {
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 2;
}

.section-space {
  padding: 74px 0;
}

.layout-hero {
  padding: 6px 0 10px;
}

.layout-board {
  padding: 8px 0 0;
}

.layout-board-header {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 18px;
}

.layout-board-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.34);
}

.layout-board-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.layout-board-title strong {
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.68);
}

.layout-board-line {
  position: relative;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(108, 132, 186, 0.12), rgba(108, 132, 186, 0.46), rgba(108, 132, 186, 0.12));
}

.layout-board-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(108, 132, 186, 0.4);
  transform: translateY(-50%);
}

.layout-main-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.layout-main-card,
.layout-sub-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.layout-main-card::before,
.entry-card::before,
.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 1;
}

.layout-main-card {
  min-height: 262px;
}

.layout-main-card::after,
.layout-sub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 1, 32, 0.34) 0%, rgba(1, 1, 32, 0.04) 34%, rgba(1, 1, 32, 0.7) 100%);
}

.layout-main-card:nth-child(1) img {
  object-position: center 34%;
}

.layout-main-card:nth-child(2) img {
  object-position: center 44%;
}

.layout-main-card:nth-child(3) img {
  object-position: center 42%;
}

.layout-main-card:nth-child(4) img {
  object-position: center 28%;
}

.layout-card-copy {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  color: #ffffff;
}

.layout-card-copy span {
  display: inline-block;
  margin-bottom: 0;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.layout-card-copy strong {
  display: block;
  margin-top: auto;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.layout-card-copy p {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.layout-sub-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.layout-sub-card {
  min-height: 164px;
}

.layout-sub-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: -0.12px;
}

.section-tight {
  padding-top: 0;
}

.section-compact {
  padding-top: 8px;
  padding-bottom: 22px;
}

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

.stat-card,
.service-card,
.feature-card,
.contact-card,
.jump-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stat-card strong {
  display: block;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.96px;
  font-weight: 500;
}

.stat-card span {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.section-heading-wide {
  max-width: none;
  margin-bottom: 12px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.section-heading-signature {
  margin-bottom: 12px;
}

.section-heading-signature .eyebrow {
  display: none;
}

.section-heading-signature h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  font-family: "Avenir Next", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.32px;
}

.section-heading-signature h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 1, 32, 0.72), rgba(1, 1, 32, 0.16));
}

.section-heading-signature h2::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(1, 1, 32, 0.26);
  border-radius: 50%;
}

.contact-copy h2 {
  margin-bottom: 0;
}

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

.entry-card {
  position: relative;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(1, 1, 32, 0.72) 100%);
}

.entry-copy,
.card-label-overlay {
  position: absolute;
  z-index: 1;
}

.card-label,
.card-label-overlay {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-label {
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.04);
}

.card-label-overlay {
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.entry-copy {
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
}

.entry-copy h3 {
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -0.5px;
}

.entry-copy p {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.category-strip,
.feature-grid,
.service-grid,
.gallery-grid,
.link-stack {
  display: grid;
  gap: 12px;
}

.category-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.focus-card {
  position: relative;
  aspect-ratio: 0.9;
  box-shadow: var(--shadow-soft);
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(1, 1, 32, 0.74) 100%);
}

.focus-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: -0.2px;
}

.feature-grid,
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card {
  padding: 28px;
}

.service-card h3,
.feature-card h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.32px;
}

.gallery-grid {
  margin-top: 18px;
}

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

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

.gallery-grid-featured {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
}

.gallery-photo {
  position: relative;
  aspect-ratio: 1.06;
  box-shadow: var(--shadow-soft);
}

.gallery-photo-large {
  aspect-ratio: 1.02;
}

.module-section,
.case-gallery-section {
  scroll-margin-top: 120px;
}

.module-section + .module-section,
.case-gallery-section + .case-gallery-section {
  margin-top: 40px;
}

.module-copy {
  display: grid;
  gap: 6px;
  max-width: none;
}

.module-text {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.46;
  letter-spacing: -0.14px;
  text-align: justify;
  text-justify: inter-ideograph;
  color: var(--color-text-soft);
  white-space: nowrap;
}

.module-gallery {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(246, 249, 253, 0.92), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(111, 145, 232, 0.05), rgba(239, 44, 193, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.module-gallery .gallery-photo {
  aspect-ratio: 0.82;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.partner-section {
  padding-top: 0;
}

.home-partner-section {
  padding-top: 18px;
}

.advantage-section {
  padding-top: 22px;
  padding-bottom: 10px;
}

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

.advantage-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 136px;
  padding: 18px 18px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.advantage-card > * {
  position: relative;
  z-index: 1;
}

.advantage-graphic {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 96px;
  height: 96px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
}

.advantage-card-service .advantage-graphic,
.advantage-card-coverage .advantage-graphic,
.advantage-card-delivery .advantage-graphic {
  top: 18px;
  right: 14px;
  width: 100px;
  height: 76px;
}

.advantage-graphic-ring,
.advantage-graphic-core,
.advantage-graphic-module {
  fill: none;
  stroke: rgba(1, 1, 32, 0.14);
  stroke-width: 1.5;
}

.advantage-graphic-line,
.advantage-graphic-detail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-graphic-line {
  stroke: rgba(1, 1, 32, 0.24);
  stroke-width: 2;
}

.advantage-graphic-detail {
  stroke: rgba(1, 1, 32, 0.16);
  stroke-width: 1.5;
}

.advantage-graphic-point {
  fill: rgba(1, 1, 32, 0.18);
}

.advantage-card-years .advantage-graphic {
  opacity: 0.72;
}

.advantage-card-service .advantage-graphic,
.advantage-card-delivery .advantage-graphic {
  opacity: 0.88;
}

.advantage-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  font-weight: 700;
}

.advantage-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-soft);
}

.section-heading-inline {
  margin-bottom: 14px;
}

.partner-marquee {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 6px 0 0;
}

.partner-row {
  display: flex;
  gap: 12px;
  overflow: hidden;
  width: 100%;
}

.partner-track {
  display: flex;
  gap: 12px;
  width: max-content;
  flex: 0 0 auto;
  animation: partner-scroll var(--partner-duration, 180s) linear infinite;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 72px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
}

.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-section {
  padding-top: 6px;
}

.contact-shell {
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 32px;
  background: var(--color-dark);
  color: #ffffff;
  border-color: var(--color-dark);
}

.card-label-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-dark-border);
  color: #ffffff;
}

.contact-card a {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.contact-card p,
.contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.link-stack {
  align-content: start;
}

.jump-card {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 22px;
  font-size: 18px;
  letter-spacing: -0.28px;
}

.site-footer {
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

.site-footer-minimal {
  margin-top: 40px;
}

.mobile-contact-bar {
  display: none;
}

.footer-minimal-inner {
  padding: 18px 0 10px;
}

.footer-card {
  position: relative;
  padding: 22px 28px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0e0e0e 0%, #000000 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.footer-card-head {
  display: grid;
  gap: 6px;
}

.footer-card-kicker,
.footer-card-note,
.footer-company,
.footer-company-en,
.footer-contact-item {
  margin: 0;
}

.footer-card-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(230, 202, 145, 0.88);
}

.footer-card-note {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: rgba(214, 183, 119, 0.72);
}

.footer-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
  align-items: stretch;
  gap: 24px;
  min-height: 150px;
  padding-top: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 18px;
  padding: 2px 0 0;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand-copy {
  display: grid;
  gap: 6px;
}

.footer-company {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.18px;
  color: #f2dfb1;
}

.footer-company-en {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 183, 119, 0.62);
}

.footer-contact-panel {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  padding-bottom: 24px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 18px 28px;
  width: min(100%, 430px);
  padding: 0;
}

.footer-contact-item {
  display: grid;
  gap: 8px;
}

.footer-contact-item span {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(222, 191, 125, 0.72);
}

.footer-contact-item strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #f2dfb1;
}

.footer-qr {
  margin: 0;
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(214, 183, 119, 0.16);
  flex: 0 0 auto;
}

.footer-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 12px));
  }
}

@media (max-width: 1120px) {
  html.is-mobile-device .entry-grid,
  html.is-mobile-device .category-strip,
  html.is-mobile-device .gallery-grid-4,
  html.is-mobile-device .module-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.is-mobile-device .feature-grid,
  html.is-mobile-device .service-grid,
  html.is-mobile-device .gallery-grid-3,
  html.is-mobile-device .gallery-grid-featured,
  html.is-mobile-device .hero-home-grid,
  html.is-mobile-device .sub-hero-grid,
  html.is-mobile-device .contact-shell {
    grid-template-columns: 1fr;
  }

  html.is-mobile-device .layout-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.is-mobile-device .layout-sub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  html.is-mobile-device .layout-board {
    padding-top: 6px;
  }

  html.is-mobile-device .layout-board-header {
    margin-bottom: 16px;
    padding-top: 14px;
  }

  html.is-mobile-device .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html.is-mobile-device body {
    min-width: 0;
  }

  html.is-mobile-device .container,
  html.is-mobile-device .page-shell {
    min-width: 0;
  }

  html.is-mobile-device .container {
    width: min(100%, calc(100vw - 32px));
  }

  html.is-mobile-device .page-shell {
    padding-bottom: calc(128px + env(safe-area-inset-bottom));
  }

  html.is-mobile-device .site-header {
    padding-top: max(env(safe-area-inset-top), 10px);
  }

  html.is-mobile-device .header-inner {
    display: grid;
    gap: 10px;
    min-height: auto;
    min-width: 0;
    padding: 10px 0 12px;
  }

  html.is-mobile-device .brand {
    align-items: flex-start;
  }

  html.is-mobile-device .site-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  html.is-mobile-device .site-nav::-webkit-scrollbar {
    display: none;
  }

  html.is-mobile-device .site-nav > * {
    flex: 0 0 auto;
  }

  html.is-mobile-device .site-nav-link {
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  html.is-mobile-device .site-nav-link.nav-home-link {
    padding-left: 0;
  }

  html.is-mobile-device .site-nav-group::after,
  html.is-mobile-device .site-subnav {
    display: none;
  }

  html.is-mobile-device .site-nav > *:first-child::before {
    display: none;
  }

  html.is-mobile-device .layout-main-grid,
  html.is-mobile-device .layout-sub-grid,
  html.is-mobile-device .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.is-mobile-device .layout-hero {
    padding: 4px 0 8px;
  }

  html.is-mobile-device .layout-board {
    padding-top: 6px;
  }

  html.is-mobile-device .layout-board-header {
    gap: 6px;
    margin-bottom: 14px;
    padding-top: 12px;
  }

  html.is-mobile-device .layout-board-kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  html.is-mobile-device .layout-board-title {
    gap: 8px;
  }

  html.is-mobile-device .layout-board-title strong {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  html.is-mobile-device .layout-board-line {
    width: 28px;
  }

  html.is-mobile-device .site-nav-link.is-active::after {
    display: none;
  }

  html.is-mobile-device .sub-hero-page {
    display: none;
  }

  html.is-mobile-device .mobile-page-hero {
    display: block;
    padding: 16px 0 18px;
  }

  html.is-mobile-device .mobile-page-panel {
    padding: 18px 16px;
    border: 1px solid rgba(13, 21, 40, 0.06);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(116, 141, 204, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 253, 0.92));
    box-shadow: 0 18px 44px rgba(22, 34, 64, 0.08);
  }

  html.is-mobile-device .mobile-page-title {
    font-size: clamp(24px, 7vw, 31px);
  }

  html.is-mobile-device .mobile-page-text {
    font-size: 13px;
  }

  html.is-mobile-device .mobile-page-tags,
  html.is-mobile-device .mobile-anchor-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  html.is-mobile-device .mobile-page-tags::-webkit-scrollbar,
  html.is-mobile-device .mobile-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  html.is-mobile-device .mobile-page-tags span,
  html.is-mobile-device .mobile-anchor-nav a {
    flex: 0 0 auto;
  }

  html.is-mobile-device .site-footer.site-footer-minimal {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 36;
    margin-top: 0;
    background: transparent;
    pointer-events: none;
  }

  html.is-mobile-device .footer-minimal-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 env(safe-area-inset-bottom);
  }

  html.is-mobile-device .footer-card {
    width: 100%;
    padding:
      10px
      calc(14px + env(safe-area-inset-right))
      calc(14px + env(safe-area-inset-bottom))
      calc(18px + env(safe-area-inset-left));
    border-radius: 0;
    pointer-events: auto;
  }

  html.is-mobile-device .footer-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 94px;
    align-items: start;
    gap: 4px 8px;
  }

  html.is-mobile-device .footer-brand {
    grid-column: 1;
    grid-row: 1;
    gap: 10px;
    align-items: flex-start;
  }

  html.is-mobile-device .footer-logo {
    width: 50px;
    height: 50px;
  }

  html.is-mobile-device .footer-brand-copy {
    gap: 3px;
    min-width: 0;
    padding-top: 2px;
  }

  html.is-mobile-device .footer-company {
    font-size: clamp(10.8px, 3.22vw, 11.9px);
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  html.is-mobile-device .footer-card-head,
  html.is-mobile-device .footer-company-en,
  html.is-mobile-device .footer-contact-item:last-child {
    display: none;
  }

  html.is-mobile-device .footer-contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  html.is-mobile-device .footer-card-body {
    min-height: auto;
    padding-top: 0;
  }

  html.is-mobile-device .footer-contact-panel {
    display: contents;
  }

  html.is-mobile-device .footer-contact-item {
    grid-template-columns: 36px 1fr;
    align-items: baseline;
  }

  html.is-mobile-device .footer-contact-grid {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-left: 24px;
    padding-bottom: 4px;
    margin-top: -2px;
  }

  html.is-mobile-device .footer-qr {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 94px;
    height: 94px;
    padding: 5px;
    border-radius: 15px;
    justify-self: end;
    align-self: start;
  }

  html.is-mobile-device .layout-main-card,
  html.is-mobile-device .layout-sub-card {
    min-height: 176px;
  }

  html.is-mobile-device .layout-card-copy strong {
    font-size: 16px;
  }

  html.is-mobile-device .layout-card-copy p,
  html.is-mobile-device .layout-sub-card span {
    font-size: 11px;
  }

  html.is-mobile-device .hero-section {
    padding-top: 64px;
  }

  html.is-mobile-device .section-space {
    padding: 44px 0;
  }

  html.is-mobile-device .section-tight,
  html.is-mobile-device .section-compact {
    padding-top: 0;
  }

  html.is-mobile-device .advantage-section {
    padding-top: 22px;
  }

  html.is-mobile-device .stats-row,
  html.is-mobile-device .entry-grid,
  html.is-mobile-device .category-strip,
  html.is-mobile-device .feature-grid,
  html.is-mobile-device .service-grid,
  html.is-mobile-device .gallery-grid-3,
  html.is-mobile-device .gallery-grid-4,
  html.is-mobile-device .gallery-grid-featured,
  html.is-mobile-device .link-stack {
    grid-template-columns: 1fr;
  }

  html.is-mobile-device .hero-mosaic {
    grid-auto-rows: 120px;
  }

  html.is-mobile-device .module-section + .module-section,
  html.is-mobile-device .case-gallery-section + .case-gallery-section {
    margin-top: 26px;
  }

  html.is-mobile-device .module-section,
  html.is-mobile-device .case-gallery-section {
    padding: 16px;
    border: 1px solid rgba(13, 21, 40, 0.06);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 34px rgba(22, 34, 64, 0.06);
    scroll-margin-top: 108px;
  }

  html.is-mobile-device .section-heading {
    margin-bottom: 10px;
  }

  html.is-mobile-device .module-copy {
    gap: 10px;
  }

  html.is-mobile-device .module-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
    padding: 4px;
    border-radius: 16px;
  }

  html.is-mobile-device .module-gallery .gallery-photo {
    aspect-ratio: 1.02;
  }

  html.is-mobile-device .module-gallery .gallery-photo:nth-child(n + 3) {
    display: none;
  }

  html.is-mobile-device .mosaic-tall,
  html.is-mobile-device .mosaic-wide {
    grid-column: auto;
    grid-row: auto;
  }

  html.is-mobile-device .entry-card {
    min-height: 300px;
  }

  html.is-mobile-device .hero-copy h1,
  html.is-mobile-device .sub-hero-title {
    font-size: clamp(21px, 6.2vw, 28px);
    white-space: normal;
  }

  html.is-mobile-device .sub-hero-copy-wide .sub-hero-title,
  html.is-mobile-device .sub-hero-copy-wide .sub-hero-text,
  html.is-mobile-device .module-text {
    white-space: normal;
  }

  html.is-mobile-device .module-section .eyebrow,
  html.is-mobile-device .case-gallery-section .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  html.is-mobile-device .section-heading h2,
  html.is-mobile-device .entry-copy h3,
  html.is-mobile-device .contact-copy h2 {
    white-space: normal;
  }

  html.is-mobile-device .section-heading-signature h2 {
    padding-bottom: 10px;
    font-size: 16px;
  }

  html.is-mobile-device .section-heading-signature h2::before {
    width: 34px;
  }

  html.is-mobile-device .section-heading-signature h2::after {
    left: 40px;
  }

  html.is-mobile-device .hero-text,
  html.is-mobile-device .sub-hero-text,
  html.is-mobile-device .contact-copy p,
  html.is-mobile-device .service-card p,
  html.is-mobile-device .feature-card p {
    font-size: 14px;
  }

  html.is-mobile-device .module-section .section-heading-signature h2,
  html.is-mobile-device .case-gallery-section .section-heading-signature h2 {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  html.is-mobile-device .contact-card a {
    font-size: 22px;
  }

  html.is-mobile-device .entry-card {
    min-height: 280px;
  }

  html.is-mobile-device .brand-logo,
  html.is-mobile-device .footer-logo {
    width: 68px;
    height: 68px;
  }

  html.is-mobile-device .site-footer .footer-logo {
    width: 50px;
    height: 50px;
  }

  html.is-mobile-device .brand-copy strong {
    font-size: 17px;
    letter-spacing: 0.01em;
  }

  html.is-mobile-device .brand-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "slogan"
      "en";
    row-gap: 3px;
  }

  html.is-mobile-device .brand-slogan {
    justify-self: start;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  html.is-mobile-device .module-text {
    font-size: 11.5px;
    line-height: 1.54;
  }

  html.is-mobile-device .footer-company {
    font-size: clamp(10.8px, 3.22vw, 11.9px);
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  html.is-mobile-device .footer-contact-item strong {
    font-size: 10px;
  }

  html.is-mobile-device .footer-contact-item span {
    font-size: 8px;
  }

  html.is-mobile-device .partner-item {
    width: 108px;
    height: 66px;
  }
}
