/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D71920;
  --red-hover: #b8141a;
  --black: #000;
  --dark: #111;
  --gray: #666;
  --gray-light: #999;
  --gray-bg: #F5F5F5;
  --white: #fff;
  --beige: #F5F0EB;
  --blue-light: #E8F0F8;
  --container: 1600px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-55s);
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Wow.js Animations ===== */
.wow { visibility: hidden; }
.animated { visibility: visible; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.fadeIn { animation-name: fadeIn; animation-duration: 1s; animation-fill-mode: both; }
.fadeInUp { animation-name: fadeInUp; animation-duration: 0.8s; animation-fill-mode: both; }
.fadeInLeft { animation-name: fadeInLeft; animation-duration: 0.8s; animation-fill-mode: both; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 900px;
}

.hero-inner {
  position: relative;
  height: 100%;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  transition: opacity 0.6s ease;
}
.m-hero-bg {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  transition: opacity 0.6s ease;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-inner.is-video-ready .hero-bg {
  opacity: 0;
}

.hero-inner.is-video-ready .m-hero-bg {
  opacity: 0;
}

.hero-inner.is-video-ready .hero-video {
  opacity: 1;
}

.hero-video-control {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 5;
  width: 40px;
  height: 40px;
}

.hero-video-loading,
.hero-video-toggle {
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: #808080a6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-video-loading img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  animation: hero-video-spin 1.5s linear infinite;
}

@keyframes hero-video-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-video-toggle {
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-video-control.is-ready .hero-video-loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-video-control.is-ready .hero-video-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-video-toggle:hover {
  cursor: pointer;
}

.hero-video-toggle-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  pointer-events: none;
}

.hero-video-toggle-icon-play {
  display: none;
}

.hero-video-toggle.is-paused .hero-video-toggle-icon-pause {
  display: none;
}

.hero-video-toggle.is-paused .hero-video-toggle-icon-play {
  display: block;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-bg::after {
  display: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  user-select: text;
  -webkit-user-select: text;
  cursor: auto;
  pointer-events: none;
}

.hero-content .hero-card-wrap {
  pointer-events: auto;
}

.hero-inner .container {
  width: 96%;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-inner .container.hero-content {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-card-wrap {
  position: absolute;
  top: 350px;
  left: 3px;
  width: 716px;
  height: 496px;
}

.hero-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/hero-card-bg.svg') no-repeat center / 100% 100%;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
  pointer-events: none;
  transform: scale(0.85);
  opacity: 0.95;
}

.hero-panel {
  position: absolute;
  top: 90px;
  left: 76px;
  z-index: 1;
  width: 612px;
  height: 327px;
  user-select: text;
  -webkit-user-select: text;
  cursor: auto;
  transform: scale(0.85);
}

.hero-card-top {
  position: static;
  z-index: 1;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
}

.hero-card-top h1,
.hero-card-text {
  padding: 0;
}

.hero-card-top h1 {
  width: 612px;
  height: 102px;
  font-family: var(--font-80s);
  font-size: 60px;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0;
  color: var(--black);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-card-text {
  position: absolute;
  top: 116px;
  left: 0;
  width: 560px;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-card-text p {
  font-family: var(--font-55s);
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0;
  color: var(--dark);
  margin: 0;
  text-align: justify;
}

.hero-card-btns {
  position: absolute;
  top: 273px;
  left: 0;
  z-index: 1;
  width: 174px;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
}

.hero-card-btns .btn-primary {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  font-family: var(--font-55s);
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  gap: 8px;
  border-radius: 32px;
  white-space: nowrap;
  background: var(--red);
  color: var(--white);
  transition: none;
}

.hero-card-btns .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #680f14;
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0s linear 0.35s;
}

.hero-card-btns .btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
  border-right-color: transparent;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0s linear 0.35s;
}

.hero-card-btns .btn-primary:not(:hover)::before {
  transform: scaleX(0);
  transform-origin: left center;
  border-right-color: #fff;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0s linear 0s;
}

.hero-card-btns .btn-primary span,
.hero-card-btns .btn-primary img.btn-arrow {
  position: relative;
  z-index: 1;
}

.hero-card-btns .btn-primary img.btn-arrow {
  display: block;
  width: 18px;
  height: 15px;
  flex-shrink: 0;
}

.hero-card-btns .btn-primary:hover {
  background: var(--red);
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-radius: 32px;
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

/* ===== Statistics ===== */
.stats {
  background: var(--white);
  padding: 154px 0 152px;
}

.stats .container {
  max-width: none;
  width: 100%;
  padding: 0 max(24px, calc((100% - 1520px) / 2));
  box-sizing: border-box;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 1520px;
  height: 125px;
  margin: 0 auto;
  box-sizing: border-box;
}

.stat-item {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  z-index: 1;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 90px;
  background: #D9D9D9;
  pointer-events: none;
  z-index: 0;
  transform: translate(50%, -50%);
}

.stat-num {
  font-family: var(--font-80s);
  font-size: 56px;
  line-height: 1.2;
  color: var(--black);
}

.stat-label {
  font-family: var(--font-55s);
  font-size: 24px;
  margin-top: 14px;
  color: var(--dark);
  line-height: 1.5;
}

/* ===== Mission Vision Values ===== */
.features {
  padding: 0;
  background: var(--white);
}

.features .container {
  width: 100%;
  margin: 0 auto;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1760px) / 2));
  box-sizing: border-box;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1760px;
  min-height: 400px;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
}

.feature-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 400px;
  height: auto;
  aspect-ratio: auto;
  padding: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.feature-card-1 {
  background-image: url('../images/1-1.svg');
}

.feature-card-2 {
  background-image: url('../images/1-2.svg');
}

.feature-card-3 {
  background-image: url('../images/1-3.svg');
}

.feature-icon-img {
  position: absolute;
  top: 50px;
  left: 36px;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.feature-body {
  position: absolute;
  left: 39px;
  right: 39px;
  bottom: 36px;
  margin: 0;
  padding: 0;
}

.feature-title {
  height: 34px;
  font-family: var(--font-55s);
  font-size: 24px;
  line-height: 34px;
  color: var(--black);
  margin: 0;
  overflow: hidden;
}

.feature-tag {
  display: block;
  height: 29px;
  font-family: var(--font-55s);
  font-size: 20px;
  line-height: 20px;
  color: var(--dark);
  letter-spacing: 0;
  margin: 0;
  overflow: hidden;
}

.feature-desc {
  min-height: 36px;
  height: auto;
  font-family: var(--font-80s);
  font-size: 22px;
  line-height: 36px;
  color: var(--dark);
  margin-top: 6px;
  margin-bottom: 0;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
}
.feature-desc br {
  display: none;
}
/* ===== News ===== */
.news {
  padding: 166px 0 157px;
  background: var(--white);
}

.news .container {
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1520px) / 2));
  box-sizing: border-box;
}

