:root {
  --ink: #141719;
  --steel: #59646b;
  --muted: #68757c;
  --line: #cfd6d8;
  --paper: #f2f4f4;
  --panel: #ffffff;
  --dark: #20272a;
  --dark-2: #111618;
  --green: #0b6f45;
  --green-dark: #064b31;
  --safety: #b97815;
  --shadow: 0 14px 34px rgba(10, 16, 18, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, .96);
  border-top: 4px solid var(--dark);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(430px, 100%);
  max-width: 100%;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: 58px;
  max-width: none;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  color: var(--green-dark);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-subline {
  color: var(--steel);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
  html[lang="zh-Hans"] .site-header {
    grid-template-columns: minmax(720px, 1fr) auto auto;
    gap: 22px;
  }

  html[lang="zh-Hans"] .brand {
    width: min(800px, 100%);
  }

  html[lang="zh-Hans"] .brand-subline {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: normal;
    text-transform: none;
    white-space: nowrap;
  }

  html[lang="zh-Hans"] .nav {
    justify-content: flex-end;
    gap: 28px;
  }
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: #263034;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 2px;
  border: 1px solid var(--line);
  background: #e9eeed;
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  color: var(--steel);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #fff;
  background: var(--green-dark);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 82px));
  overflow: hidden;
  color: #fff;
  background: var(--dark-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 18, 20, .92) 0%, rgba(13, 18, 20, .72) 45%, rgba(13, 18, 20, .16) 100%),
    linear-gradient(0deg, rgba(13, 18, 20, .82) 0%, rgba(13, 18, 20, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(1040px, 92vw);
  padding: 86px clamp(20px, 5vw, 72px) 120px;
}

.hero-company-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1040px;
  margin: 0 0 18px;
}

.hero-company-names span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
}

html[lang="zh-Hans"] .hero-company-names span {
  font-size: 16px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(56px, 7.2vw, 102px);
  line-height: .96;
  letter-spacing: 0;
  white-space: pre-line;
}

html[lang="zh-Hans"] .hero h1 {
  max-width: 1020px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.12;
}

.hero-copy {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 2px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.btn.primary {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: -58px auto 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 122px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--green-dark);
  font-size: 17px;
  text-transform: uppercase;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--steel);
}

.section {
  padding: clamp(74px, 8vw, 112px) clamp(18px, 4vw, 64px);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 30px;
}

.section-heading h2 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-band,
.contact-section,
.magnetic-band {
  background: var(--panel);
}

.home-updates {
  background: #f7f8f8;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 26px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.news-panel,
.expo-panel {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.section-heading--compact {
  width: 100%;
  margin: 0;
  padding: 28px 28px 18px;
}

.section-heading--compact h2 {
  max-width: none;
  font-size: clamp(28px, 3vw, 40px);
}

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

.news-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px 18px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item time {
  grid-row: span 2;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.news-item h3,
.news-item p {
  margin: 0;
}

.news-item h3 {
  color: var(--ink);
  font-size: 18px;
}

.news-item p {
  color: var(--steel);
  font-weight: 700;
}

.expo-gallery {
  display: grid;
  gap: 14px;
  padding: 0 28px 28px;
}

.expo-event {
  display: grid;
  gap: 10px;
  margin: 0;
}

.expo-event figcaption {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.expo-event div {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8px;
}

.expo-event img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  background: #f8f9f9;
}

.expo-event img:first-child {
  grid-row: span 2;
  height: 388px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.intro-grid p {
  margin: 0;
  color: var(--steel);
  font-size: 18px;
  font-weight: 700;
}

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

.office-list span {
  padding: 15px 18px;
  border-right: 4px solid var(--green);
  border-bottom: 1px solid var(--line);
  background: #eef1f1;
  font-weight: 900;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--panel);
}

.product-card:last-child {
  grid-column: auto;
  display: flex;
}

.product-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--line);
  background: #f7f8f8;
}

.catalog-link {
  color: inherit;
  text-decoration: none;
}

.catalog-link:hover,
.catalog-link:focus-visible {
  background: #eef1f1;
}

.catalog-link:focus-visible {
  outline: 3px solid rgba(30, 111, 69, .28);
  outline-offset: -3px;
}

.catalog-chip {
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: var(--green-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-chip--wide {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  text-transform: none;
}

.brand-logo-img {
  width: auto;
  max-width: 126px;
  height: 38px;
  object-fit: contain;
}

.brand-logo-img--kent {
  max-width: 140px;
}

.brand-logo-word {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-left: 4px solid var(--green);
  color: var(--green-dark);
  background: #eef1f1;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo-word--moldino {
  color: #164b73;
}

.brand-logo-word--hypros {
  color: #176f8f;
}

.brand-logo-word--garr {
  color: #1848a8;
}

.product-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px 14px 0;
  background: #eef1f1;
}

.product-media--two,
.product-media--three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-media--three img:first-child {
  grid-column: 1 / -1;
}

.product-media img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  background: #e7ebeb;
  border: 1px solid var(--line);
}

.product-media--poster img {
  height: 430px;
}

.product-copy {
  flex: 1;
  padding: 22px 24px 26px;
}

.product-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

.product-copy p {
  min-height: 76px;
  margin: 12px 0 18px;
  color: var(--steel);
  font-weight: 700;
}

.product-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-left: 3px solid var(--green);
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.product-card:last-child > img {
  height: 236px;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  border-right: 0;
}

.fuka-badge {
  margin: 0;
}

.poster-section {
  background:
    linear-gradient(180deg, #f7f8f8 0%, #eef1f1 100%);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.poster-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #c9d0d0;
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(239, 243, 243, .98));
  box-shadow: 0 18px 36px rgba(22, 35, 35, .08);
}

.poster-card--fuka {
  border-top: 4px solid var(--green);
}

.poster-brand {
  display: grid;
  grid-template-columns: minmax(82px, 118px) minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--line);
}

