:root {
  color: #171717;
  background: #fdf5f3;
  font-family:
          "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC",
          Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #fdf5f3;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input {
  font: inherit;
}

button,
input,
a {
  font-family: inherit;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid #d7a458;
  outline-offset: 2px;
}

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

[hidden] {
  display: none !important;
}

body.is-modal-open {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-open .site-header {
  z-index: 100;
}

.site-canvas {
  width: 100%;
  min-height: 100vh;
  margin-inline: auto;
  padding-top: 110px;
  overflow: hidden;
  position: relative;
  background: #fdf5f3;
  box-shadow: 0 0 34px rgb(23 43 55 / 8%);
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  width: 100%;
  height: 110px;
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  background: #fdf5f3;
}

.page-home .site-header-home {
  width: 100%;
  height: 110px;
  overflow: visible;
  background: #fdf5f3;
}

.home-header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 95px);
  position: relative;
  padding-inline: clamp(24px, 2.35vw, 45px);
}

.home-header-logo-link {
  width: clamp(220px, 14.6vw, 280px);
  display: block;
  flex: none;
}

.home-header-logo {
  width: 94%;
 /* height: 92px;*/
  display: block;
}

.home-image-nav {
  height: 100%;
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.home-nav-item {
  height: 100%;
  display: flex;
  flex: none;
  align-items: center;
  position: relative;
}

.home-header-link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #151515;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.home-header-link:hover {
  color: #151515;
  background: transparent;
}

.home-header-link[aria-current="page"]::after {
  width: 100%;
  height: 3px;
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  background: #04547b;
  content: "";
}

.home-nav-caret {
  width: 0;
  height: 0;
  margin: 2px 0 0 5px;
  border-top: 5px solid #04547b;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.home-submenu {
  min-width: 148px;
  position: absolute;
  z-index: 20;
  top: 96px;
  left: 50%;
  padding: 9px 0;
  visibility: hidden;
  opacity: 0;
  background: rgb(255 252 249 / 98%);
  border: 1px solid rgb(222 214 207 / 88%);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgb(16 44 58 / 14%);
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
          opacity 150ms ease,
          transform 150ms ease,
          visibility 150ms ease;
}

.home-submenu a {
  display: block;
  padding: 9px 18px;
  color: #252525;
  background: transparent;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
}

.home-submenu a:hover,
.home-submenu a:focus-visible {
  color: #04547b;
  background: transparent;
}

.home-nav-item:hover .home-submenu,
.home-nav-item:focus-within .home-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* ---------- 移动端汉堡菜单按钮（桌面端隐藏）---------- */
.mobile-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 6px;
  position: relative;
  z-index: 100;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: none;
}

/* 移动端遮罩层（桌面端隐藏） */
.mobile-menu-overlay {
  display: none;
}

/* 移动端抽屉菜单（桌面端隐藏） */
.mobile-drawer {
  display: none;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #171717;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 汉堡按钮激活态（X形态） */
body.mobile-menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.mobile-menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 901px) and (max-width: 1260px) {
  .home-header-inner {
    gap: 22px;
    padding-inline: 16px;
  }

  .home-header-logo-link {
    width: 190px;
  }

  .home-header-link {
    font-size: 13px;
  }

  .home-nav-caret {
    margin-left: 3px;
    border-top-width: 4px;
    border-right-width: 3px;
    border-left-width: 3px;
  }
}

.header-logo {
  width: 150px;
  height: 65px;
  display: block;
  position: absolute;
  top: 9px;
  left: 55px;
  object-fit: contain;
}

.main-nav {
  height: 38px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: absolute;
  top: 29px;
  left: 250px;
  white-space: nowrap;
}