.news .section-header {
  text-align: center;
  margin-bottom: 54px;
  position: relative;
}

.news .section-header h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.news .section-subtitle {
  font-family: var(--font-55s);
  font-size: 24px;
  line-height: 1.4;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  font-weight: normal;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 15px;
  color: var(--gray);
  max-width: 600px;
  margin: 12px auto 0;
}

.view-more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-featured {
  position: relative;
  width: 100%;
  max-width: 1520px;
  height: 550px;
  margin: 0 auto 24px;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}

.news-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: opacity 0.4s ease;
}

.news-featured img.fading {
  opacity: 0;
}

.news-grid:not(.culture-list) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.culture-carousel {
  overflow: hidden;
  width: 100%;
}

.culture-list {
  will-change: transform;
}

@media (min-width: 1024px) {
  .culture-carousel {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .culture-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    width: 100%;
    max-width: 1520px;
    box-sizing: border-box;
  }

  .culture-item {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

.culture-item {
  position: relative;
  padding: 28px 0 0;
  cursor: pointer;
  color: #AAAAAA;
  transition: color 0.3s;
}

.culture-item-inner {
  display: block;
}

.culture-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #AAAAAA;
}

.culture-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #DA291C;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}

.culture-item.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.culture-item.active {
  color: var(--black);
}

.culture-item h4 {
  font-family: var(--font-80s);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: inherit;
}

.culture-en {
  display: block;
  font-family: var(--font-80s);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-top: 4px;
  color: inherit;
}

.culture-desc {
  font-family: var(--font-55s);
  font-size: 16px;
  line-height: 1.5;
  margin: 15px 0 0;
  color: inherit;
  letter-spacing: 2px;
  text-align: justify;
}

.culture-mobile {
  display: none;
}

.culture-desktop {
  display: block;
}

/* ===== Mission (Dark) ===== */
.mission {
  background: var(--black);
  padding: 0 0 138px;
  color: var(--white);
}

.mission .container {
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1520px) / 2));
  box-sizing: border-box;
}

.mission-inner {
  display: grid;
  grid-template-columns: minmax(0, 761fr) minmax(0, 759fr);
  gap: 0;
  align-items: start;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.mission-left {
  padding-top: 134px;
  min-width: 0;
}

.mission-line {
  width: min(425px, 100%);
  height: 4px;
  background: var(--white);
  margin: 0 0 55px;
}

.mission-left h2 {
  font-family: var(--font-80s);
  font-weight: normal;
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
  max-width: min(472px, 100%);
}

.mission-left h2 span {
  display: none;
}

.mission-en {
  font-family: var(--font-80s);
  font-size: 27.5px;
  line-height: 1.2;
  color: #fff;
  max-width: min(472px, 100%);
  margin: 0 0 110px;
}

.mission-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.mission-link img.mission-link-arrow {
  display: block;
  width: 18px;
  height: 15px;
  flex-shrink: 0;
  margin-top: -10px;
}

.mission-link-text {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  padding-bottom: 10px;
}

.mission-link-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.mission-link:hover .mission-link-text::after {
  transform: scaleX(0);
  transform-origin: right center;
}

.mission-right {
  padding-top: calc(134px + 4px);
  min-width: 0;
  width: 100%;
  justify-self: stretch;
}

.mission-accordion {
  width: 100%;
}

.mission-acc-item {
  border-bottom: 1px solid #888888;
}

.mission-acc-item:first-child {
  border-top: 1px solid #888888;
}

.mission-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 38px 0;
  border: none;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.mission-acc-title {
  font-family: var(--font-80s);
  font-size: 24px;
  line-height: 1.3;
  font-weight: normal;
}

.mission-acc-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 16px;
}

