:root {
  --ink: #13202b;
  --muted: #637282;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --line: #dce5e2;
  --green: #0d7b52;
  --blue: #0c5d8b;
  --gold: #c79a39;
  --deep: #0b1c26;
  --deep-2: #102f3c;
  --shadow: 0 18px 44px rgba(12, 31, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 84px);
  color: #fff;
  background: rgba(8, 24, 32, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
}

.brand-mark::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-label span {
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 144px clamp(24px, 6vw, 84px) 62px;
  color: #fff;
  background: #0e2634;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 26, 0.94) 0%, rgba(9, 32, 43, 0.74) 44%, rgba(12, 58, 64, 0.28) 100%),
    url("../../img/图片10.png") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(1060px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #f0c86a;
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #f0c86a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.04;
  font-weight: 900;
}

.hero p {
  width: min(780px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #11222a;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1060px, 100%);
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  gap: 1px;
}

.stat {
  padding: 24px 22px;
  background: rgba(7, 23, 31, 0.72);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 28px;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.quick-panel {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -34px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1060px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.logo-showcase {
  padding-top: 58px;
  padding-bottom: 40px;
}

.logo-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 980px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(12, 31, 42, 0.08);
}

.logo-media {
  height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.logo-media img {
  object-fit: contain;
}

.logo-copy h2 {
  margin-bottom: 14px;
}

.logo-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

section {
  padding: 96px clamp(24px, 6vw, 84px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.66fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.16;
  font-weight: 900;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.image-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #dfe7e4;
  box-shadow: var(--shadow);
}

.image-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  background: rgba(9, 29, 38, 0.86);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.text-panel h3,
.service h3,
.project-copy h3,
.company h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.28;
}

.text-panel p,
.service p,
.project-copy p,
.company p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.dark {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
}

.dark .kicker {
  color: #f0c86a;
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.company-timeline {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.time-item {
  min-height: 150px;
  padding: 26px;
  background: #fff;
}

.time-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 23px;
}

.time-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.company-grid,
.services,
.achievement-grid,
.gallery-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.company,
.service,
.feature,
.achievement,
.detail-card,
.profile-card,
.gallery-item,
.partner,
.project {
  border-radius: 8px;
}

.company {
  display: block;
  min-height: 300px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}

.company:hover,
.service:hover,
.project:hover {
  transform: translateY(-4px);
}

.company .num {
  display: block;
  margin-bottom: 42px;
  color: #f0c86a;
  font-size: 14px;
  font-weight: 900;
}

.company p {
  color: rgba(255, 255, 255, 0.72);
}

.link,
.company .link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.service {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(12, 31, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  box-shadow: var(--shadow);
}

.service-img {
  height: 236px;
  background: #dfe7e4;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.service-tag,
.badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: rgba(13, 123, 82, 0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.service .link {
  margin-top: auto;
}

.projects {
  display: grid;
  gap: 28px;
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.project-img {
  min-height: 420px;
  background: #dfe7e4;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.advantage {
  min-height: 170px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.08);
}

.advantage strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
}

.advantage span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

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

.partner {
  min-height: 154px;
  padding: 24px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.partner strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 17px;
}

.partner span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.vision {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #102633;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 32, 0.9), rgba(8, 24, 32, 0.45)),
    url("../../img/dibu.jpg") center / cover;
}

.vision-inner {
  position: relative;
  width: min(980px, 100%);
  padding: 0 clamp(24px, 6vw, 84px);
}

.vision h2 {
  width: min(760px, 100%);
}

.vision p {
  width: min(700px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.8;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 54px clamp(24px, 6vw, 84px);
  color: #fff;
  background: #07131e;
}

.footer h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
}

.footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.contact-box {
  min-width: 250px;
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.sub-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(24px, 6vw, 84px) 64px;
  color: #fff;
  background: #102633;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 28, 0.92), rgba(8, 30, 38, 0.48)),
    var(--hero-image, url("https://images.unsplash.com/photo-1459865264687-595d652de67e?auto=format&fit=crop&w=1800&q=85")) center / cover;
}

.sub-hero-content {
  position: relative;
  width: min(980px, 100%);
}

.sub-hero p {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.75;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}

.company-photo-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dfe7e4;
  box-shadow: 0 14px 34px rgba(12, 31, 42, 0.08);
}

.company-photo-panel span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(8, 24, 32, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.profile-card,
.detail-card,
.feature,
.achievement {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.profile-card {
  background: var(--soft);
}

.profile-card h2,
.detail-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.profile-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.profile-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.profile-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
}

.profile-list span,
.detail-card p,
.honor-list li,
.feature p,
.achievement p {
  color: var(--muted);
  line-height: 1.8;
}

.feature strong,
.achievement strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 20px;
}

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

.gallery-item {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #dfe7e4;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(8, 24, 32, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.honor-list {
  margin: 0;
  padding-left: 20px;
}

.honor-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 20px) / 2);
  gap: 20px;
  padding-bottom: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.honor-scroll::-webkit-scrollbar {
  display: none;
}

.honor-item {
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) minmax(220px, 1fr);
  gap: 18px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(12, 31, 42, 0.08);
  scroll-snap-align: start;
}

.honor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.honor-copy span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.honor-copy strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.22;
}

.honor-image {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.honor-image img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.honor-placeholder {
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.honor-placeholder strong {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 22px;
}

.honor-placeholder span {
  line-height: 1.7;
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: #f0c86a;
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px clamp(24px, 6vw, 84px) 18px;
    background: rgba(8, 24, 32, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-stats,
  .services,
  .company-grid,
  .achievement-grid,
  .feature-grid,
  .partner-grid,
  .advantage-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .intro-grid,
  .company-timeline,
  .project,
  .footer,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .project-img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .nav {
    height: 64px;
    padding: 0 18px;
  }

  .brand-mark {
    gap: 9px;
    font-size: 17px;
  }

  .brand-mark::before {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }

  .nav-links {
    top: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 72vh;
    padding: 96px 18px 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .eyebrow::before {
    width: 28px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: auto;
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .quick-panel {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: -22px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-color: var(--line);
    background: var(--line);
  }

  .quick-grid .stat {
    padding: 18px 16px;
    background: #fff;
  }

  .quick-grid .stat strong {
    color: var(--ink);
    font-size: 22px;
  }

  .quick-grid .stat span {
    color: var(--muted);
    font-size: 12px;
  }

  .logo-showcase {
    padding: 38px 18px 34px;
  }

  .logo-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .logo-media {
    height: 132px;
  }

  section {
    padding: 54px 18px;
  }

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

  .sub-hero {
    min-height: 52vh;
    padding: 104px 18px 42px;
  }

  .sub-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 22px;
  }

  h2 {
    font-size: 27px;
    line-height: 1.22;
  }

  .section-head p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-stats,
  .services,
  .company-grid,
  .achievement-grid,
  .feature-grid,
  .partner-grid,
  .advantage-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 16px;
  }

  .text-panel,
  .project-copy,
  .profile-card,
  .detail-card,
  .feature,
  .achievement {
    padding: 28px;
  }

  .image-panel {
    min-height: 220px;
  }

  .company-photo-panel {
    min-height: 240px;
  }

  .text-panel h3,
  .service h3,
  .project-copy h3,
  .company h3 {
    font-size: 21px;
  }

  .mobile-stack {
    display: block;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
  }

  .time-item {
    min-height: 116px;
    padding: 18px;
  }

  .time-item strong {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .time-item p {
    font-size: 13px;
    line-height: 1.55;
  }

  .snap-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(264px, 84vw);
    grid-template-columns: none;
    gap: 14px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 28px 10px;
    scroll-padding-inline: 28px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .snap-row::-webkit-scrollbar {
    display: none;
  }

  .snap-row > * {
    scroll-snap-align: start;
  }

  .gallery-grid.snap-row {
    grid-auto-columns: minmax(252px, 78vw);
  }

  .gallery-grid.snap-row .gallery-item {
    min-height: 210px;
  }

  .achievement-grid.snap-row,
  .feature-grid.snap-row {
    grid-auto-columns: minmax(254px, 80vw);
  }

  .company,
  .service,
  .partner {
    min-height: 0;
  }

  .company {
    padding: 24px;
  }

  .company .num {
    margin-bottom: 28px;
  }

  .service-img {
    height: 190px;
  }

  .service-body {
    padding: 22px;
  }

  .project {
    display: flex;
    flex-direction: column;
  }

  .project-img {
    min-height: 215px;
  }

  .project-copy {
    padding: 24px;
  }

  .advantage {
    min-height: 132px;
    padding: 22px;
  }

  .partner {
    padding: 22px;
  }

  .honor-scroll {
    grid-auto-columns: 84vw;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 28px 10px;
    scroll-padding-inline: 28px;
  }

  .honor-item {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .honor-copy strong {
    font-size: 23px;
  }

  .honor-image,
  .honor-placeholder {
    min-height: 220px;
  }

  .service {
    min-height: auto;
  }

  .footer {
    align-items: start;
    padding: 40px 18px;
  }

  .contact-box {
    min-width: 0;
  }
}