.nav-link {
  height: 34px;
  display: block;
  padding: 4px 0 0;
  position: relative;
  color: #171717;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}

.nav-link::after {
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 2px;
  left: 50%;
  background: #04547b;
  content: "";
  transform: translateX(-50%);
  transition: width 160ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 21px;
}

.site-search {
  width: 143px;
  height: 32px;
  position: absolute;
  top: 26px;
  left: 816px;
}

.site-search input {
  width: 100%;
  height: 100%;
  padding: 0 35px 0 14px;
  color: #1a4c65;
  background: rgb(255 252 249 / 78%);
  border: 1px solid #e4ded8;
  border-radius: 18px;
  font-size: 10px;
  outline: none;
  transition:
          border-color 160ms ease,
          box-shadow 160ms ease;
}

.site-search input::placeholder {
  color: #aaa29b;
}

.site-search input:focus {
  border-color: #7da0b3;
  box-shadow: 0 0 0 3px rgb(15 81 113 / 8%);
}

.site-search button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 1px;
  right: 2px;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.site-search button img {
  width: 16px;
  height: 17px;
  display: block;
}

@media (min-width: 901px) {
  .page-home main {
    width: 100%;
    margin-inline: auto;
  }

  .page-home .brands-section,
  .page-home .content-section,
  .page-home .landscape-banner {
    width: min(1600px, 100%);
    margin-inline: auto;
  }

  .page-home .brands-card,
  .page-home .content-board {
    width: min(1300px, calc(100% - 128px));
    left: 50%;
    transform: translateX(-50%);
  }

  .page-home .brand-track {
    width: calc(100% - 80px);
  }

  .page-home .about-section {
    width: 100%;
    height: 367px;
    margin-inline: 0;
    aspect-ratio: auto;
    margin-top: 15px;
  }

  .page-home .about-inner {
    width: min(1300px, calc(100% - 128px));
    margin-inline: auto;
  }

  .page-home .about-copy {
    width: 40.5%;
    top: 4%;
    left: 0;
  }

  .page-home .about-copy .eyebrow {
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 22px;
  }

  .page-home .about-copy h1 {
    font-size: 27px;
    line-height: 38px;
  }

  .page-home .about-description {
    margin-top: 15px;
    font-size: 16px;
    line-height: 25px;
  }

  .page-home .about-stats {
    gap: 56px;
    margin-top: 14px;
  }

  .page-home .about-stats div {
    min-width: 72px;
  }

  .page-home .about-stats dt {
    font-size: 32px;
    line-height: 37px;
  }

  .page-home .about-stats dd {
    margin-top: 3px;
    font-size: 13px;
    line-height: 20px;
  }

  .page-home .about-copy .primary-pill {
    min-width: 119px;
    height: 42px;
    margin-top: 24px;
    border-radius: 22px;
    font-size: 13px;
  }

  .page-home .about-video-frame {
    width: 57.31%;
    height: 94.55%;
    top: 0.4%;
    left: 42.69%;
  }

  .page-home .content-board,
  .page-home .content-column {
    height: 360px;
  }

  .page-home .featured-image-button {
    height: auto;
    aspect-ratio: 2.3 / 1;
  }
}

.hero-section {
  width: 100%;
  aspect-ratio: 1024 / 411;
  position: relative;
  overflow: hidden;
  background: #d5d7d8;
}

.hero-composite {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.hero-video-frame {
  width: 19.73%;
  height: 67.4%;
  position: absolute;
  z-index: 2;
  top: 13.63%;
  left: 69.82%;
  overflow: hidden;
  /*background: #073d5d;*/
  border: 1px solid #d8aa62;
  border-radius: 14px;
  box-shadow: 0 7px 18px rgb(0 40 61 / 16%);
}

.hero-video-poster-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-video-poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero-video-poster-link:hover .hero-video-poster {
  transform: scale(1.012);
}

.video-play-button {
  --play-button-size: clamp(38px, 4.2vw, 78px);

  width: var(--play-button-size, 48px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  padding: 0;
  background: rgb(255 255 255 / 96%);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgb(0 38 59 / 25%);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.video-play-button::before {
  width: 31%;
  height: 38%;
  margin-left: 6%;
  background: #07577f;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.video-play-button:hover,
.video-play-button:focus-visible,
.about-video-button:hover .video-play-button,
.about-video-button:focus-visible .video-play-button {
  transform: translate(-50%, -50%) scale(1.06);
}

.floating-tool-button {
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  z-index: 3;
  left: 92.77%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.floating-tool-button img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: contain;
}

.floating-tool-button:hover {
  transform: translateY(-1px);
}

.image-hotspot {
  position: absolute;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}

.image-hotspot:hover {
  box-shadow: inset 0 0 0 2px rgb(255 221 164 / 38%);
}

.floating-layout-hotspot {
  top: 23.2%;
}

.floating-poster-hotspot {
  top: 34.8%;
}

.floating-close-hotspot {
  top: 46.5%;
  border-radius: 16px;
}

.about-section {
  width: 100%;
  height: 289px;
  position: relative;
  overflow: hidden;
  background: #fdf5f3;
  background-image: url("../assets/composites/bg_02.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-section .about-copy {
  opacity: 1;
}

.about-section .about-decoration {
  display: none;
}

.about-section .about-video-frame {
  opacity: 1;
}

.about-inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.about-decoration {
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.about-decoration-left {
  width: 79px;
  height: 145px;
  left: 0;
}

.about-decoration-right {
  width: 67px;
  height: 145px;
  right: 0;
}

.about-copy {
  width: 326px;
  position: absolute;
  top: 11px;
  left: 80px;
}

.eyebrow {
  margin: 0 0 5px;
  color: #c79a55;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.1px;
}

.about-copy h1 {
  margin: 0;
  color: #141414;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.5px;
}

.about-description {
  margin: 13px 0 0;
  color: #222;
  font-size: 10.4px;
  line-height: 20px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 44px;
  margin: 12px 0 0;
}

.about-stats div {
  min-width: 57px;
}

.about-stats dt {
  margin: 0;
  color: #c79a55;
  font-size: 25px;
  line-height: 29px;
  font-weight: bold;
}

.about-stats dd {
  margin: 2px 0 0;
  color: #191919;
  font-size: 10.5px;
  line-height: 16px;
}

.primary-pill {
  min-width: 94px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  padding: 0 18px;
  color: white;
  background: #03517d;
  border-radius: 19px;
  box-shadow: 0 5px 12px rgb(0 64 101 / 10%);
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  transition:
          transform 160ms ease,
          background 160ms ease;
}

.primary-pill:hover {
  background: #063e62;
  transform: translateY(-1px);
}

.about-video-button {
  --play-button-size: clamp(42px, 3.9vw, 58px);

  width: 520px;
  height: 273px;
  display: block;
  position: absolute;
  top: 1px;
  left: 437px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 13px;
  cursor: pointer;
  filter: drop-shadow(0 5px 7px rgb(18 34 41 / 12%));
}

.about-video-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  transition: transform 240ms ease;
}

.about-video-button:hover img {
  transform: scale(1.008);
}

.about-video-frame .about-video-button {
  width: 100%;
  height: 100%;
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
  filter: none;
}

.about-video-frame {
  width: 520px;
  height: 273px;
  position: absolute;
  top: 1px;
  left: 437px;
  overflow: hidden;
  background: #063e5e;
  border: 1px solid #d8aa62;
  border-radius: 13px;
  box-shadow: 0 6px 15px rgb(18 34 41 / 14%);
}

.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brands-section {
  width: 100%;
  height: 228px;
  position: relative;
  background: #fdf5f3;
}

.brands-card {
  width: 897px;
  height: 200px;
  position: absolute;
  top: 12px;
  left: 64px;
  background: #fff;
  border: 1px solid #eee5e1;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgb(60 38 30 / 10%);
}

.section-heading-row {
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-heading-row h2 {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.2px;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #074d71;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}

.more-link span {
  font-family: Arial, sans-serif;
  font-size: 13px;
  transition: transform 160ms ease;
}

.more-link:hover span {
  transform: translateX(2px);
}

.brands-heading {
  position: absolute;
  top: 16px;
  right: 20px;
  left: 20px;
}

.brands-heading h2 {
  font-size: 20px;
  line-height: 28px;
}

.brands-heading .more-link {
  font-size: 12px;
}

.brand-track {
  width: calc(100% - 80px);
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 62px;
  left: 40px;
  overflow: hidden;
}

.brand-item {
  min-width: 0;
  display: flex;
  flex: 0 0 25%;
  flex-direction: column;
  align-items: center;
  padding: 0;
  color: #151515;
  background: transparent;
  cursor: pointer;
}

.brand-logo-box {
  width: 190px;
  max-width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 180ms ease;
}

.brand-logo-box img {
  width: auto;
  height: 60px;
  max-width: 145px;
  display: block;
  object-fit: contain;
}

.brand-item:hover .brand-logo-box {
  transform: translateY(-2px);
}

.brand-item strong {
  max-width: 250px;
  margin-top: 6px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-item small {
  max-width: 250px;
  margin-top: 5px;
  overflow: hidden;
  color: #716d68;
  font-size: 13px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-arrow {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 97px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee8e4;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgb(34 27 23 / 12%);
  cursor: pointer;
  z-index: 2;
  transition: transform 160ms ease;
}

.brand-arrow:hover {
  transform: scale(1.05);
}

.brand-arrow img {
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: multiply;
  object-fit: cover;
  transform: scale(1.26);
}

.brand-arrow-right img {
  transform: scale(1.26) rotate(180deg);
}

.brand-arrow:disabled {
  background: #e8e8e8;
  border-color: #d8d8d8;
  box-shadow: 0 1px 5px rgb(34 27 23 / 8%);
  cursor: default;
  pointer-events: none;
}

.brand-arrow:disabled img {
  filter: grayscale(1);
  opacity: 0.42;
}

.brand-arrow:disabled:hover {
  transform: none;
}

.brand-arrow-left {
  left: -20px;
}

.brand-arrow-right {
  right: -20px;
}

.content-section {
  width: 100%;
  height: 400px;
  position: relative;
  background: #fdf5f3;
}

.content-board {
  width: 897px;
  height: 299px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: absolute;
  top: 6px;
  left: 63px;
  background: transparent;
}

.content-column {
  min-width: 0;
  height: 299px;
  position: relative;
  padding-top: 16px;
  overflow: hidden;
  background: rgb(250 247 244 / 90%);
  border: 1px solid rgb(225 218 211 / 48%);
  border-radius: 10px;
  box-shadow: 0 7px 17px rgb(38 61 69 / 7%);
}

.content-column + .content-column {
  border-left: 1px solid rgb(225 218 211 / 48%);
}

.products-column {
  padding-right: 20px;
  padding-left: 15px;
}

.events-column {
  padding-right: 14px;
  padding-left: 13px;
}

.news-column {
  padding-right: 14px;
  padding-left: 14px;
}

.content-column .section-heading-row {
  width: 100%;
}

.featured-image-button {
  width: 100%;
  height: 118px;
  display: block;
  margin-top: 13px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.featured-image-button img {
  width: 100%;
  height: 100%;
  display: block;
  /*object-fit: cover;*/
  transition: transform 220ms ease;
}

.featured-image-button:hover img {
  transform: scale(1.012);
}

.product-row {
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding: 0;
  color: #141414;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-row + .product-row {
  margin-top: 8px;
}

.product-row img {
  width: 63px;
  height: 47px;
  flex: none;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.product-row span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-row strong {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 18px;
}

.product-row small {
  margin-top: 2px;
  color: #6e6a66;
  font-size: 9.5px;
  line-height: 16px;
}

.article-list {
  margin-top: 9px;
}

.article-row {
  width: 100%;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
  color: #161616;
  background: transparent;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

.article-row span {
  min-width: 0;
  overflow: hidden;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-row time {
  flex: none;
  font-variant-numeric: tabular-nums;
  line-height: 18px;
}

.article-row:hover,
.product-row:hover {
  color: #00547c;
}

.landscape-banner {
  width: 100%;
  aspect-ratio: 1024 / 113;
  position: relative;
  overflow: hidden;
  background: #e8e9e7;
}

.landscape-banner > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.landscape-arrow-hotspot {
  width: 4%;
  height: 36%;
  top: 17%;
  border-radius: 50%;
}

.landscape-arrow-left {
  left: 4.7%;
}

.landscape-arrow-right {
  right: 4.6%;
}

.site-footer {
  width: 100%;
  height: 159px;
  position: relative;
  overflow: hidden;
  color: #eef6f9;
  /*background-color: #043d68;*/
  /*background-image: url("../assets/composites/footer-composite.png");*/
  background-repeat: no-repeat;
  background-position: center -24px;
  background-size: 1024px 183px;
}

.site-footer > :not(.copyright) {
  opacity: 0;
}

.site-footer .copyright {
  opacity: 0;
}

.footer-logo {
  width: 157px;
  height: 95px;
  display: block;
  position: absolute;
  top: 3px;
  left: 67px;
  object-fit: fill;
}

.footer-group {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 11px;
}

.footer-group h3,
.footer-contact h3 {
  margin: 0 0 6px;
  color: white;
  font-size: 11px;
  font-weight: 500;
  line-height: 17px;
}

.footer-link {
  height: 19px;
  align-self: flex-start;
  padding: 0;
  color: #d7e2e8;
  background: transparent;
  font-size: 9.5px;
  line-height: 19px;
  text-align: left;
  cursor: pointer;
}

.footer-link:hover {
  color: white;
}

.footer-about {
  left: 274px;
}

.footer-navigation {
  left: 377px;
}

.footer-friends {
  left: 498px;
}

.footer-contact {
  width: 170px;
  position: absolute;
  top: 11px;
  left: 642px;
}

.footer-contact p {
  height: 19px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  color: #dce6eb;
  font-size: 8.8px;
  line-height: 19px;
  white-space: nowrap;
}

.footer-contact p img {
  width: 13px;
  height: 17px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.footer-contact .footer-place {
  padding-left: 16px;
}

.footer-qrs {
  height: 86px;
  display: flex;
  gap: 10px;
  position: absolute;
  top: 22px;
  left: 821px;
}

.footer-qrs img:first-child {
  width: 61px;
  height: 86px;
}

.footer-qrs img:last-child {
  width: 64px;
  height: 86px;
}

.copyright {
  position: absolute;
  top: 128px;
  left: 271px;
  margin: 0;
  color: #b9ced9;
  font-size: 8.2px;
  line-height: 16px;
  white-space: nowrap;
}

.toast {
  min-width: 180px;
  max-width: calc(100% - 32px);
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  padding: 11px 16px;
  color: white;
  background: rgb(3 61 104 / 94%);
  border: 1px solid rgb(232 189 115 / 55%);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgb(0 28 48 / 20%);
  font-size: 13px;
  text-align: center;
}

.video-layer {
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 60;
  inset: 0;
  padding: 24px;
}

.video-layer-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgb(0 25 39 / 78%);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.video-layer-panel {
  width: min(760px, calc(100vw - 40px));
  position: relative;
  z-index: 1;
  padding: 12px 12px 14px;
  color: white;
  background: #063f68;
  border: 1px solid #d2a65e;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.video-layer-player {
  width: 100%;
  max-height: 72vh;
  display: block;
  background: #001722;
  border-radius: 10px;
  object-fit: contain;
}

.video-layer-title {
  margin: 10px 4px 0;
  font-size: 14px;
}

.video-layer-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  top: -16px;
  right: -16px;
  padding: 0;
  color: #063f68;
  background: #fff;
  border: 2px solid #d2a65e;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgb(0 0 0 / 24%);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-layer-close:hover {
  color: #fff;
  background: #0b5a81;
}

.subpage-main {
  min-height: 700px;
  background:
          linear-gradient(rgb(253 245 243 / 95%), rgb(253 245 243 / 98%)),
          #fdf5f3;
}

.subpage-hero {
  width: 100%;
  height: 230px;
  position: relative;
  overflow: hidden;
  color: white;
  background: #084f70;
}

.subpage-hero::after {
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgb(0 48 72 / 78%), rgb(0 68 92 / 20%)),
          linear-gradient(0deg, rgb(0 49 73 / 26%), transparent 55%);
  content: "";
}

.subpage-hero > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.88) contrast(0.96);
}

.subpage-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 7.8%;
  transform: translateY(-50%);
}

.subpage-hero-copy p,
.section-title p {
  margin: 0 0 7px;
  color: #d9ad69;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 1.6px;
}

.subpage-hero-copy h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 2px;
}

.subpage-hero-copy span {
  display: block;
  margin-top: 12px;
  color: rgb(255 255 255 / 82%);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.subpage-section {
  width: calc(100% - 128px);
  margin: 36px auto;
  padding: 30px;
  background: rgb(255 252 249 / 80%);
  border: 1px solid rgb(224 217 211 / 66%);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgb(38 61 69 / 8%);
}

.section-title {
  margin-bottom: 25px;
}

.section-title h2,
.detail-card h2 {
  margin: 0;
  color: #123e55;
  font-size: 24px;
  line-height: 1.35;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 38px;
}

.detail-card > p:last-of-type {
  margin: 20px 0 0;
  color: #514e4a;
  font-size: 14px;
  line-height: 2;
}

.page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 25px 0 0;
}

.page-stats div {
  padding: 16px;
  background: #f8f2eb;
  border-radius: 10px;
}

.page-stats dt {
  color: #c89143;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.page-stats dd {
  margin: 5px 0 0;
  color: #5d5751;
  font-size: 12px;
}

.detail-media {
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 13px;
  cursor: pointer;
}

.detail-media img {
  width: 100%;
  display: block;
  transition: transform 200ms ease;
}

.detail-media:hover img {
  transform: scale(1.012);
}

.feature-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.catalog-card,
.product-card {
  min-width: 0;
  padding: 22px;
  background: #faf6f2;
  border: 1px solid #ece3da;
  border-radius: 12px;
}

.feature-card strong,
.catalog-card h3,
.product-card h3 {
  display: block;
  margin: 0;
  color: #103f57;
  font-size: 17px;
}

.feature-card p,
.catalog-card p,
.product-card p {
  margin: 10px 0 0;
  color: #6d665f;
  font-size: 12px;
  line-height: 1.8;
}

.feature-index {
  display: block;
  margin-bottom: 20px;
  color: #d2a15a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

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

.catalog-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.catalog-card img {
  width: 96px;
  height: 67px;
  margin-bottom: 15px;
  object-fit: contain;
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.product-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
}

.product-card img {
  width: 100%;
  height: 112px;
  display: block;
  object-fit: cover;
  border-radius: 9px;
}

.product-card-wide img {
  height: 180px;
}

.split-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
  gap: 28px;
}

.lead-story {
  overflow: hidden;
  background: #f8f2ec;
  border-radius: 12px;
}

.lead-story > img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.lead-story > div {
  padding: 22px;
}

.lead-story time {
  color: #bf8840;
  font-size: 11px;
}

.lead-story h2 {
  margin: 8px 0 0;
  color: #103f57;
  font-size: 21px;
}

.lead-story p {
  margin: 11px 0 0;
  color: #6d665f;
  font-size: 12px;
  line-height: 1.8;
}

.page-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e8ded4;
}

.page-list a {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 4px;
  color: #383530;
  border-bottom: 1px solid #e8ded4;
  font-size: 13px;
  transition: color 160ms ease;
}

.page-list a:hover {
  color: #00547c;
}

.page-list time {
  flex: none;
  color: #9b7b57;
  font-variant-numeric: tabular-nums;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 190px;
  padding: 22px;
  background: #faf6f2;
  border: 1px solid #ece3da;
  border-radius: 12px;
}

.process-list li > span {
  display: block;
  margin-bottom: 25px;
  color: #d2a15a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.process-list strong {
  color: #103f57;
  font-size: 17px;
}

.process-list p {
  margin: 10px 0 0;
  color: #6d665f;
  font-size: 12px;
  line-height: 1.8;
}

.page-action {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .site-canvas {
    padding-top: 110px;
    box-shadow: none;
  }

  .page-home .site-canvas {
    padding-top: 64px;
  }

  /* ===== 移动端 header ===== */
  .page-home .site-header-home {
    height: 64px;
    aspect-ratio: auto;
    overflow: visible;
  }

  .page-home .home-header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16px;
  }

  .page-home .home-header-logo-link {
    width: 120px;
    display: block;
    position: static;
    flex: none;
  }

  .page-home .home-header-logo {
    width: 120px;
    height: auto;
    display: block;
  }

  /* PC 端导航在移动端隐藏 */
  .home-image-nav--desktop {
    display: none !important;
  }

  /* 移动端显示汉堡按钮 */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== 移动端遮罩层 ===== */
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    z-index: 90;
    inset: 0;
    background: rgb(0 0 0 / 45%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* ===== 移动端抽屉菜单 ===== */
  .mobile-drawer {
    display: block;
    position: fixed;
    z-index: 95;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    background: #fdf5f3;
    box-shadow: -4px 0 20px rgb(0 0 0 / 12%);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
  }

  body.mobile-menu-open .mobile-drawer {
    transform: translateX(0);
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px;
  }

  .mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    flex: none;
  }

  /* 移动端导航列表 */
  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 0 0 20px;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(0 0 0 / 6%);
    color: #171717;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
  }

  .mobile-nav-link:active {
    background: rgb(4 84 123 / 4%);
  }

  /* 子菜单箭头 */
  .mobile-nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid #04547b;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
  }

  .mobile-nav-group.submenu-open .mobile-nav-caret {
    transform: rotate(180deg);
  }

  /* 子菜单列表 */
  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgb(4 84 123 / 4%);
    transition: max-height 0.3s ease;
  }

  .mobile-nav-group.submenu-open .mobile-submenu {
    max-height: 200px;
  }

  .mobile-submenu a {
    display: block;
    padding: 10px 24px 10px 40px;
    color: #444;
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-submenu a:active {
    color: #04547b;
    background: rgb(4 84 123 / 6%);
  }

  /* ===== 其他移动端样式 ===== */
  .site-header {
    height: 110px;
  }

  .header-logo {
    width: 145px;
    height: auto;
    top: 8px;
    left: 16px;
  }

  .site-search {
    top: 24px;
    right: 16px;
    left: auto;
  }

  .main-nav {
    width: calc(100% - 32px);
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2px 15px;
    top: 76px;
    left: 16px;
  }

  .nav-link {
    height: 28px;
  }

  .about-section {
    height: auto;
    min-height: 610px;
    padding: 32px 16px 34px;
    background-image: url("../assets/composites/bg_02.jpg");
    background-position: center;
    background-size: cover;
  }

  .about-section .about-decoration,
  .about-section .about-copy,
  .about-section .about-video-button,
  .about-section .about-video-frame {
    opacity: 1;
  }

  .about-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-copy {
    width: min(520px, 100%);
    position: relative;
    top: auto;
    left: auto;
    margin-inline: auto;
  }

  .about-description {
    font-size: 12px;
    line-height: 22px;
  }

  .about-stats {
    justify-content: flex-start;
  }

  .about-video-button,
  .about-video-frame {
    width: min(520px, 100%);
    height: auto;
    aspect-ratio: 520 / 273;
    position: relative;
    top: auto;
    left: auto;
    margin-inline: auto;
  }

  .brands-section {
    height: auto;
    padding: 14px 16px;
  }

  .brands-card {
    width: 100%;
    height: auto;
    min-height: 220px;
    position: relative;
    top: auto;
    left: auto;
    padding: 52px 16px 20px;
  }

  .brand-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 4px;
    position: static;
  }

  .brand-arrow {
    top: 97px;
  }

  .brand-arrow-left {
    left: -12px;
  }

  .brand-arrow-right {
    right: -12px;
  }

  .content-section {
    height: auto;
    padding: 0 16px 18px;
  }

  .content-board {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    position: static;
  }

  .content-column {
    height: auto;
    padding: 22px 20px 24px;
  }

  .content-column + .content-column {
    border: 1px solid rgb(225 218 211 / 48%);
  }

  .featured-image-button {
    height: auto;
    aspect-ratio: 2.28 / 1;
  }

  .product-row {
    height: 58px;
  }

  .product-row img {
    width: 76px;
    height: 55px;
  }

  .article-row {
    min-height: 42px;
    height: auto;
  }

  .site-footer {
    height: 440px;
    background-image: url("../assets/footer/footer-texture-pattern.png");
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 267px 59px;
  }

  .site-footer > :not(.copyright),
  .site-footer .copyright {
    opacity: 1;
  }

  .footer-logo {
    top: 16px;
    left: 24px;
  }

  .footer-about,
  .footer-navigation,
  .footer-friends,
  .footer-contact,
  .footer-qrs {
    top: auto;
    left: auto;
  }

  .footer-about {
    top: 122px;
    left: 24px;
  }

  .footer-navigation {
    top: 122px;
    left: 144px;
  }

  .footer-friends {
    top: 122px;
    left: 270px;
  }

  .footer-contact {
    top: 242px;
    left: 24px;
  }

  .footer-qrs {
    top: 237px;
    right: 24px;
    left: auto;
  }

  .copyright {
    right: 24px;
    bottom: 18px;
    left: 24px;
    top: auto;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .site-canvas {
    padding-top: 110px;
  }

  .page-home .site-canvas {
    padding-top: 64px;
  }

  .page-home .site-header-home {
    height: 64px;
  }

  .header-logo {
    width: 132px;
  }

  .site-search {
    width: 154px;
    top: 21px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 4px 20px;
    top: 73px;
  }

  .nav-link {
    flex: 0 0 calc(25% - 15px);
    font-size: 10.5px;
    text-align: left;
  }

  .hero-section {
    height: 300px;
    aspect-ratio: auto;
  }

  .hero-composite {
    object-fit: cover;
    object-position: center;
  }

  .hero-video-frame {
    width: 40%;
    height: auto;
    aspect-ratio: 202 / 277;
    top: 15%;
    left: 56%;
  }

  .hero-video-hotspot,
  .hero-detail-hotspot,
  .floating-layout-hotspot,
  .floating-poster-hotspot,
  .floating-close-hotspot {
    display: none;
  }

  .about-section {
    min-height: 570px;
    padding-inline: 16px;
  }

  .about-stats {
    gap: 23px;
  }

  .about-stats dt {
    font-size: 22px;
  }

  .brands-card {
    min-height: 390px;
    padding-inline: 10px;
  }

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

  .brand-item small {
    max-width: 140px;
  }

  .landscape-banner {
    height: 110px;
    aspect-ratio: auto;
  }

  .landscape-banner > img {
    object-fit: cover;
    object-position: center;
  }

  .site-footer {
    height: 610px;
  }

  .footer-logo {
    left: 18px;
  }

  .footer-about {
    top: 126px;
    left: 18px;
  }

  .footer-navigation {
    top: 126px;
    left: 142px;
  }

  .footer-friends {
    top: 248px;
    left: 18px;
  }

  .footer-contact {
    top: 366px;
    left: 18px;
  }

  .footer-qrs {
    top: 354px;
    right: 16px;
  }

  .copyright {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 900px) {
  .subpage-hero {
    height: 210px;
  }

  .subpage-section {
    width: calc(100% - 32px);
    margin: 24px auto;
    padding: 24px;
  }

  .detail-layout,
  .split-list-layout {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .product-card-wide {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    height: 190px;
  }

  .subpage-hero-copy {
    right: 18px;
    left: 18px;
  }

  .subpage-hero-copy h1 {
    font-size: 28px;
  }

  .subpage-section {
    width: calc(100% - 28px);
    padding: 20px 16px;
  }

  .page-stats,
  .feature-grid,
  .brand-catalog,
  .product-catalog,
  .process-list {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-wide {
    grid-column: auto;
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .product-card img,
  .product-card-wide img {
    height: 90px;
  }

  .catalog-card {
    min-height: 165px;
  }

  .lead-story > img {
    height: 180px;
  }
}

/* Homepage footer rebuilt from the supplied desktop reference. */
.site-footer-home {
  width: 100%;
  height: auto;
  min-height: 412px;
  position: relative;
  overflow: hidden;
  color: #eef4f8;
}

.site-footer.site-footer-home > * {
  opacity: 1;
}

.home-footer-promo {
  width: min(1300px, calc(100% - 128px));
  height: 156px;
  position: absolute;
  z-index: 1;
  top: clamp(8px, 2vw, 0);
  left: 50%;
  overflow: hidden;
  border-radius: 24px;
  transform: translateX(-50%);
}

.home-footer-promo img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-footer-body {
  min-height: 412px;
  position: relative;
  z-index: 2;
  padding-top: 204px;
  background-image: url("../assets/footer/footer-texture.png");
  background-repeat: no-repeat;
  background-position: center 30px;
  background-size: 100% 500px;
}

.home-footer-inner {
  width: min(1170px, calc(100% - 48px));
  min-height: 208px;
  display: grid;
  grid-template-columns:
    minmax(190px, 1.15fr)
    minmax(105px, 0.65fr)
    minmax(110px, 0.72fr)
    minmax(205px, 1.05fr)
    minmax(245px, 1.4fr)
    minmax(175px, 1fr);
  position: relative;
  margin: 0 auto;
  padding-bottom: 18px;
}

.home-footer-inner > * {
  min-width: 0;
}

.home-footer-brand {
  padding-top: 1px;
}

.home-footer-brand img {
  width: 210px;
  height: auto;
  display: block;
  object-fit: contain;
}

.home-footer-group {
  min-width: 0;
  min-height: 110px;
  padding-left: 28px;
  border-left: 1px solid rgb(105 171 208 / 24%);
}

.home-footer-group h3 {
  margin: 0 0 8px;
  color: #f2f6f9;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.home-footer-group a,
.home-footer-group p {
  min-height: 24px;
  margin: 0;
  color: #8eb2cc;
  background: transparent;
  font-size: 14px;
  line-height: 24px;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.home-footer-group a {
  display: block;
}

.home-footer-group a:hover,
.home-footer-group a:focus-visible {
  color: #fff;
  background: transparent;
}

.home-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.home-footer-contact p span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-footer-contact p img {
  width: 15px;
  height: 15px;
  display: block;
  flex: none;
  object-fit: contain;
}

.home-footer-qrs {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 1px;
}

.home-footer-qrs figure {
  width: 84px;
  margin: 0;
  text-align: center;
}

.home-footer-qrs img {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: fill;
  background: #fff;
}

.home-footer-qrs figcaption {
  margin-top: 7px;
  color: #8eb2cc;
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}

.home-footer-copyright {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: static;
  margin: 0;
  padding-inline: 12px;
  color: #88a8c0;
  font-size: clamp(10px, 0.75vw, 12px);
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
}

.home-footer-copyright > span {
  min-width: 0;
  white-space: nowrap;
}

.home-footer-copyright-separator {
  flex: none;
}

@media (min-width: 901px) and (max-width: 1260px) {
  .home-footer-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1.05fr 0.65fr 0.7fr 1.15fr 1.35fr 0.95fr;
  }

  .home-footer-brand img {
    width: min(190px, 95%);
  }

  .home-footer-group {
    padding-left: 18px;
  }

  .home-footer-group h3 {
    font-size: 15px;
  }

  .home-footer-group a,
  .home-footer-group p {
    font-size: 12px;
  }

  .home-footer-contact p {
    gap: 4px;
  }

  .home-footer-qrs {
    gap: 8px;
  }

  .home-footer-qrs figure,
  .home-footer-qrs img {
    width: 72px;
  }

  .home-footer-qrs img {
    height: 72px;
  }
}

@media (max-width: 900px) {
  .site-footer-home {
    height: auto;
    min-height: 720px;
  }

  .home-footer-promo {
    width: calc(100% - 32px);
    height: 110px;
    z-index: 3;
    border-radius: 16px 16px 0 0;
  }

  .home-footer-promo img {
    object-fit: cover;
    object-position: center;
  }

  .home-footer-body {
    min-height: 720px;
    padding-top: 142px;
    background-position: center 58px;
    background-size: auto 430px;
  }

  .home-footer-inner {
    width: calc(100% - 40px);
    min-height: 578px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding-bottom: 16px;
  }

  .home-footer-brand {
    grid-column: 1 / -1;
    height: 104px;
  }

  .home-footer-brand img {
    width: 174px;
  }

  .home-footer-group {
    min-height: 116px;
    padding-left: 14px;
  }

  .home-footer-friends,
  .home-footer-contact {
    min-height: 126px;
  }

  .home-footer-group h3 {
    font-size: 15px;
  }

  .home-footer-group a,
  .home-footer-group p {
    min-height: 22px;
    overflow: visible;
    font-size: 12px;
    line-height: 22px;
    text-overflow: clip;
  }

  .home-footer-qrs {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 14px;
  }

  .home-footer-copyright {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .home-footer-copyright {
    flex-wrap: wrap;
    gap: 2px 6px;
    white-space: normal;
  }
}

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