.mission-acc-arrow img {
  display: block;
  width: 32px;
  height: 16px;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-acc-item.is-open .mission-acc-arrow img {
  transform: scaleY(-1);
}

.mission-acc-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.mission-acc-panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 38px;
  font-family: var(--font-55s);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.mission-acc-block + .mission-acc-block {
  margin-top: 20px;
}

.mission-acc-block h5 {
  font-family: var(--font-80s);
  font-size: 14px;
  line-height: 1.7;
  font-weight: normal;
  color: var(--white);
}

.mission-acc-block p {
  font-family: var(--font-55s);
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 1520px) and (min-width: 1025px) {
  .mission .container {
    padding: 0 clamp(24px, 4vw, 48px);
  }

  .mission-inner {
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    column-gap: clamp(20px, 3vw, 48px);
    max-width: 100%;
  }

  .mission-left {
    padding-top: clamp(80px, 10vw, 134px);
  }

  .mission-right {
    padding-top: clamp(84px, 10vw, 138px);
  }

  .mission-line {
    margin-bottom: clamp(48px, 7vw, 55px);
  }

  .mission-left h2 {
    font-size: clamp(32px, 3.5vw, 48px);
  }

  .mission-en {
    font-size: clamp(20px, 2.2vw, 27.5px);
    margin-bottom: clamp(100px, 4.5vw, 110px);
  }

  .mission-acc-header {
    padding: clamp(28px, 3vw, 38px) 0;
  }

  .mission-acc-title {
    font-size: clamp(20px, 2vw, 24px);
  }
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .mission-inner {
    grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
    column-gap: clamp(16px, 2vw, 32px);
  }
}

/* ===== Image Break ===== */
.image-break {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.image-break-bg {
  position: absolute;
  left: 0;
  top: -6%;
  width: 100%;
  height: 112%;
  background: url('../images/5.jpg') center center / cover no-repeat;
  will-change: transform;
}

/* ===== Community Grid ===== */
.community {
  padding: 170px 0 0;
  background: var(--white);
}

.community .container {
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1760px) / 2));
  margin: 0 auto;
  box-sizing: border-box;
}

.community .section-header h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  line-height: 1.2;
  font-weight: normal;
  margin: 0 0 3px;
}

.community .section-subtitle {
  font-family: var(--font-55s);
  font-size: 24px;
  line-height: 1.4;
  font-weight: normal;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.community .section-desc {
  font-family: var(--font-55s);
  max-width: 1102px;
  font-size: 24px;
  color: #474747;
  line-height: 1.5;
  margin: 28px auto 0;
}

.community .section-header {
  margin-bottom: 90px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  box-sizing: border-box;
}

.community-card {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  clip-path: inset(0 round 8px);
  isolation: isolate;
  transform: translateZ(0);
}

.community-bg {
  position: absolute;
  left: 0;
  top: -8%;
  width: 100%;
  height: 116%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
  transition: transform 0.5s ease;
}

.community-card:hover .community-bg {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
}

.community-mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 43px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 28%,
    rgba(0, 0, 0, 0.2) 55%,
    transparent 100%
  );
}

.community-mask-main {
  width: 100%;
}

.community-desc-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.community-card:hover .community-desc-wrap {
  max-height: 140px;
}

.community-desc-inner {
  padding-top: 20px;
  padding-bottom: 7px;
}

.community-desc {
  font-family: var(--font-55s);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  padding: 0;
}

.community-mask h3 {
  font-family: var(--font-80s);
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
}

.community-en-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding-top: 5px;
}

.community-en {
  font-family: var(--font-80s);
  font-size: 20px;
  line-height: 1.1;
}

.community-plus {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.community-plus img {
  display: block;
  width: 24px;
  height: 23px;
}

/* ===== Awards ===== */
.awards {
  padding: 179px 0 0;
  background: var(--white);
}

.awards .container {
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1520px) / 2));
  box-sizing: border-box;
}

.awards-grid {
  display: grid;
  grid-template-columns: minmax(0, 492fr) minmax(0, 534fr) minmax(0, 494fr);
  gap: 0;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  box-sizing: border-box;
}

.awards-header {
  display: grid;
  grid-template-columns: minmax(0, 758fr) minmax(0, 762fr);
  gap: 0;
  align-items: start;
  margin-bottom: 83px;
  width: 100%;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.awards-head-left {
  flex-shrink: 0;
}

.awards-title-wrap {
  display: block;
}

.awards-line {
  width: 390px;
  max-width: 100%;
  height: 4px;
  background: #DA291C;
  margin: 0 0 16px;
}

.awards-head-left h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 8px;
}

.awards-subtitle {
  font-family: var(--font-55s);
  font-size: 24px;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: 0;
  margin: 0;
}