.poster-brand img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.poster-brand span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
}

.poster-brand .catalog-chip {
  grid-column: 2;
  justify-self: end;
  color: var(--green-dark);
  font-size: 11px;
}

.poster-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 310px;
  padding: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(33, 51, 51, .04) 0 1px, transparent 1px 52px),
    #e8eded;
}

.poster-media--two,
.poster-media--mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.poster-media--mosaic img:first-child {
  grid-column: 1 / -1;
}

.poster-media img {
  width: 100%;
  height: 100%;
  min-height: 145px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  background: #fff;
}

.poster-card p {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.catalog-page {
  min-height: 100vh;
  background: #eef1f1;
}

.catalog-header {
  position: sticky;
}

.catalog-hero {
  padding-top: 92px;
  padding-bottom: 26px;
  background:
    linear-gradient(180deg, rgba(22, 35, 35, .08), rgba(22, 35, 35, 0)),
    #f7f8f8;
}

.catalog-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  text-align: center;
}

.catalog-hero .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--steel);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.catalog-selector {
  padding-top: 26px;
}

.catalog-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 35, 35, .08);
}

.catalog-panel-head {
  display: grid;
  grid-template-columns: minmax(120px, 230px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: #f7f8f8;
}

.catalog-panel-head img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.catalog-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.catalog-panel-head p {
  margin: 10px 0 0;
  color: var(--steel);
  font-weight: 800;
}

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

.model-group {
  border: 1px solid var(--line);
  background: #fbfcfc;
}

.model-group h3 {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #fff;
  background: var(--green-dark);
  font-size: 20px;
}

.model-links {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.model-links a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #d5dddd;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.model-links a:hover,
.model-links a:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
  background: #eef7f2;
}

.model-links a:focus-visible {
  outline: 3px solid rgba(30, 111, 69, .26);
  outline-offset: 2px;
}

.magnetic-layout {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: 38px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.magnetic-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.magnetic-copy p:not(.eyebrow),
.magnetic-copy li {
  color: var(--steel);
  font-size: 17px;
  font-weight: 700;
}

.magnetic-copy ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.magnetic-photos {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
}

.magnetic-photos img {
  width: 100%;
  height: 214px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #e7ebeb;
}

.magnetic-photos img:first-child {
  grid-row: span 2;
  height: 440px;
}

.brand-section {
  background: #f7f8f8;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  background: #fff;
}

.brand-tile-logo {
  width: min(230px, 100%);
  height: 88px;
  object-fit: contain;
}

.brand-tile-logo--fuka {
  margin-right: 12px;
  width: min(180px, 72%);
}

.brand-tile-logo--wide {
  width: min(270px, 100%);
  height: 82px;
}

.brand-tile-logo--moldino {
  width: min(230px, 100%);
  height: 104px;
}

.brand-tile-logo--hypros {
  width: min(260px, 100%);
  height: 92px;
}

.brand-tile-logo--kent {
  width: min(240px, 100%);
  height: 88px;
}

.brand-tile span {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}

.brand-tile strong {
  color: var(--green-dark);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1;
  letter-spacing: 0;
}

.brand-tile--moldino strong {
  color: #164b73;
}

.brand-tile--hypros strong {
  color: #176f8f;
}

.brand-tile--garr strong {
  color: #1848a8;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 26px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact-main,
address {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #f7f8f8;
}

.mail-link {
  display: block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-main p {
  margin: 0;
  color: var(--steel);
  font-size: 18px;
  font-weight: 700;
}

.section-heading h2:empty {
  display: none;
}

.wechat-entry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wechat-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.wechat-card img {
  width: min(176px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.wechat-card figcaption {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

address {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-style: normal;
}

address strong {
  margin-top: 10px;
  color: var(--ink);
  text-transform: uppercase;
}

.office-phone {
  color: var(--green-dark);
  font-weight: 900;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--steel);
  background: #ecefef;
  font-size: 13px;
  font-weight: 700;
}

.footer a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 16px;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 86vh;
  }

  .trust-strip,
  .updates-grid,
  .intro-grid,
  .product-grid,
  .poster-grid,
  .magnetic-layout,
  .model-groups,
  .brand-wall,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -40px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .expo-gallery {
    grid-template-columns: 1fr;
  }

  .product-card:last-child {
    grid-column: auto;
    display: block;
  }

  .product-card:last-child > img {
    height: 290px;
    min-height: 0;
    object-position: top center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-media img {
    height: 280px;
  }

  .product-media--poster img {
    height: 440px;
  }

  .magnetic-photos {
    grid-template-columns: 1fr 1fr;
  }

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

  .magnetic-photos img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 360px;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-mark {
    height: 46px;
  }

  .brand-subline {
    font-size: 9px;
  }

  html[lang="zh-Hans"] .brand-subline {
    display: none;
  }

  .hero-content {
    padding: 64px 18px 96px;
  }

  .hero-company-names {
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-company-names span {
    width: 100%;
    min-height: 30px;
    padding: 0 10px;
    font-size: 13px;
  }

  html[lang="zh-Hans"] .hero-company-names span {
    min-height: 34px;
    font-size: 15px;
    line-height: 1.16;
  }

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

  html[lang="zh-Hans"] .hero h1 {
    font-size: 32px;
    line-height: 1.16;
  }

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

  .trust-strip {
    width: calc(100% - 24px);
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-card > img,
  .product-card:last-child > img {
    height: 260px;
  }

  .product-media,
  .product-media--two,
  .product-media--three {
    grid-template-columns: 1fr;
  }

  .product-media--three img:first-child {
    grid-column: auto;
  }

  .product-media img {
    height: 250px;
  }

  .product-media--poster img {
    height: 420px;
  }

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

  .poster-card {
    min-height: 430px;
  }

  .poster-brand {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
  }

  .poster-media,
  .poster-media--two,
  .poster-media--mosaic {
    grid-template-columns: 1fr;
  }

  .poster-media--mosaic img:first-child {
    grid-column: auto;
  }

  .updates-grid {
    gap: 18px;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item time {
    grid-row: auto;
  }

  .expo-gallery {
    grid-template-columns: 1fr;
  }

  .expo-event div {
    grid-template-columns: 1fr;
  }

  .expo-event img,
  .expo-event img:first-child {
    grid-row: auto;
    height: 220px;
  }

  .magnetic-photos {
    grid-template-columns: 1fr;
  }

  .magnetic-photos img,
  .magnetic-photos img:first-child {
    grid-column: auto;
    height: 260px;
  }

  .brand-wall {
    grid-template-columns: 1fr;
  }

  .brand-tile {
    min-height: 112px;
  }

  .brand-tile-logo,
  .brand-tile-logo--wide,
  .brand-tile-logo--hypros,
  .brand-tile-logo--kent,
  .brand-tile-logo--moldino {
    height: 74px;
  }

  .contact-main,
  address {
    padding: 22px;
  }

  .wechat-entry {
    gap: 10px;
  }

  .wechat-card {
    padding: 12px;
  }

  .wechat-card figcaption {
    font-size: 11px;
  }
}