.awards-head-right {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  padding-top: 20px;
  max-width: none;
  min-width: 0;
}

.awards-head-right p {
  font-family: var(--font-80s);
  font-size: 24px;
  font-weight: normal;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}

.award-card {
  padding: 0 40px 40px 0;
  background: var(--white);
  box-sizing: border-box;
}

.award-card:nth-child(3n+1) {
  padding-right: 38px;
  padding-left: 0;
}

.award-card:nth-child(3n+2) {
  padding-right: 40px;
  padding-left: 38px;
}

.award-card:nth-child(3n) {
  padding-right: 0;
  padding-left: 40px;
}

.award-card:nth-last-child(-n+3) {
  padding-bottom: 40px;
}

.award-card:not(:nth-last-child(-n+3)) {
  padding-bottom: 40px;
}

/* 第二行起：距上方横线 40px */
.award-card:nth-child(n+4) {
  padding-top: 40px;
}

.award-inner {
  position: relative;
}

/* 下框线：宽 451px，距 award-name 下方 40px */
.award-card:not(:nth-last-child(-n+3)) .award-inner::before {
  content: '';
  position: absolute;
  left: 0;
  right: auto;
  width: 451px;
  max-width: 100%;
  bottom: -40px;
  height: 1px;
  background: #D9D9D9;
}

/* 右框线：与卡片内容同高，第一行顶对齐 */
.award-card:not(:nth-child(3n)) .award-inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  width: 1px;
  height: auto;
  background: #D9D9D9;
}

.award-card:nth-child(3n+1) .award-inner::after {
  right: -38px;
}

.award-img-box {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
}

.award-img-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.award-card:hover .award-img-box img {
  transform: scale(1.06);
}

.award-name {
  margin-top: 19px;
  margin-bottom: 0;
  font-family: var(--font-80s);
  font-size: 30px;
  font-weight: normal;
  color: var(--black);
  text-align: center;
  line-height: 1.5;
}
.award-name .jiange {
  display: none;
}
@media (max-width: 1500px) {
  .awards-grid {
    align-items: start;
  }
}

/* ===== Employee Stories ===== */
.stories {
  padding: 113px 0 0;
  background: var(--white);
}

.stories .container {
  overflow: visible;
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1520px) / 2));
  box-sizing: border-box;
}

.stories-header {
  text-align: left;
  margin-bottom: 59px;
}

.stories-header h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 10px;
}

.stories-lead {
  font-family: var(--font-55s);
  font-size: 24px;
  color: var(--dark);
  line-height: 1.4;
  font-weight: normal;
  max-width: 560px;
  margin: 0;
}

.stories-carousel {
  position: relative;
  width: 100%;
  max-width: 1520px;
  margin-left: 0;
  margin-right: auto;
  box-sizing: border-box;
}

.stories-swiper {
  width: 100%;
  max-width: 1520px;
  margin-left: 0;
  margin-right: 0;
  min-width: 0;
  overflow: hidden;
}

.stories-nav {
  position: absolute;
  top: calc((280px - 64px) / 2);
  margin-top: 0;
  transform: none;
  width: 64px;
  height: 64px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.3s;
}

.stories-prev {
  left: calc(100% - 107%);
}

.stories-next {
  right: calc(100% - 107%);
}

/* ===== Responsive: ≤1850px ===== */
@media (max-width: 1850px) {
  .feature-desc {
    font-size: 20px;
  }
}
@media (min-width: 1600px) and (max-width: 1740px) {
  .stories-prev {
    left: calc(100% - 105.5%);
    width: 55px;
    height: 55px;
  }
  
  .stories-next {
    right: calc(100% - 105.5%);
    width: 55px;
    height: 55px;
  }
}
@media (min-width: 1024px) and (max-width: 1600px) {

  .feature-card {
    aspect-ratio: 141 / 100;
    min-height: auto;
  }
  .feature-icon-img {
    position: absolute;
    top: clamp(32px, calc(32px + (50 - 32) * (100vw - 1024px) / 576), 50px);
    left: clamp(23.04px, calc(23.04px + (36 - 23.04) * (100vw - 1024px) / 576), 36px);
    max-width: clamp(44.8px, calc(44.8px + (70 - 44.8) * (100vw - 1024px) / 576), 70px);
    max-height: clamp(44.8px, calc(44.8px + (70 - 44.8) * (100vw - 1024px) / 576), 70px);
    object-fit: contain;
    aspect-ratio: 1 / 1;
  }
  .feature-title {
    height: clamp(21.76px, calc(21.76px + (34 - 21.76) * (100vw - 1024px) / 576), 34px);
    font-family: var(--font-55s);
    font-size: clamp(15.36px, calc(15.36px + (24 - 15.36) * (100vw - 1024px) / 576), 24px);
    line-height: clamp(21.76px, calc(21.76px + (34 - 21.76) * (100vw - 1024px) / 576), 34px);
    color: var(--black);
    margin: 0;
    overflow: hidden;
}

.feature-tag {
    display: block;
    height: clamp(18.56px, calc(18.56px + (29 - 18.56) * (100vw - 1024px) / 576), 29px);
    font-family: var(--font-55s);
    font-size: clamp(12.8px, calc(12.8px + (20 - 12.8) * (100vw - 1024px) / 576), 20px);
    line-height: clamp(12.8px, calc(12.8px + (20 - 12.8) * (100vw - 1024px) / 576), 20px);
    color: var(--dark);
    letter-spacing: 0;
    margin: 0;
    overflow: hidden;
}

.feature-desc {
    min-height: clamp(23.04px, calc(23.04px + (36 - 23.04) * (100vw - 1024px) / 576), 36px);
    height: auto;
    font-family: var(--font-80s);
    font-size: clamp(14.08px, calc(14.08px + (22 - 14.08) * (100vw - 1024px) / 576), 22px);
    line-height: clamp(23.04px, calc(23.04px + (36 - 23.04) * (100vw - 1024px) / 576), 36px);
    color: var(--dark);
    margin-top: clamp(3.84px, calc(3.84px + (6 - 3.84) * (100vw - 1024px) / 576), 6px);
    margin-bottom: 0;
    overflow: visible;
    white-space: normal;
    word-break: break-word;
}
  .stories-prev {
    left: 0;
  }

  .stories-next {
    right: 0;
  }
}

.stories-nav img {
  display: block;
  width: 11px;
  height: 20px;
}

.stories-nav:hover {
  border-color: var(--black);
}

.stories-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.stories-pagination {
  display: none;
}

.story-card {
  background: transparent;
  height: 100%;
}

.stories-swiper .swiper-slide {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.story-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  min-height: 280px;
}

.story-photo img {
  position: absolute;
  top: -2%;
  left: 0;
  width: 100%;
  height: 102%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
  transition: transform 0.5s ease;
}

.story-card:hover .story-photo img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
}

.story-info {
  padding: 27px 10px 0;
}

@media (min-width: 1024px) {
  .story-info {
    position: relative;
    box-sizing: border-box;
  }

  .story-info.has-divider {
    padding-right: 16px;
  }

  .story-info.has-divider::after {
    content: '';
    position: absolute;
    top: 27px;
    bottom: 0;
    right: -8px;
    width: 1px;
    background: #D9D9D9;
  }
}

.story-name {
  display: inline;
  font-family: var(--font-80s);
  font-size: 28px;
  font-weight: normal;
  color: var(--dark);
  line-height: 1;
  margin: 0 0 15px;
  max-width: 100%;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size 0.35s ease;
}

.story-name:hover {
  background-size: 100% 2px;
  background-position: 0 100%;
  transition:
    background-position 0s linear,
    background-size 0.35s ease;
}

.story-desc {
  max-width: 100%;
  font-family: var(--font-55s);
  font-size: 16px;
  color: #474747;
  line-height: 1.8;
  margin-top: 15px;
  text-align: justify;
}

.story-author {
  display: block;
  margin-top: 30px;
  font-family: var(--font-80s);
  font-size: 20px;
  color: var(--dark);
  font-weight: normal;
}

/* ===== Contact Title ===== */
.contact-title {
  text-align: center;
  padding: 141px 0 47px;
  background: var(--white);
}

.contact-title h2 {
  font-family: var(--font-80s);
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  color: var(--dark);
}

.contact-subtitle {
  font-family: var(--font-55s);
  font-size: 24px;
  font-weight: normal;
  color: var(--dark);
  margin: 0;
}

/* ===== Contact Bar ===== */
.contact-bar {
  background: var(--black);
  padding: 115px 0 91px;
  margin-bottom: 0;
}

.contact-bar .container {
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100% - 1520px) / 2));
  box-sizing: border-box;
}

.contact-grid {
  --contact-line-gap: clamp(102px, 8vw, 150px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-item {
  position: relative;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  min-width: 0;
  box-sizing: border-box;
  padding-left: var(--contact-line-gap);
  padding-right: var(--contact-line-gap);
}

.contact-item:first-child {
  padding-left: clamp(8px, 1.2vw, 20px);
}

.contact-item:last-child {
  padding-right: clamp(8px, 1.2vw, 20px);
}

.contact-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 104px;
  background: #666666;
  z-index: 1;
}

.contact-item:nth-child(2) .contact-text {
  white-space: nowrap;
}

.contact-icon {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contact-icon img {
  display: block;
  width: auto;
  height: auto;
}

.contact-text {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-80s);
  font-size: clamp(22px, 1.85vw, 30px);
  font-weight: normal;
  color: var(--white);
  line-height: 1.75;
  text-align: center;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.contact-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: var(--blue-light);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}

.contact-item:hover .contact-text::after {
  transform: scaleX(1);
  transform-origin: left center;
}

@media (max-width: 1023px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
    min-width: 0;
  }

  .contact-bar .container {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .contact-item {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-item:first-child,
  .contact-item:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-item:not(:last-child) {
    padding-bottom: 60px;
  }

  .contact-item:not(:first-child) {
    padding-top: 60px;
  }

  .contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #666666;
    z-index: 1;
  }

  .contact-text {
    white-space: normal;
    max-width: 100%;
    word-break: break-word;
  }

  .contact-item:nth-child(2) .contact-text {
    white-space: normal;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
}

.contact-bar + .footer {
  margin-top: -1px;
}

.footer-bottom {
  padding: 0 0 21px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-copy {
  font-family: var(--font-55s);
  font-size: 16px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.footer-copy a {
  font-family: inherit;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  display: inline;
  margin-right: 30px;
  white-space: nowrap;
}

.footer-copy a:last-child {
  margin-right: 0;
}

.footer-copy a:hover {
  color: var(--white);
}

.footer-legal {
  flex-shrink: 0;
  font-family: var(--font-55s);
  font-size: 16px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-legal:hover {
  color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero {
    height: auto;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    height: auto;
    container-type: inline-size;
  }

  .hero-media {
    position: relative;
    inset: auto;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-top: 50px;
  }

  .hero-bg {
    display: none;
  }

  .m-hero-bg {
    display: block;
  }

  .hero-bg,
  .m-hero-bg,
  .hero-video {
    position: absolute;
    inset: 0;
  }

  .hero-media::after {
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 60%);*/
    background:unset;
  }

  .hero-video-control {
    top: calc(100cqw - 30px);
    bottom: auto;
  }

  .hero-content {
    position: static;
    top: auto;
    height: auto;
    display: block;
    flex: 1;
    background: var(--white);
  }

  .hero-inner .container {
    width: 100%;
    max-width: none;
    padding: 44px 14px 0;
    box-sizing: border-box;
  }

  .hero-card-wrap {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    max-width: none;
  }

  .hero-card {
    display: none;
  }

  .hero-panel {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    display: block;
    padding: 0;
    margin: 0;
    transform: none;
  }

  .hero-card-top {
    padding: 0;
  }

  .hero-card-top h1 {
    width: auto;
    height: auto;
    overflow: visible;
    font-family: var(--font-80s);
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 16px;
  }

  .hero-card-text {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
    margin-top: 16px;
    display: block;
  }

  .hero-card-text p {
    font-family: var(--font-55s);
    font-size: 14px;
    line-height: 1.65;
    color: var(--dark);
  }

  .hero-card-btns {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    margin-top: 28px;
  }

  .hero-card-btns .btn-primary {
    width: auto;
    height: auto;
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: normal;
  }

  .stats {
    padding: 80px 0 80px;
  }

  .stats-grid {
    --stats-line-gap: 24px;
    --stats-item-padding-y: 36px;
    --stats-item-padding-x: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    max-width: none;
    gap: 0;
  }

  .stat-item:not(:last-child)::after {
    display: none;
    content: none;
  }

  .stat-item {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    padding: var(--stats-item-padding-y) var(--stats-item-padding-x) calc(var(--stats-line-gap) / 2);
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    padding: calc(var(--stats-line-gap) / 2) var(--stats-item-padding-x) var(--stats-item-padding-y);
  }

  .stat-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0;
  }

  .stat-num {
    line-height: 1;
  }

  .stat-item:nth-child(1) { order: 1; }
  .stat-item:nth-child(2) { order: 3; }
  .stat-item:nth-child(3) { order: 2; }
  .stat-item:nth-child(4) { order: 4; }

  .stat-item::after,
  .stat-item::before {
    display: none;
  }

  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(2)::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    width: 1px;
    background: #D9D9D9;
    pointer-events: none;
    z-index: 1;
    height: calc(100% - 40px);
  }

  .stat-item:nth-child(1)::before,
  .stat-item:nth-child(3)::before {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background: #D9D9D9;
    pointer-events: none;
    z-index: 1;
    bottom: 0;
  }

  .stat-item:nth-child(1)::before {
    left: 0;
    right: calc(var(--stats-line-gap) / 2 + 20px);
  }

  .stat-item:nth-child(3)::before {
    left: calc(var(--stats-line-gap) / 2 + 20px);
    right: 0;
  }

  .container,
  .stats .container,
  .features .container,
  .news .container,
  .mission .container,
  .community .container,
  .awards .container,
  .stories .container,
  .contact-bar .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .news {
    margin-top: 80px;
    padding: 30px 0 32px;
    background-color: #F2F2F2;
    margin-bottom: 32px;
  }

  .news .culture-section-head {
    text-align: left;
    margin-bottom: 32px;
  }

  .news .culture-section-head h2 {
    font-size: 26px;
  }

  .news .culture-section-head .section-subtitle {
    font-size: 16px;
  }

  .culture-desktop {
    display: none;
  }

  .culture-mobile {
    display: block;
  }

  .culture-mobile-copy,
  .culture-mobile-media {
    opacity: 1;
    transition: opacity 0.35s ease;
  }

  .culture-mobile-panel.is-switching .culture-mobile-copy,
  .culture-mobile-panel.is-switching .culture-mobile-media {
    opacity: 0;
  }

  .culture-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 52px;
  }

  .culture-mobile-nav-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 0 16px;
    margin: 0;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: var(--black);
    transition: color 0.3s;
  }

  .culture-mobile-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: transparent;
  }

  .culture-mobile-nav-item.active {
    color: var(--black);
  }

  .culture-mobile-nav-item.active::before {
    background: #DA291C;
  }

  .culture-mobile-nav-cn {
    display: block;
    font-family: var(--font-80s);
    font-size: 20px;
    line-height: 1.2;
  }

  .culture-mobile-nav-en {
    display: block;
    font-family: var(--font-80s);
    font-size: 14px;
    line-height: 1.4;
    margin-top: 2px;
  }

  .culture-mobile-title {
    font-family: var(--font-80s);
    font-size: 20px;
    line-height: 1.2;
    color: var(--black);
  }
  .culture-mobile-en {
    line-height: 1.4;
  }
  .culture-mobile-panel > .culture-mobile-en {
    font-family: var(--font-80s);
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--black);
  }

  .culture-mobile-desc {
    font-family: var(--font-55s);
    font-size: 14px;
    line-height: 1.65;
    color: var(--black);
    margin: 10px 0 24px;
  }

  .culture-mobile-media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16 / 10;
  }

  .culture-mobile-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
  }

  .culture-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    padding: 14px 22px;
    font-family: var(--font-55s);
    font-size: 14px;
    font-weight: 600;
    border-radius: 32px;
  }

  .culture-mobile-btn img.btn-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .mission .container {
    padding: 0 14px;
  }

  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-left { padding-top: 80px; }
  .mission-line { width: 100%; margin-bottom: 48px; }
  .mission-left h2 { font-size: 32px; }
  .mission-left h2 br { display: none; }
  .mission-left h2 span { display: inline; }
  .mission-en { font-size: 22px; margin-bottom: 40px;font-family: var(--font-55s);}
  .mission-right { padding-top: 0; justify-self: stretch; }
  .features .container {
    padding: 0 14px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: none;
    height: auto;
  }
  .feature-card {
    width: 100%;
    aspect-ratio: 347 / 180;
    height: auto;
    min-height: 0;
    padding: 35px 30px 15px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 70px;
    align-items: start;
  }

  .feature-icon-img {
    position: static;
    top: auto;
    left: auto;
    width: 60px;
    height: 60px;
    margin: 0;
    object-fit: contain;
  }

  .feature-body {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    min-width: 0;
    text-align: left;
    align-self: start;
  }

  .feature-title,
  .feature-tag,
  .feature-desc {
    height: auto;
    overflow: visible;
  }

  .feature-title {
    font-family: var(--font-55s);
    font-size: 16px;
    line-height: 1.2;
    font-weight: normal;
  }

  .feature-tag {
    font-family: var(--font-55s);
    font-size: 14px;
    line-height: 1.2;
    font-weight: normal;
    margin-top: 4px;
  }

  .feature-desc {
    font-family: var(--font-80s);
    font-size: 20px;
    line-height: 1.5;
    font-weight: normal;
    margin-top: 8px;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .feature-desc br {
    display: block;
  }
  .news-grid:not(.culture-list) { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }

  .award-card {
    padding: 0 40px 52px 0;
  }

  .award-card:nth-child(2n+1) {
    padding-left: 0;
    padding-right: 40px;
  }

  .award-card:nth-child(2n) {
    padding-right: 0;
    padding-left: 40px;
  }

  .award-card:nth-child(n+3) {
    padding-top: 40px;
  }

  .award-card:nth-last-child(-n+2) {
    padding-bottom: 36px;
  }

  .award-card:not(:nth-last-child(-n+3)) .award-inner::before {
    display: none;
  }

  /* 下框线：最后一行不显示；奇数总数时倒数第 2 项仍在倒数第二行，需保留下框线 */
  .award-card:not(:last-child):not(:nth-last-child(2):nth-child(odd)) .award-inner::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    width: 451px;
    max-width: 100%;
    bottom: -40px;
    height: 1px;
    background: #D9D9D9;
  }

  .award-card:not(:nth-child(3n)) .award-inner::after {
    display: none;
  }

  .award-card:not(:nth-child(2n)) .award-inner::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40px;
    width: 1px;
    height: auto;
    background: #D9D9D9;
  }

  .award-card:last-child:nth-child(odd) {
    padding-bottom: 36px;
  }

  .award-card:last-child:nth-child(odd) .award-inner::before {
    display: none;
  }
  .community .container {
    padding: 0 14px;
  }

  .community-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    gap: 20px;
  }
  .community .section-header {margin-bottom: 32px;}
  .community-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 16px;
    clip-path: none;
    isolation: auto;
    transform: none;
    background-color: #F2F2F2;
  }

  .community-bg {
    position: relative;
    top: auto;
    left: auto;
    flex-shrink: 0;
    /*
    width: 95%;
    margin: 3% auto;*/
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center top;
    border-radius: 0;
    will-change: auto;
    transform: none !important;
    --parallax-y: 0px !important;    
    border-radius: 10px 10px 0 0!important;
  }

  .community-card:hover .community-bg {
    transform: none !important;
  }

  .community-mask {
    position: static;
    inset: auto;
    display: block;
    flex: 1;
    padding: 60px 16px 20px;
    color: var(--black);
    border-radius: 0;
    background: none;
  }

  .community-mask h3 {
    font-size: 20px;
    line-height: 1.2;
    color: var(--black);
  }

  .community-en-row {
    display: block;
    padding-top: 4px;
  }

  .community-en {
    font-size: 18px;
    line-height: 1.2;
    color: var(--black);
  }

  .community-plus {
    display: none;
  }

  .community-desc-wrap {
    max-height: none;
    overflow: visible;
  }

  .community-desc-inner {
    padding-top: 6px;
    padding-bottom: 0;
  }

  .community-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
  }
  .story-photo {
    aspect-ratio: 4 / 2.5;
  }
}

@media (max-width: 1023px) {
  .stories-carousel {
    display: block;
    width: 100%;
    margin-left: 0;
  }

  .stories-nav {
    display: none;
  }

  .stories-swiper .stories-pagination.swiper-pagination {
    display: block;
    position: static;
    margin-top: 40px;
    text-align: center;
    line-height: 0;
  }

  .stories-swiper .stories-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid var(--black);
    opacity: 1;
    vertical-align: middle;
  }

  .stories-swiper .stories-pagination .swiper-pagination-bullet-active {
    background: var(--black);
    border-color: var(--black);
  }
}

@media (max-width: 768px) {
  .awards {
    padding-top: 102px;
  }

  .awards-header {
    grid-template-columns: 1fr;
    margin-bottom: 35px;
  }
  .awards-line {
    width: 100%;
  }
  .awards-head-left h2 {font-size: 26px;line-height: 1.2;margin-bottom: 0;}
  .awards-subtitle {font-size: 16px;line-height: 1.4;}
  .awards-head-right {
    position: static;
    left: auto;
    top: auto;
    padding-top: 0;
    margin-top: 24px;
  }
  .awards-head-right p {font-size: 14px;}

  .award-card {
    padding: 0 0 20px 0;
  }

  .award-card:nth-child(2n+1) {
    padding-left: 0;
    padding-right: 12px;
  }

  .award-card:nth-child(2n) {
    padding-right: 0;
    padding-left: 12px;
  }

  .award-card:nth-child(n+3) {
    padding-top: 0;
  }

  .award-card:nth-last-child(-n+2) {
    padding-bottom: 20px;
  }

  .award-card:not(:last-child):not(:nth-last-child(2):nth-child(odd)) .award-inner::before {
    bottom: -20px;
  }

  .award-card:not(:nth-child(2n)) .award-inner::after {
    right: -12px;
    top: 0;
    bottom: 0;
    height: auto;
  }

  .award-card:last-child:nth-child(odd) {
    padding-bottom: 20px;
  }

  .award-img-box img {
    width: 100%;
    height: auto;
  }

  .award-name {
    margin-top: 12px;
    font-size: 18px;
  }
  .award-name br {
    display: none!important;
  }
  .award-name .jiange {
    display: inline;
  }
  .stats .container {
    max-width: var(--container);
    padding: 0 14px;
  }
  .stories {
    padding-top: 80px;
  }
  .stats-grid {
    --stats-item-padding-y: 28px;
    --stats-item-padding-x: 12px;
  }

  .news-grid:not(.culture-list) { grid-template-columns: 1fr; }
  .view-more { position: static; transform: none; margin-top: 16px; display: inline-flex; }

  .mission-acc-title { font-size: 18px; }
  .mission-acc-header { padding: 28px 0; }
  .mission-left {
    padding-top: 32px;
  }
  .mission-left h2 { font-size: 32px; line-height: 1.2;}
  .mission-en { font-size: 20px;line-height: 1.4;}
  .mission-link {gap: 6px;}
  .mission-link-text {font-size: 14px;}
  .mission-link img.mission-link-arrow {width: 12px;height: 12px;}
  .mission-acc-arrow img {
    width: 28px;height: 14px;
  }
  .image-break { height: 300px; }
  .image-break-bg {top: -12%;}
  .mission {
    padding-bottom: 64px;
  }
  .community {
    padding-top: 64px;
  }
  .community .section-header h2 {font-size: 26px;margin-bottom: 0;}
  .community .section-subtitle {font-size: 16px;}
  .community .section-desc {font-size: 14px;}

  .section-header h2,
  .stories-header h2 { font-size: 26px; line-height: 1.2;margin-bottom: 2px;}
  .stories-lead {font-size: 16px;line-height: 1.4;}
  .stories-header {margin-bottom: 32px;}
  .story-info {
    padding-top: 15px;
  }
  .story-photo {
    aspect-ratio: 4 / 2.5;
    min-height: 220px;
  }
  .story-name {
    font-size: 20px;
  }
  .story-desc {
    font-size: 14px;
  }
  .story-author {
    font-size: 18px;
  }
  .contact-title h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .contact-title {padding: 60px 0 27px;}
  .contact-subtitle {font-size: 16px;line-height: 1.4;}
  .contact-text {font-size: 20px;}
  .contact-bar {padding: 63px 0 130px;}
}

@media (max-width: 480px) {
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 14px; }
}
@media (max-width: 430px) {
  .feature-desc { 
    font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  }
  .feature-desc br {
    display: block;
  }
  .award-name {
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  }
}
