:root {
  --brand: #a82209;
  --brand-dark: #8f1c08;
  --brand-deep: #661205;
  --brand-soft: #fff5f1;
  --brand-wash: #fffaf8;
  --ink: #281b18;
  --muted: #726763;
  --line: #efe1dc;
  --white: #ffffff;
  --gold: #c17c24;
  --footer: #34140d;
  --radius: 8px;
  --shadow: 0 22px 58px rgba(168, 34, 9, 0.12);
  --soft-shadow: 0 12px 30px rgba(168, 34, 9, 0.06);
}

/* Branch locations */
.branch-page {
  padding: 70px 0 88px;
}

.branch-page-heading {
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(0, 1.05fr);
  align-items: end;
  column-gap: 56px;
  row-gap: 0;
}

.branch-page-heading .eyebrow {
  grid-column: 1;
}

.branch-page-heading h1 {
  grid-column: 1;
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.22;
}

.branch-page-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.branch-network-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.branch-network-summary article {
  display: grid;
  align-content: center;
  gap: 3px;
  min-height: 104px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.branch-network-summary article:last-child {
  border-right: 0;
}

.branch-network-summary strong {
  color: var(--brand);
  font-size: 29px;
  line-height: 1.2;
}

.branch-network-summary span {
  color: var(--muted);
  font-size: 14px;
}

.branch-network-map {
  position: relative;
  height: min(650px, 72vh);
  min-height: 540px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    radial-gradient(ellipse at 50% 40%, rgba(168, 34, 9, 0.1), transparent 62%);
  box-shadow: var(--soft-shadow);
}

.branch-network-map-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.branch-network-map-status {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.branch-network-map.is-ready .branch-network-map-status {
  display: none;
}

.branch-network-map-legend {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(40, 27, 24, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.branch-network-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b35;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.branch-network-map-review {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 20px;
  color: rgba(40, 27, 24, 0.38);
  font-size: 10px;
}

.branch-page .branch-location-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.branch-location-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.branch-location-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.25;
}

.branch-location-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.branch-location-groups {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.branch-location-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px 82px;
  gap: 22px;
  padding: 0 19px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.branch-location-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.branch-location-group > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(168, 34, 9, 0.1);
  background: var(--brand-wash);
}

.branch-location-group > header h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 18px;
}

.branch-location-group > header span {
  color: var(--muted);
  font-size: 12px;
}

.branch-location-list {
  display: grid;
  gap: 0;
}

.branch-location-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px 82px;
  align-items: center;
  gap: 22px;
  min-width: 0;
  min-height: 106px;
  padding: 17px 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
  transition: background-color 0.2s ease;
}

.branch-location-item:first-child {
  border-top: 0;
}

.branch-location-item:hover {
  background: #fffdfc;
}

.branch-location-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.branch-location-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.branch-location-item .branch-location-phone {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.branch-location-map-button {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 76px;
  min-height: 62px;
  padding: 8px;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--brand-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.branch-location-map-button i {
  position: relative;
  display: block;
  width: 22px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.branch-location-map-button i::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.branch-location-map-button:hover,
.branch-location-map-button:focus-visible {
  color: var(--brand);
}

.branch-map-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(34, 28, 26, 0.64);
  transition:
    visibility 0.2s ease,
    opacity 0.2s ease;
}

.branch-map-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.branch-map-dialog {
  width: min(960px, 100%);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(30, 20, 17, 0.3);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.branch-map-modal.is-open .branch-map-dialog {
  transform: translateY(0);
}

.branch-map-dialog > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.branch-map-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.branch-map-dialog header > div > p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.branch-map-close {
  position: relative;
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  overflow: hidden;
  font-size: 0;
}

.branch-map-close::before,
.branch-map-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.branch-map-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.branch-map-close:hover,
.branch-map-close:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.branch-map-stage,
.branch-location-tianditu-map {
  position: relative;
  width: 100%;
  height: min(590px, calc(100svh - 180px));
  min-height: 390px;
}

.branch-location-tianditu-map {
  background: var(--brand-wash);
}

.branch-location-tianditu-map > p {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.branch-location-tianditu-map.is-ready > p {
  display: none;
}

.branch-location-tianditu-map .tdt-bottom {
  bottom: 10px;
}

body.branch-map-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .branch-page-heading {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }

  .branch-page-heading .eyebrow,
  .branch-page-heading h1,
  .branch-page-heading > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

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

  .branch-network-summary article:nth-child(2) {
    border-right: 0;
  }

  .branch-network-summary article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .branch-location-table-head {
    grid-template-columns: minmax(0, 1fr) 140px 76px;
  }

  .branch-location-item {
    grid-template-columns: minmax(0, 1fr) 140px 76px;
  }
}

@media (max-width: 720px) {
  .branch-page {
    padding: 42px 0 58px;
  }

  .branch-page-heading h1 {
    font-size: 32px;
  }

  .branch-page-heading > p:last-child {
    font-size: 14px;
  }

  .branch-network-summary {
    margin-top: 30px;
  }

  .branch-network-summary article {
    min-height: 86px;
    padding: 14px;
  }

  .branch-network-summary strong {
    font-size: 24px;
  }

  .branch-network-map {
    height: 420px;
    min-height: 0;
    margin-top: 26px;
  }

  .branch-network-map-legend {
    top: 14px;
    right: 14px;
  }

  .branch-page .branch-location-section {
    margin-top: 0;
    padding-top: 0;
  }

  .branch-location-heading {
    display: block;
  }

  .branch-location-heading h2 {
    font-size: 29px;
  }

  .branch-location-heading > p {
    margin-top: 10px;
    font-size: 14px;
  }

  .branch-location-groups {
    gap: 16px;
    margin-top: 24px;
  }

  .branch-location-table-head {
    display: none;
  }

  .branch-location-group {
    border-radius: var(--radius);
  }

  .branch-location-group > header {
    padding: 11px 14px;
  }

  .branch-location-group > header h3 {
    font-size: 19px;
  }

  .branch-location-item {
    grid-template-columns: minmax(0, 1fr) 66px;
    gap: 8px 12px;
    min-height: 0;
    padding: 16px 14px;
  }

  .branch-location-item h3 {
    font-size: 15px;
  }

  .branch-location-item .branch-location-phone {
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-top: 1px;
    font-size: 13px;
  }

  .branch-location-item .branch-location-phone::before {
    content: "联系电话";
    color: var(--muted);
    font-weight: 500;
  }

  .branch-location-map-button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 62px;
    padding-inline: 4px;
  }

  .branch-map-modal {
    padding: 12px;
  }

  .branch-map-dialog > header {
    padding: 16px;
  }

  .branch-map-dialog h2 {
    font-size: 20px;
  }

  .branch-map-stage,
  .branch-location-tianditu-map {
    height: min(560px, calc(100svh - 150px));
    min-height: 340px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff 0, #ffffff 48%, #f8f8f7 100%);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

section {
  scroll-margin-top: 128px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(135deg, rgba(185, 38, 14, 0.98), rgba(168, 34, 9, 0.98) 58%, rgba(143, 28, 8, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: 0 12px 28px rgba(168, 34, 9, 0.12);
  backdrop-filter: blur(14px);
}

.utility-bar,
.navbar,
.section,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.utility-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.utility-bar p {
  margin: 0;
}

.utility-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.program-panel.utility-program-panel {
  top: calc(100% + 84px);
  right: 0;
  z-index: 2;
}

.navbar {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

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

.brand-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--white);
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.3;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
}

.nav-menu > a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
}

.nav-menu > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu > a:hover::after,
.nav-item:hover > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(86, 23, 10, 0.18);
  border: 1px solid rgba(168, 34, 9, 0.12);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown a::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: center / 18px 18px no-repeat;
}

.nav-dropdown a[href$="rental.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 5H11C13.2 5 15 6.8 15 9V12H5V7C5 5.9 5.9 5 7 5Z' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12L3 18M15 12L19 18M8 12V18M12 12V18' stroke='%23A82209' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="products.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L12 4L20 8V16L12 20L4 16V8Z' stroke='%23A82209' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M4 8L12 12L20 8M12 12V20' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="digital.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='11' rx='2' stroke='%23A82209' stroke-width='2'/%3E%3Cpath d='M9 20H15M12 16V20' stroke='%23A82209' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="company-overview.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20V6L12 3L19 6V20' stroke='%23A82209' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 10H10M14 10H15M9 14H10M14 14H15M4 20H20' stroke='%23A82209' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="company-info.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4H15L19 8V20H7V4Z' stroke='%23A82209' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M15 4V8H19M10 12H16M10 16H14' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="branches.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10C20 15 12 21 12 21C12 21 4 15 4 10C4 5.6 7.6 2 12 2C16.4 2 20 5.6 20 10Z' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='2.5' stroke='%23A82209' stroke-width='2'/%3E%3C/svg%3E");
}

.nav-dropdown a:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.action-link,
.primary-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.action-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

button.action-link {
  font: inherit;
}

.primary-link {
  color: var(--brand-dark);
  background: var(--white);
}

.program-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 272px;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(168, 34, 9, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(64, 28, 20, 0.2);
}

.program-panel.is-open {
  display: grid;
}

.program-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.program-card strong {
  color: var(--ink);
  font-size: 13px;
}

.program-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.program-card:hover {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
}

.floating-programs {
  position: fixed;
  left: 16px;
  top: 124px;
  z-index: 30;
  display: grid;
  gap: 12px;
}

.floating-program {
  width: 120px;
  display: grid;
  padding: 12px;
  border: 1px solid rgba(168, 34, 9, 0.12);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(168, 34, 9, 0.1);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.floating-card {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.floating-card strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.floating-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.floating-card em {
  color: var(--brand-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 580px;
  height: calc(100vh - 114px - 60px);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.8s ease,
    transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(78, 20, 10, 0.68), rgba(128, 31, 12, 0.34) 58%, rgba(168, 34, 9, 0.04)),
    linear-gradient(0deg, rgba(168, 34, 9, 0.12), rgba(255, 255, 255, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd2c4;
  font-size: 16px;
}

.hero h1 {
  width: min(780px, 100%);
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 26px rgba(168, 34, 9, 0.22);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.1);
}

.catalog-entry {
  margin-top: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.44);
}

.dot.is-active {
  background: var(--white);
}

.section {
  padding: 72px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2,
.split-heading h2,
.achievement-panel h2,
.feature-content h2,
.contact-strip h2,
.modal-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.22;
}

.section-heading p,
.split-heading > p,
.business-cards p,
.product-grid p,
.screen-card p,
.value-grid p,
.company-copy p,
.company-copy li,
.job-grid p,
.contact-strip p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 28px;
}

.split-heading > p {
  margin: 0;
  font-size: 17px;
}

.rental-heading {
  display: block;
  width: min(780px, 100%);
}

.heading-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.business-cards,
.product-grid,
.screen-grid,
.value-grid,
.job-grid,
.certificate-grid {
  display: grid;
  gap: 18px;
}

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

.business-cards a,
.product-grid article,
.product-category-card,
.screen-card,
.value-grid article,
.job-grid article,
.certificate-grid article,
.basic-info,
.company-copy,
.news-detail,
.news-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.business-cards a {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.business-cards a:hover,
.screen-card:hover {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.job-grid article:hover {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
}

.business-cards span {
  color: var(--brand-dark);
  font-weight: 900;
}

.business-cards strong,
.product-grid span,
.value-grid strong,
.job-grid strong,
.certificate-grid strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.business-cards p,
.product-grid p,
.value-grid p,
.job-grid p,
.certificate-grid span {
  margin: 0;
}

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

.service-scenes-title {
  margin: 44px 0 0;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}

.company-photo-grid figure {
  position: relative;
}

.photo-grid.company-photo-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 16px 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(38, 22, 17, 0.82), rgba(38, 22, 17, 0));
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.rental-network {
  margin-top: 64px;
  scroll-margin-top: 126px;
}

.rental-network-heading {
  margin-bottom: 26px;
}

.rental-network-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 52px;
  padding: 28px 0 44px;
}

.rental-network-info h3 {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.4;
}

.rental-network-description {
  display: grid;
  gap: 5px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.rental-network-description span::before {
  content: "·";
  margin-right: 8px;
  color: var(--brand);
  font-weight: 900;
}

.rental-network-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.rental-network-stats article,
.rental-network-patent {
  border: 1px solid rgba(168, 34, 9, 0.1);
  border-radius: var(--radius);
  background: #f7f5f3;
}

.rental-network-stats article {
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px 14px;
  text-align: center;
}

.rental-network-stats p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.rental-network-stats strong {
  color: var(--brand);
  font-size: 26px;
  line-height: 1.2;
}

.rental-network-stats small {
  font-size: 17px;
  font-weight: 600;
}

.rental-network-patent {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 20px 16px;
  text-align: center;
}

.rental-network-patent p,
.rental-network-patent small,
.rental-network-patent b {
  margin: 0;
}

.rental-network-patent p {
  color: var(--ink);
  font-size: 17px;
}

.rental-network-patent p strong,
.rental-network-patent b {
  color: var(--brand);
}

.rental-network-patent b {
  margin-top: 5px;
  font-size: 20px;
}

.rental-network-image {
  margin: 0;
}

.rental-network-image img {
  width: 100%;
  max-height: 590px;
  aspect-ratio: 0.84;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(168, 34, 9, 0.16);
}

.rental-network-map {
  position: relative;
  height: min(680px, 76vh);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #fff9f9;
  background-image:
    linear-gradient(rgba(168, 34, 9, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 34, 9, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 40%, rgba(168, 34, 9, 0.1), transparent 62%);
  background-size: 40px 40px, 40px 40px, auto;
  box-shadow: var(--soft-shadow);
}

.rental-network-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rental-network-map-status {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.rental-network-map.is-ready .rental-network-map-status {
  display: none;
}

.rental-network-map-legend {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(40, 27, 24, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.rental-network-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b35;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.rental-network-map-review {
  position: absolute;
  bottom: 14px;
  left: 20px;
  z-index: 3;
  color: rgba(40, 27, 24, 0.38);
  font-size: 10px;
}

@media (max-width: 900px) {
  .rental-network-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rental-network-image img {
    max-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .rental-network-map {
    height: 540px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .rental-network {
    margin-top: 48px;
    scroll-margin-top: 123px;
  }

  .rental-network-overview {
    padding: 12px 0 32px;
  }

  .rental-network-info h3 {
    font-size: 20px;
  }

  .rental-network-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rental-network-stats article {
    min-height: 104px;
  }

  .rental-network-image img {
    height: 420px;
    aspect-ratio: auto;
  }

  .rental-network-map {
    height: 410px;
  }
}

/* Contact consultation page */
.contact-gk-page {
  padding-top: 72px;
  padding-bottom: 88px;
}

.contact-gk-heading {
  max-width: 860px;
}

.contact-gk-heading h1 {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.2;
}

.contact-gk-heading h1::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 7px;
  background: var(--brand);
}

.contact-gk-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
  margin-top: 48px;
}

.contact-consultation-item {
  display: grid;
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-consultation-item:hover {
  border-color: rgba(168, 34, 9, 0.34);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(77, 52, 44, 0.12);
}

.contact-consultation-item > img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.contact-consultation-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px 24px;
}

.contact-consultation-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

.contact-consultation-content h2 small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-consultation-button {
  width: 100%;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--brand);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-consultation-button:hover,
.contact-consultation-button:focus-visible {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.contact-consultation-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  background: rgba(34, 28, 26, 0.62);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.contact-consultation-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-consultation-dialog {
  width: min(920px, 100%);
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(30, 20, 17, 0.28);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.contact-consultation-modal.is-open .contact-consultation-dialog {
  transform: translateY(0);
}

.contact-consultation-dialog-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.contact-consultation-dialog-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
}

.contact-consultation-dialog-header > div > p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-consultation-close {
  position: relative;
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  overflow: hidden;
  font-size: 0;
  cursor: pointer;
}

.contact-consultation-close::before,
.contact-consultation-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-consultation-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-consultation-close:hover,
.contact-consultation-close:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.contact-consultation-form {
  padding: 18px 24px 20px;
}

.contact-consultation-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
}

.contact-consultation-form label {
  display: grid;
  min-width: 0;
  gap: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-consultation-form label > span:first-child b {
  color: var(--brand);
}

.contact-consultation-form .contact-form-full {
  grid-column: 1 / -1;
}

.contact-consultation-form .contact-form-wide {
  grid-column: span 2;
}

.contact-consultation-form input,
.contact-consultation-form textarea {
  width: 100%;
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  outline: none;
  resize: vertical;
}

.contact-consultation-form textarea {
  min-height: 70px;
}

.contact-consultation-form input:focus,
.contact-consultation-form textarea:focus {
  border-color: rgba(168, 34, 9, 0.58);
  box-shadow: 0 0 0 3px rgba(168, 34, 9, 0.08);
}

.contact-consultation-form input.is-invalid {
  border-color: var(--brand);
}

.contact-captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 8px;
}

.contact-captcha-code {
  min-height: 40px;
  padding: 0 8px;
  border: 1px solid rgba(168, 34, 9, 0.22);
  border-radius: var(--radius);
  color: var(--brand-dark);
  background:
    repeating-linear-gradient(145deg, rgba(168, 34, 9, 0.05) 0 5px, transparent 5px 11px),
    var(--brand-wash);
  font: 800 19px/1 monospace;
  letter-spacing: 4px;
  cursor: pointer;
}

.contact-form-message {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 14px;
}

.contact-form-message.is-success {
  color: #267246;
}

.contact-consultation-submit {
  width: 100%;
  margin-top: 4px;
}

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

@media (max-width: 980px) {
  .contact-consultation-grid {
    gap: 22px;
  }

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

  .contact-consultation-item > img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 720px) {
  .contact-gk-page {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .contact-gk-heading h1 {
    padding-left: 16px;
    font-size: 32px;
  }

  .contact-gk-heading h1::before {
    top: 4px;
    bottom: 4px;
    width: 5px;
  }

  .contact-gk-heading > p:last-child {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-consultation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
  }

  .contact-consultation-content {
    gap: 16px;
    padding: 15px 12px 12px;
  }

  .contact-consultation-content h2 {
    min-height: 70px;
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-consultation-content h2 small {
    font-size: 12px;
  }

  .contact-consultation-button {
    min-height: 40px;
    padding: 7px 6px;
    font-size: 12px;
  }

  .contact-consultation-modal {
    align-items: center;
    padding: 12px;
  }

  .contact-consultation-dialog {
    max-height: calc(100svh - 24px);
  }

  .contact-consultation-dialog-header,
  .contact-consultation-form {
    padding: 16px;
  }

  .contact-consultation-dialog-header h2 {
    font-size: 23px;
  }

  .contact-consultation-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .contact-consultation-form .contact-form-full,
  .contact-consultation-form .contact-form-wide,
  .contact-consultation-form .contact-form-mobile-wide {
    grid-column: 1 / -1;
  }

  .contact-captcha-row {
    grid-template-columns: minmax(0, 1fr) 120px;
  }
}

.process-block {
  margin-top: 56px;
}

.process-figure {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.process-photo-figure {
  padding: clamp(12px, 2.4vw, 28px);
  background: #fffaf7;
  scrollbar-width: thin;
}

.process-image {
  width: 100%;
  min-width: 960px;
  display: block;
}

.process-photo-figure .process-image {
  width: min(100%, 1160px);
  min-width: 860px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(73, 38, 22, 0.12);
}

.achievement-map {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.achievement-panel,
.china-map-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.achievement-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.achievement-grid div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.achievement-grid strong {
  color: var(--brand-dark);
  font-size: 22px;
}

.achievement-grid span {
  color: var(--muted);
}

.map-title {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.map-title strong {
  font-size: 22px;
}

.map-title span {
  color: var(--muted);
  font-size: 14px;
}

.china-map {
  width: 100%;
  min-height: 380px;
}

.map-base,
.map-island {
  fill: #fff3ee;
  stroke: var(--brand);
  stroke-width: 4;
}

.city-points circle {
  fill: var(--brand);
  stroke: var(--white);
  stroke-width: 3;
}

.city-points text {
  fill: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

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

.products-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

.products-intro .section-heading {
  margin-bottom: 0;
}

.products-intro .catalog-entry {
  position: relative;
  flex: 0 0 auto;
  margin-bottom: 2px;
  padding-right: 48px;
}

.products-intro .catalog-entry::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.product-grid article,
.product-category-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(72, 42, 34, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-category-card:hover {
  border-color: rgba(168, 34, 9, 0.38);
  box-shadow: 0 16px 34px rgba(72, 42, 34, 0.1);
  transform: translateY(-3px);
}

.product-category-image {
  overflow: hidden;
  background: #f6f7f8;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-category-card:hover img {
  transform: scale(1.035);
}

.product-category-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 19px 21px 22px;
}

.product-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-grid .product-category-title {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
}

.product-category-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-soft);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.product-category-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--brand-dark);
  border-right: 2px solid var(--brand-dark);
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-category-card:hover .product-category-arrow {
  background: #ffe8df;
  transform: translateX(3px);
}

.product-category-content p {
  display: -webkit-box;
  min-height: calc(1.6em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-catalog-promo {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  margin-top: 64px;
  padding: 48px 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f8f7;
}

.product-catalog-cover {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.product-catalog-cover img {
  width: 100%;
  aspect-ratio: 564 / 800;
  border: 1px solid rgba(40, 27, 24, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(40, 27, 24, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-catalog-cover:hover img,
.product-catalog-cover:focus-visible img {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(40, 27, 24, 0.18);
}

.product-catalog-promo-content {
  text-align: center;
}

.product-catalog-promo-content .eyebrow {
  margin-bottom: 14px;
}

.product-catalog-promo-content h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 36px;
  line-height: 1.35;
}

.product-catalog-open {
  min-width: 260px;
  margin-top: 40px;
  border: 0;
}

.product-catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(25, 18, 16, 0.76);
}

.product-catalog-modal.is-open {
  display: flex;
}

.product-catalog-dialog {
  position: relative;
  width: min(1280px, 100%);
  height: min(900px, calc(100dvh - 32px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8e6e3;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.product-book-header {
  position: relative;
  z-index: 5;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px 12px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.product-book-header .eyebrow {
  margin-bottom: 2px;
  font-size: 11px;
}

.product-book-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.product-book-toolbar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.product-book-control,
.product-book-download,
.product-catalog-close {
  position: relative;
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.product-book-control span {
  display: block;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

.product-book-download span {
  display: block;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.product-book-control:hover:not(:disabled),
.product-book-control:focus-visible,
.product-book-download:hover,
.product-book-download:focus-visible,
.product-catalog-close:hover,
.product-catalog-close:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.product-book-control:disabled {
  cursor: default;
  opacity: 0.34;
}

.product-book-status {
  min-width: 82px;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.product-catalog-close {
  overflow: hidden;
  font-size: 0;
}

.product-catalog-close::before,
.product-catalog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-catalog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-book-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px 70px 24px;
  background: #e8e6e3;
}

.product-book {
  width: 100%;
  height: 100%;
}

.product-book-page {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(40, 27, 24, 0.08) inset;
}

.product-book-page-canvas {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
}

.product-book-page-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: opacity 0.16s ease;
}

.product-book-page.is-rendered .product-book-page-loading {
  opacity: 0;
  pointer-events: none;
}

.product-book-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  pointer-events: none;
}

.product-book-message[hidden] {
  display: none;
}

body.product-catalog-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .product-catalog-promo {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
    padding: 40px;
  }

  .product-catalog-promo-content h2 {
    font-size: 28px;
  }

  .product-book-stage {
    padding: 16px 18px 20px;
  }
}

@media (max-width: 720px) {
  .product-catalog-promo {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    margin-top: 48px;
    padding: 28px 20px;
  }

  .product-catalog-cover {
    width: 210px;
  }

  .product-catalog-promo-content h2 {
    font-size: 24px;
  }

  .product-catalog-open {
    width: 100%;
    min-width: 0;
    margin-top: 24px;
  }

  .product-catalog-modal {
    padding: 12px;
  }

  .product-catalog-dialog {
    height: calc(100dvh - 24px);
  }

  .product-book-header {
    min-height: 0;
    display: grid;
    gap: 10px;
    padding: 11px 12px 12px;
  }

  .product-book-header h2 {
    font-size: 17px;
  }

  .product-book-toolbar {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .product-book-control,
  .product-book-download,
  .product-catalog-close {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .product-book-status {
    min-width: 58px;
    font-size: 12px;
  }

  .product-book-stage {
    padding: 12px 6px 16px;
  }
}

.catalog-shell {
  min-width: 0;
  display: grid;
  gap: 26px;
}

.catalog-section {
  padding-top: 58px;
}

.catalog-section .section-heading {
  margin-bottom: 24px;
}

.catalog-categories {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.catalog-category,
.catalog-product,
.catalog-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.catalog-category {
  position: relative;
  min-width: 0;
  min-height: 94px;
  display: grid;
  align-content: start;
  gap: 5px;
  overflow: hidden;
  padding: 14px 15px 13px;
  color: var(--ink);
  text-align: left;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.catalog-category::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14px;
  left: 14px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.catalog-category strong {
  font-size: 16px;
  line-height: 1.28;
}

.catalog-category span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-category:hover,
.catalog-category.is-active,
.catalog-product:hover {
  border-color: rgba(168, 34, 9, 0.42);
  box-shadow: 0 12px 26px rgba(72, 42, 34, 0.08);
}

.catalog-category:hover {
  transform: translateY(-2px);
}

.catalog-category.is-active {
  background: var(--brand-soft);
}

.catalog-category.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.catalog-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.catalog-toolbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.catalog-toolbar-title strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.catalog-toolbar-title span,
.catalog-page-status {
  color: var(--muted);
  font-size: 13px;
}

.catalog-page-status {
  min-width: 42px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.catalog-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.catalog-product {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 3px 12px rgba(72, 42, 34, 0.035);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.catalog-product:hover {
  transform: translateY(-4px);
}

.catalog-product-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f6f7;
  box-shadow: 0 -1px 0 rgba(72, 42, 34, 0.035) inset;
}

.catalog-product-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.catalog-product-image.is-portrait img {
  width: 82%;
  height: 92%;
}

.catalog-product-image.is-landscape img {
  width: 94%;
  height: 84%;
}

.catalog-product:hover .catalog-product-image img {
  transform: scale(1.045);
}

.catalog-product-content {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 13px 14px 14px;
}

.catalog-product-heading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.catalog-product strong {
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-product .catalog-product-price {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 6px;
  gap: 8px;
}

.catalog-pagination button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.catalog-pagination button:hover:not(:disabled),
.catalog-pagination button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.catalog-pagination button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.catalog-pagination button:disabled {
  cursor: default;
  opacity: 0.38;
}

.catalog-product span {
  color: var(--muted);
}

.catalog-product em {
  align-self: end;
  margin-top: 4px;
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 900;
}

.catalog-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-weight: 900;
}

.catalog-detail {
  position: sticky;
  top: 136px;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.catalog-detail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
}

.catalog-detail-category {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.catalog-detail h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.catalog-detail p,
.catalog-detail li,
.catalog-detail dd {
  color: var(--muted);
}

.catalog-detail p,
.catalog-detail ul,
.catalog-detail dl {
  margin: 0;
}

.catalog-detail ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.catalog-detail dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.catalog-detail dt {
  color: var(--ink);
  font-weight: 900;
}

.catalog-detail dd {
  margin: 0;
}

.product-detail-card {
  position: static;
  display: grid;
  gap: 28px;
  padding: 28px;
}

.product-detail-top {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.product-gallery-main img {
  width: 100%;
  min-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(40, 27, 24, 0.58);
  transform: translateY(-50%);
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.gallery-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-nav:hover {
  background: rgba(40, 27, 24, 0.78);
}

.gallery-nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.gallery-prev {
  left: 12px;
}

.gallery-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.gallery-next {
  right: 12px;
}

.gallery-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-gallery-thumb {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
}

.product-gallery-thumb.is-active {
  border-color: var(--brand);
}

.product-gallery-thumb img {
  width: 100%;
  height: 86px;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

.product-detail-info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.product-detail-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.22;
}

.product-detail-info p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.product-detail-price {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 30px;
  line-height: 1.1;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px 18px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.product-detail-meta dt {
  color: var(--muted);
  font-weight: 800;
}

.product-detail-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-description {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-description h4 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.3;
}

.product-description ul {
  margin: 0;
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.product-description dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

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

.digital-anchor-nav {
  position: sticky;
  top: 114px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  margin: 28px 0 48px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.digital-anchor-nav::-webkit-scrollbar {
  display: none;
}

.digital-anchor-nav a {
  position: relative;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.digital-anchor-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.digital-anchor-nav a:hover {
  color: var(--brand-dark);
}

.digital-anchor-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.digital-feature-groups {
  display: grid;
  gap: 64px;
}

.digital-feature-group {
  scroll-margin-top: 180px;
}

.digital-group-heading {
  width: min(760px, 100%);
  margin-bottom: 24px;
}

.digital-group-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.3;
}

.digital-group-heading > p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.digital-feature-list {
  display: grid;
  gap: 24px;
}

.digital-feature {
  scroll-margin-top: 180px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(72, 42, 34, 0.055);
}

.digital-feature:nth-child(even) {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.digital-feature:nth-child(even) .digital-feature-media {
  order: 2;
}

.digital-feature-media {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #f5f6f7;
  cursor: zoom-in;
}

.digital-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.digital-feature-media::before,
.digital-feature-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  pointer-events: none;
}

.digital-feature-media::before {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(40, 27, 24, 0.72);
  box-shadow: 0 6px 18px rgba(40, 27, 24, 0.16);
}

.digital-feature-media::after {
  width: 9px;
  height: 9px;
  margin: 0 11px 11px 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 5px 5px 0 -3px var(--white);
}

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

.digital-feature-media.is-illustration {
  padding: 22px;
  background: #fffdfc;
}

.digital-feature-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 38px;
}

.digital-feature-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.35;
}

.digital-feature-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.digital-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.digital-metrics span {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 0 12px;
  border-left: 1px solid var(--line);
}

.digital-metrics span:first-child {
  padding-left: 0;
  border-left: 0;
}

.digital-metrics strong {
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.25;
}

.digital-metrics small {
  color: var(--muted);
  font-size: 12px;
}

.digital-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.digital-feature-points li {
  position: relative;
  padding-left: 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.digital-feature-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
}

body.digital-preview-open {
  overflow: hidden;
}

.digital-image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
  padding: 28px;
  color: var(--white);
  background: rgba(18, 13, 12, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.digital-image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.digital-image-modal figure {
  min-width: 0;
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0;
}

.digital-image-modal figure img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 104px);
  object-fit: contain;
}

.digital-image-modal figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-align: center;
}

.digital-modal-close,
.digital-modal-nav {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.digital-modal-close:hover,
.digital-modal-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.digital-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  font-size: 28px;
}

.digital-modal-nav {
  width: 52px;
  height: 52px;
  font-size: 34px;
}

@media (max-width: 900px) {
  .digital-anchor-nav {
    top: 68px;
  }

  .digital-feature,
  .digital-feature:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .digital-feature:nth-child(even) .digital-feature-media {
    order: 0;
  }

  .digital-feature-media {
    aspect-ratio: 16 / 9;
  }

  .digital-feature-content {
    padding: 28px;
  }
}

.screen-card {
  padding: 22px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.screen-card h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.mock-screen {
  height: 220px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: #2d1b17;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.mock-screen span {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-screen.dashboard {
  grid-template-columns: 1.1fr 0.9fr;
}

.mock-screen.dashboard span:first-child {
  grid-row: span 2;
  background: linear-gradient(135deg, #f9cf88, #d95535);
}

.mock-screen.mobile {
  width: min(180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr;
  border-radius: 22px;
}

.mock-screen.mobile span:nth-child(2) {
  background: linear-gradient(135deg, #ffffff, #ffd2c4);
}

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

.mock-screen.warehouse span:nth-child(3) {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffd2c4, #a82209);
}

.overview-section {
  display: grid;
  gap: 64px;
}

.overview-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: url("./assets/hero-assistive-service.png") center / cover no-repeat;
}

.overview-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 18, 13, 0.88) 0%, rgba(34, 18, 13, 0.68) 38%, rgba(34, 18, 13, 0.08) 72%);
}

.overview-hero-content {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  padding: 48px;
  color: var(--white);
}

.overview-hero-content .eyebrow {
  color: #ffd8cc;
}

.overview-hero-content h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
}

.overview-hero-content > p:not(.eyebrow) {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
}

.overview-hero-content strong {
  display: block;
  padding-left: 14px;
  border-left: 3px solid #ffb09a;
  font-size: 18px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-stats div {
  display: grid;
  gap: 5px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.overview-stats div:last-child {
  border-right: 0;
}

.overview-stats strong {
  color: var(--brand-dark);
  font-size: 32px;
  line-height: 1;
}

.overview-stats span {
  color: var(--muted);
  font-size: 14px;
}

.overview-mission,
.overview-philosophy,
.overview-message {
  display: grid;
  gap: 26px;
}

.overview-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.overview-section-heading h2,
.overview-values h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.25;
}

.overview-section-heading > p {
  width: min(430px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.overview-mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f5f3;
}

.overview-mission-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-mission-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  text-align: center;
}

.overview-mission-mark {
  width: 42px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--brand);
}

.overview-mission-panel h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1.45;
}

.overview-mission-panel p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.overview-philosophy-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #333;
}

.overview-philosophy-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(24, 20, 19, 0.48);
  pointer-events: none;
}

.overview-philosophy-backgrounds,
.overview-philosophy-backgrounds img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.overview-philosophy-backgrounds img {
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 2.6s ease;
}

.overview-philosophy-backgrounds img.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.overview-philosophy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 520px;
}

.overview-philosophy-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  padding: 40px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  isolation: isolate;
  text-align: center;
}

.overview-philosophy-grid article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(168, 34, 9, 0.62);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.overview-philosophy-grid article:hover::before,
.overview-philosophy-grid article:focus-visible::before {
  transform: scaleY(1);
}

.overview-philosophy-grid article:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.overview-philosophy-grid article:last-child {
  border-right: 0;
}

.overview-philosophy-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.overview-philosophy-grid h3 {
  margin: 22px 0 10px;
  color: #fff;
  font-size: 27px;
}

.overview-philosophy-grid p {
  max-width: 230px;
  min-height: 64px;
  margin: 10px 0 0;
  color: #fff;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.overview-philosophy-grid article:hover p,
.overview-philosophy-grid article:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.overview-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.overview-capability-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.overview-capability-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.overview-capability-grid article > div {
  position: relative;
  padding: 24px;
}

.overview-capability-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.overview-capability-grid h3 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.overview-capability-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.chairman-block {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 38px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.chairman-block img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.chairman-block > div {
  display: grid;
  align-content: center;
}

.chairman-block blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
}

.chairman-block h3 {
  margin: 0 0 18px;
  font-size: 30px;
}

.chairman-block p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}

.overview-values {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-values-intro {
  align-self: start;
}

.overview-value-list {
  display: grid;
}

.overview-value-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.overview-value-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.overview-value-list span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.overview-value-list strong {
  color: var(--ink);
  font-size: 19px;
}

.overview-value-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.slogan-band {
  margin: 30px 0;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-size: 34px;
  font-weight: 900;
  text-align: center;
}

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

.value-grid article {
  min-height: 160px;
  padding: 24px;
}

.info-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.basic-info {
  margin: 0;
  padding: 24px;
}

.basic-info div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.basic-info div:last-child {
  border-bottom: 0;
}

.basic-info dt {
  color: var(--brand-dark);
  font-weight: 900;
}

.basic-info dd {
  margin: 0;
  color: var(--ink);
}

.company-copy {
  padding: 24px;
}

.company-copy h3,
.history-org h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.company-copy p {
  margin: 0 0 16px;
}

.company-copy ul {
  margin: 0;
  padding-left: 20px;
}

.certificate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.certificate-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border-top: 5px solid var(--brand);
}

.history-org {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 22px;
}

.history-org > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline time {
  color: var(--brand-dark);
  font-weight: 900;
}

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

.org-chart div {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 900;
  text-align: center;
}

.org-chart div:first-child {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--brand);
}

.news-board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.news-section .section-heading {
  margin-bottom: 28px;
}

.news-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.news-categories {
  display: flex;
  align-items: center;
  gap: 28px;
}

.news-categories a {
  position: relative;
  padding: 0 0 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.news-categories a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.news-categories a:hover,
.news-categories a.is-current {
  color: var(--brand-dark);
}

.news-categories a:hover::after,
.news-categories a.is-current::after {
  transform: scaleX(1);
}

.news-count {
  padding-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  width: 100%;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 206px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.news-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  align-self: start;
  border-radius: var(--radius);
  object-fit: cover;
  background: #f4f2f0;
}

.news-item-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 0;
}

.news-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.news-item-category {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.news-item-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.news-item-footer {
  display: grid;
  gap: 9px;
  align-items: start;
}

.news-item time {
  color: var(--brand-dark);
  font-weight: 900;
  white-space: nowrap;
}

.news-item strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.news-item-footer span {
  overflow: hidden;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 15px;
  -webkit-line-clamp: 4;
  line-height: 1.6;
  max-width: 700px;
  min-height: calc(1.6em * 3);
}

.news-item em {
  color: var(--brand-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.news-item:hover,
.news-item.is-active {
  border-color: rgba(168, 34, 9, 0.42);
  background: var(--brand-soft);
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.news-pagination a {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.news-pagination a:hover,
.news-pagination a.is-current {
  border-color: rgba(168, 34, 9, 0.42);
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.news-pagination a.is-disabled {
  color: rgba(114, 103, 99, 0.52);
  pointer-events: none;
}

.news-pagination-status {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.news-detail {
  min-height: 320px;
  padding: 32px;
}

.news-detail time {
  color: var(--brand-dark);
  font-weight: 900;
}

.news-detail h3 {
  margin: 14px 0 18px;
  font-size: 30px;
  line-height: 1.32;
}

.news-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.news-detail-page {
  display: grid;
  gap: 20px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.back-link {
  width: fit-content;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 900;
}

.back-link:hover {
  color: var(--brand);
}

.news-article {
  display: flex;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.news-article-header {
  max-width: 720px;
}

.news-article h1 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.34;
}

.news-article-cover {
  overflow: hidden;
  margin: 28px 0 30px;
  border-radius: 6px;
  background: var(--brand-soft);
}

.news-article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.news-article-body {
  display: grid;
  gap: 20px;
  width: min(680px, 100%);
  margin: 0 auto;
}

.news-article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.news-article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.news-article-pagination a {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
}

.news-article-pagination a:last-child {
  text-align: right;
}

.news-article-pagination a:hover {
  border-color: rgba(168, 34, 9, 0.34);
  background: var(--brand-soft);
}

.news-article-pagination small {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.news-article-pagination span {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-article-pagination a.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.news-article-date {
  display: flex;
  align-self: flex-end;
  align-items: baseline;
  gap: 8px;
  margin-top: 26px;
}

.news-article-date span {
  color: var(--muted);
  font-size: 13px;
}

.news-article-date time {
  color: var(--brand-dark);
  font-weight: 900;
}

.recent-news {
  position: sticky;
  top: 136px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.recent-news h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.recent-news-list {
  display: grid;
  gap: 2px;
}

.recent-news-item {
  display: grid;
  gap: 6px;
  padding: 12px 12px 12px 14px;
  border-top: 1px solid var(--line);
  border-left: 3px solid transparent;
}

.recent-news-item:first-child {
  border-top: 0;
}

.recent-news-item time {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.recent-news-item span {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-news-item:hover,
.recent-news-item.is-current {
  border-left-color: var(--brand);
  background: var(--brand-soft);
}

.recent-news-item:hover span,
.recent-news-item.is-current span {
  color: var(--brand-dark);
}

.careers-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.careers-hero .section-heading {
  width: 100%;
  margin-bottom: 0;
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 14%, rgba(168, 34, 9, 0.08), transparent 16rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.careers-hero img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

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

.job-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(260px, 1.6fr);
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.job-grid span {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.recruit-contact {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 12%, rgba(168, 34, 9, 0.08), transparent 16rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.recruit-contact h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.recruit-contact dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.recruit-contact dl div {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: var(--brand-wash);
}

.recruit-contact dt {
  color: var(--brand-dark);
  font-weight: 900;
}

.recruit-contact dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.careers-banner {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.careers-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 29, 27, 0.82), rgba(35, 29, 27, 0.4) 58%, rgba(35, 29, 27, 0.06));
}

.careers-banner > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.86) contrast(1.02);
}

.careers-banner-content {
  position: absolute;
  left: 44px;
  bottom: 42px;
  z-index: 1;
  width: min(600px, calc(100% - 88px));
  color: var(--white);
}

.careers-banner-content .eyebrow {
  color: #ffd8cc;
}

.careers-banner-content h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.15;
}

.careers-banner-content > p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.careers-banner-content .button.primary {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.career-values,
.job-openings {
  margin-top: 64px;
}

.career-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.career-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.22;
}

.career-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.career-value-strip div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.career-value-strip strong {
  color: var(--brand-dark);
  font-size: 18px;
}

.career-value-strip span {
  color: var(--muted);
  font-size: 14px;
}

.job-heading > span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.job-item:hover,
.job-item[open] {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
}

.job-item summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(360px, 1.2fr) 38px;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
}

.job-item summary::-webkit-details-marker {
  display: none;
}

.job-title {
  display: grid;
  gap: 5px;
}

.job-title strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.job-title small {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.job-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
}

.job-meta > span {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.job-meta > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.job-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(168, 34, 9, 0.22);
  border-radius: 50%;
}

.job-toggle::before,
.job-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--brand-dark);
  transform: translate(-50%, -50%);
}

.job-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.job-item[open] .job-toggle::after {
  opacity: 0;
}

.job-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 26px 28px 28px;
  border-top: 1px solid var(--line);
  background: #fbfaf9;
}

.job-detail h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
}

.job-detail ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.job-detail li + li {
  margin-top: 7px;
}

.job-detail-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.job-detail-footer > span {
  color: var(--muted);
  font-size: 14px;
}

.recruit-contact-v2 {
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr) auto;
  margin-top: 64px;
  padding: 30px 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.recruit-contact-v2 dl {
  gap: 0;
}

.recruit-contact-v2 dl div {
  min-height: 68px;
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.recruit-contact-v2 dl div:last-child {
  border-right: 0;
}

.recruit-contact-v2 > .button {
  white-space: nowrap;
}

.contact-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 28px auto 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #bd2b12, var(--brand) 62%, var(--brand-dark));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-strip .eyebrow,
.contact-strip h2,
.contact-strip p {
  color: var(--white);
}

.contact-strip .eyebrow,
.contact-strip p {
  opacity: 0.86;
}

.contact-strip .button.primary {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.contact-page {
  padding-top: 56px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.contact-copy,
.contact-form-card,
.map-shot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.contact-copy {
  min-height: 360px;
  display: grid;
  align-content: start;
  padding: 42px;
  background:
    radial-gradient(circle at 8% 8%, rgba(168, 34, 9, 0.08), transparent 18rem),
    linear-gradient(135deg, var(--white), var(--brand-wash));
}

.contact-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.18;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button.ghost {
  color: var(--brand-dark);
  border: 1px solid rgba(168, 34, 9, 0.28);
  background: var(--white);
}

.contact-form-card {
  display: grid;
  align-content: start;
  padding: 42px 34px 34px;
}

.contact-form-card .contact-form {
  margin-top: 22px;
}

.contact-form-card .button {
  justify-self: start;
}

.contact-form-card h2,
.map-shot-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.contact-info-list div {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.72);
}

.contact-info-list div:last-child {
  border: 1px solid var(--line);
}

.contact-info-list dt {
  color: var(--brand-dark);
  font-weight: 900;
}

.contact-info-list dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.map-shot-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
  padding: 24px;
}

.traffic-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.traffic-list div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: var(--brand-wash);
}

.traffic-list dt {
  color: var(--brand-dark);
  font-weight: 900;
}

.traffic-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tianditu-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  align-self: end;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("./assets/hongqiao-map-screenshot.png?v=20260618-1") center / cover no-repeat,
    var(--brand-wash);
  box-shadow: 0 18px 40px rgba(168, 34, 9, 0.1);
}

.business-tianditu-map {
  align-self: stretch;
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 34, 9, 0.08), transparent 16rem),
    var(--brand-wash);
}

.tianditu-map p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.tianditu-map.is-ready p {
  display: none;
}

.tianditu-map.is-zoom-locked .tdt-control-zoom {
  display: none;
}

.tianditu-map.has-tile-error img[src*="/wmts?"] {
  display: none;
}

.tianditu-map .tdt-control-copyright,
.tianditu-map .tdt-bottom {
  bottom: 10px;
}

.contact-page-v2 {
  padding: 64px 0 76px;
}

.contact-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}

.contact-page-heading > div:first-child {
  max-width: 700px;
}

.contact-page-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.16;
}

.contact-page-heading > div:first-child > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-info-strip div {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 100px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

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

.contact-info-strip dt {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.contact-info-strip dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 52px;
}

.contact-map-panel,
.contact-form-panel {
  min-width: 0;
}

.contact-map-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
}

.contact-block-heading h2,
.contact-form-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
}

.contact-block-heading > p:last-child {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-tianditu-map {
  min-height: 470px;
  aspect-ratio: auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 247, 0.92)),
    var(--brand-wash);
  box-shadow: var(--soft-shadow);
}

.contact-form-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-form-panel .contact-form {
  margin-top: 22px;
}

.contact-form .inline-field {
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.contact-form .inline-field > span {
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(168, 34, 9, 0.55);
  box-shadow: 0 0 0 3px rgba(168, 34, 9, 0.08);
}

.required-mark {
  color: var(--brand);
}

.contact-form .privacy-check {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.contact-form .privacy-check input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--brand);
  box-shadow: none;
}

.contact-form-panel .button.primary {
  width: 100%;
}

.visit-section {
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-grid div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.visit-grid div:last-child {
  border-right: 0;
}

.visit-grid strong {
  color: var(--brand-dark);
  font-size: 18px;
}

.visit-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer-wrap {
  background:
    radial-gradient(circle at 20% 0, rgba(196, 48, 22, 0.24), transparent 26rem),
    var(--footer);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 24px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(280px, 1fr) minmax(220px, 0.95fr) 132px;
  gap: 36px;
  padding: 28px 0 24px;
}

.footer-brand-logo {
  display: inline-flex;
  width: min(250px, 100%);
}

.footer-brand-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.footer-nav h3 {
  grid-column: 1 / -1;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 16px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffd2c4;
}

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

.footer-qrcode {
  justify-self: end;
}

.footer-qrcode img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: contain;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  background: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(40, 27, 24, 0.58);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(40, 27, 24, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--brand-soft);
  font-size: 24px;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--brand-wash);
}

.form-tip {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

/* Keep every public page header aligned with the homepage header. */
.site-header.home-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: box-shadow 0.4s ease;
}

.site-header.overlay-header {
  position: fixed;
  right: 0;
  left: 0;
}

.home-header .utility-bar {
  min-height: 50px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(143, 28, 8, 0.98);
  transition: width 0.4s ease;
}

.home-header .navbar {
  min-height: 76px;
  padding: 0 20px;
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(135deg, rgba(185, 38, 14, 0.98), rgba(168, 34, 9, 0.98) 58%, rgba(143, 28, 8, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: 0 12px 28px rgba(168, 34, 9, 0.12);
  backdrop-filter: blur(14px);
  transition:
    width 0.4s ease,
    border-radius 0.4s ease,
    box-shadow 0.4s ease;
}

.home-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(168, 34, 9, 0.12);
}

.home-header.is-scrolled .utility-bar,
.home-header.is-scrolled .navbar {
  width: 100%;
}

.home-header.is-scrolled .navbar {
  border-radius: 0;
  box-shadow: none;
}

.home-header .brand-logo-full {
  width: 238px;
  height: auto;
}

.home-header .nav-menu {
  font-size: 16px;
}

.home-header .order-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.home-header .order-link:hover,
.home-header .order-link[aria-expanded="true"] {
  color: var(--brand);
  border-color: var(--white);
  background: var(--white);
}

.home-header .program-panel.utility-program-panel {
  top: calc(100% + 84px);
  right: 0;
  z-index: 10;
}

@media (max-width: 1120px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 0;
    padding-bottom: 16px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu > a,
  .nav-item > a {
    min-height: auto;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 4px 0 10px;
    box-shadow: none;
  }

  .business-cards,
  .photo-grid,
  .screen-grid,
  .product-grid,
  .catalog-categories,
  .catalog-list,
  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-grid article,
  .careers-hero,
  .recruit-contact {
    grid-template-columns: 1fr;
  }

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

  .split-heading,
  .achievement-map,
  .chairman-block,
  .info-layout,
  .history-org,
  .news-board,
  .news-detail-layout,
  .catalog-main,
  .product-detail-card,
  .contact-hero,
  .map-shot-card {
    grid-template-columns: 1fr;
  }

  .contact-page-heading {
    align-items: flex-start;
  }

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

  .contact-info-strip div:nth-child(2) {
    border-right: 0;
  }

  .contact-info-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-tianditu-map {
    min-height: 420px;
  }

  .recent-news {
    position: static;
  }

  .catalog-detail {
    position: static;
  }

  .product-detail-card {
    padding: 24px;
  }

  .product-detail-top {
    grid-template-columns: 1fr;
  }

  .product-gallery-main img {
    min-height: 340px;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  section {
    scroll-margin-top: 76px;
  }

  .floating-programs {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(168, 34, 9, 0.14);
    border-radius: calc(var(--radius) + 12px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(168, 34, 9, 0.12);
    backdrop-filter: blur(12px);
  }

  .floating-program {
    width: 100%;
    min-height: 92px;
    padding: 8px;
    border: 0;
    border-radius: var(--radius);
    background: var(--brand-soft);
    box-shadow: none;
  }

  .floating-card {
    gap: 4px;
  }

  .floating-card strong {
    font-size: 12px;
  }

  .floating-card img {
    width: 52px;
    height: 52px;
  }

  .floating-card em {
    font-size: 11px;
  }

  .utility-bar,
  .navbar,
  .section,
  .site-footer,
  .contact-strip {
    width: min(100% - 28px, 1160px);
  }

  .utility-bar {
    display: none;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-logo-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero {
    min-height: 560px;
    height: auto;
  }

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

  .contact-page-v2 {
    padding: 42px 0 54px;
  }

  .contact-page-heading {
    display: block;
  }

  .contact-page-heading h1 {
    font-size: 34px;
  }

  .contact-page-heading > div:first-child > p:last-child {
    font-size: 15px;
  }

  .contact-page-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .contact-info-strip {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .contact-info-strip div,
  .contact-info-strip div:nth-child(2) {
    min-height: 78px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .contact-main-grid {
    margin-top: 38px;
  }

  .contact-form-panel {
    order: 1;
    padding: 22px;
  }

  .contact-map-panel {
    order: 2;
  }

  .contact-tianditu-map {
    min-height: 300px;
  }

  .visit-section {
    margin-top: 46px;
    padding-top: 34px;
  }

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

  .visit-grid div {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visit-grid div:last-child {
    border-bottom: 0;
  }

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

  .hero-actions,
  .contact-strip,
  .contact-actions {
    align-items: stretch;
  }

  .button,
  .floating-program {
    width: 100%;
  }

  .section {
    padding: 46px 0;
  }

  .section-heading h2,
  .split-heading h2,
  .achievement-panel h2,
  .contact-strip h2,
  .modal-panel h2 {
    font-size: 28px;
  }

  .products-intro {
    display: grid;
    align-items: stretch;
    gap: 22px;
    margin-bottom: 24px;
  }

  .products-intro .catalog-entry {
    width: 100%;
    margin-bottom: 0;
  }

  .product-grid img {
    aspect-ratio: 2 / 1;
  }

  .product-category-content {
    padding: 17px 18px 20px;
  }

  .digital-feature-list {
    gap: 18px;
  }

  .digital-anchor-nav {
    gap: 20px;
    margin: 22px 0 36px;
    padding: 12px 0;
  }

  .digital-anchor-nav a::after {
    bottom: -13px;
  }

  .digital-feature-groups {
    gap: 46px;
  }

  .digital-group-heading {
    margin-bottom: 20px;
  }

  .digital-group-heading h2 {
    font-size: 25px;
  }

  .digital-feature-media.is-illustration {
    padding: 12px;
  }

  .digital-feature-content {
    gap: 10px;
    padding: 22px;
  }

  .digital-feature-content h3 {
    font-size: 21px;
  }

  .digital-feature-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .digital-metrics span {
    padding: 0 8px;
  }

  .digital-metrics strong {
    font-size: 17px;
  }

  .digital-metrics small {
    font-size: 11px;
  }

  .digital-image-modal {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
    padding: 14px;
  }

  .digital-modal-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .digital-modal-nav {
    width: 38px;
    height: 38px;
    font-size: 27px;
  }

  .business-cards,
  .photo-grid,
  .screen-grid,
  .product-grid,
  .catalog-categories,
  .catalog-list,
  .value-grid,
  .certificate-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .recruit-contact,
  .recruit-contact dl {
    grid-template-columns: 1fr;
  }

  .careers-hero img {
    height: 160px;
  }

  .careers-banner {
    min-height: 360px;
  }

  .careers-banner > img {
    height: 360px;
    object-position: 56% center;
  }

  .careers-banner::after {
    background: linear-gradient(180deg, rgba(35, 29, 27, 0) 12%, rgba(35, 29, 27, 0.72) 100%);
  }

  .careers-banner-content {
    left: 22px;
    bottom: 24px;
    width: calc(100% - 44px);
  }

  .careers-banner-content h1 {
    font-size: 34px;
  }

  .careers-banner-content > p:not(.eyebrow) {
    margin: 12px 0 20px;
    font-size: 15px;
  }

  .career-values,
  .job-openings {
    margin-top: 48px;
  }

  .career-section-heading h2 {
    font-size: 28px;
  }

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

  .career-value-strip div {
    min-height: 104px;
    padding: 16px;
  }

  .career-value-strip div:nth-child(2) {
    border-right: 0;
  }

  .career-value-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .job-item summary {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
    padding: 18px;
  }

  .job-title {
    grid-column: 1;
  }

  .job-title strong {
    font-size: 20px;
  }

  .job-meta {
    grid-column: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px 0;
    font-size: 13px;
  }

  .job-meta > span {
    padding: 0 10px;
  }

  .job-meta > span:first-child {
    padding-left: 0;
  }

  .job-toggle {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .job-detail {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }

  .job-detail-footer {
    grid-column: 1;
    display: grid;
  }

  .recruit-contact-v2 {
    margin-top: 48px;
    padding: 26px 0;
  }

  .recruit-contact-v2 dl div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recruit-contact-v2 dl div:last-child {
    border-bottom: 0;
  }

  .photo-grid img {
    height: 210px;
  }

  .achievement-grid div,
  .basic-info div,
  .timeline li,
  .news-item {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    display: block;
    margin-bottom: 18px;
  }

  .news-categories {
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .news-categories::-webkit-scrollbar {
    display: none;
  }

  .news-categories a {
    flex: 0 0 auto;
  }

  .news-count {
    display: block;
    padding: 10px 0;
    text-align: right;
  }

  .news-item {
    min-height: 0;
    gap: 16px;
    padding: 14px;
  }

  .news-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .news-item-meta {
    align-items: center;
  }

  .news-item strong {
    font-size: 20px;
  }

  .news-item-footer span {
    max-width: none;
    min-height: 0;
  }

  .news-pagination {
    gap: 8px;
  }

  .news-pagination a {
    min-width: 38px;
    min-height: 38px;
    padding: 0 11px;
  }

  .news-pagination-status {
    flex: 0 0 100%;
    margin: 2px 0 0;
    text-align: center;
  }

  .china-map {
    min-height: 300px;
  }

  .chairman-block,
  .achievement-panel,
  .china-map-card,
  .careers-hero .section-heading,
  .contact-copy,
  .contact-form-card,
  .map-shot-card,
  .news-article,
  .recent-news,
  .catalog-detail,
  .modal-panel {
    padding: 22px;
  }

  .catalog-category {
    min-height: 0;
  }

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

  .catalog-category {
    min-height: 96px;
    padding: 13px;
  }

  .catalog-category strong {
    font-size: 15px;
  }

  .catalog-category span {
    font-size: 12px;
  }

  .catalog-toolbar-title strong {
    font-size: 18px;
  }

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

  .catalog-product-image {
    aspect-ratio: 16 / 9;
  }

  .product-detail-card {
    padding: 22px;
  }

  .product-gallery-main img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .product-gallery-thumb img {
    height: 76px;
  }

  .product-detail-info h3 {
    font-size: 28px;
  }

  .product-detail-price {
    font-size: 26px;
  }

  .product-detail-actions {
    display: grid;
  }

  .product-detail-meta,
  .product-description dl,
  .catalog-detail dl {
    grid-template-columns: 1fr;
  }

  .news-article h1 {
    font-size: 28px;
  }

  .news-article-cover {
    margin: 22px 0 24px;
  }

  .news-article-pagination {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 28px;
    padding-top: 18px;
  }

  .news-article-pagination a:last-child {
    text-align: left;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-copy h1 {
    font-size: 34px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .tianditu-map {
    min-height: 260px;
  }

  .chairman-block img {
    height: auto;
  }

  .slogan-band {
    padding: 28px 20px;
    font-size: 26px;
  }

  .contact-strip {
    flex-direction: column;
    padding: 28px 22px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }
}

@media (min-width: 1041px) and (max-width: 1120px) {
  .navbar {
    grid-template-columns: auto 1fr;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    grid-column: auto;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding-bottom: 0;
  }

  .nav-menu > a,
  .nav-item > a {
    min-height: 76px;
    padding: 0;
    border-bottom: 0;
  }

  .nav-dropdown {
    position: absolute;
    min-width: 210px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    box-shadow: 0 18px 44px rgba(86, 23, 10, 0.18);
  }

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

  .footer-main {
    grid-template-columns: minmax(230px, 1.2fr) minmax(250px, 1fr) minmax(210px, 0.95fr) 124px;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .home-header .utility-bar {
    width: min(100% - 28px, 1160px);
    min-height: auto;
    display: flex;
    padding: 8px 14px;
  }

  .home-header .navbar {
    min-height: 68px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-header.is-scrolled .utility-bar,
  .home-header.is-scrolled .navbar {
    width: 100%;
  }

  .home-header .utility-bar > p {
    display: none;
  }

  .home-header .utility-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-header .order-link {
    min-width: 0;
    min-height: 38px;
    padding: 5px 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }

  .home-header .brand-logo-full {
    width: min(206px, calc(100vw - 112px));
  }

  .home-header .program-panel.utility-program-panel {
    top: calc(100% + 76px);
    width: 100%;
  }
}

@media (max-width: 900px) {
  .overview-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .overview-mission-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .overview-mission-panel > div {
    padding: 38px 30px;
  }

  .overview-philosophy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 620px;
  }

  .overview-philosophy-grid article:nth-child(2) {
    border-right: 0;
  }

  .overview-philosophy-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .overview-philosophy-stage,
  .overview-philosophy-grid article {
    min-height: 310px;
  }

  .overview-philosophy-grid p {
    opacity: 1;
    transform: none;
  }

  .overview-capability-grid {
    grid-template-columns: 1fr;
  }

  .overview-capability-grid article {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  }

  .overview-capability-grid img {
    height: 100%;
    aspect-ratio: auto;
  }

  .overview-values {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .achievement-map {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .achievement-panel,
  .china-map-card {
    width: 100%;
    min-width: 0;
  }

  .map-title span {
    overflow-wrap: anywhere;
  }

  .overview-section {
    gap: 44px;
  }

  .overview-hero {
    min-height: 460px;
    background-position: 63% center;
  }

  .overview-hero::before {
    background: linear-gradient(0deg, rgba(34, 18, 13, 0.94) 0%, rgba(34, 18, 13, 0.7) 46%, rgba(34, 18, 13, 0.08) 82%);
  }

  .overview-hero-content {
    padding: 28px 24px;
  }

  .overview-hero-content h1 {
    font-size: 38px;
  }

  .overview-hero-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .overview-hero-content strong {
    font-size: 16px;
  }

  .overview-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -44px;
  }

  .overview-stats div {
    padding: 20px 16px;
  }

  .overview-stats div:nth-child(2) {
    border-right: 0;
  }

  .overview-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .overview-stats strong {
    font-size: 27px;
  }

  .overview-section-heading h2,
  .overview-values h2 {
    font-size: 28px;
  }

  .overview-mission-panel {
    grid-template-columns: 1fr;
  }

  .overview-mission-panel > img {
    aspect-ratio: 16 / 10;
  }

  .overview-mission-panel > div {
    padding: 34px 22px 38px;
  }

  .overview-mission-panel h3 {
    font-size: 24px;
  }

  .overview-mission-panel p {
    margin-top: 14px;
    font-size: 15px;
  }

  .overview-philosophy-grid article {
    min-height: 290px;
    padding: 30px 16px;
  }

  .overview-philosophy-grid img {
    width: 52px;
    height: 52px;
  }

  .overview-philosophy-grid h3 {
    font-size: 22px;
  }

  .overview-philosophy-grid p {
    min-height: 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .overview-capability-grid article {
    display: block;
  }

  .overview-capability-grid img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .overview-capability-grid article > div {
    padding: 20px;
  }

  .chairman-block blockquote {
    font-size: 22px;
  }

  .overview-values {
    padding: 30px 0;
  }
}

.company-info-page {
  display: grid;
  gap: 64px;
}

.company-information-section,
.company-introduction-section {
  display: grid;
  gap: 26px;
}

.company-facts {
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  padding: 18px 8px;
  border-top: 1px solid var(--line);
}

.company-facts > div:first-child {
  border-top: 0;
}

.company-facts dt,
.company-facts dd {
  margin: 0;
}

.company-facts dt {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.company-facts dd {
  color: var(--ink);
  font-size: 16px;
}

.company-introduction-section {
  padding-top: 58px;
  border-top: 1px solid var(--brand);
}

.company-introduction-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

.company-introduction-copy strong {
  color: var(--brand-dark);
}

.company-achievements {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: center;
  margin-top: 28px;
}

.company-achievement-media {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 7 / 9;
  justify-self: center;
}

.company-achievement-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
  object-fit: contain;
  opacity: 0;
  transform-origin: center top;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.company-achievement-content h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 25px;
}

.company-achievement-list {
  display: grid;
  gap: 14px;
}

.company-achievement-list button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 116px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.company-achievement-list button:hover,
.company-achievement-list button:focus-visible,
.company-achievement-list button.is-active {
  border-color: var(--brand);
  box-shadow: 0 10px 28px rgba(112, 31, 17, 0.1);
}

.company-achievement-list button:focus-visible {
  outline: 2px solid rgba(168, 34, 9, 0.25);
  outline-offset: 3px;
}

.company-achievement-list button > img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.company-achievement-list button > span {
  display: grid;
  gap: 7px;
}

.company-achievement-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.company-achievement-list button:hover strong,
.company-achievement-list button:focus-visible strong,
.company-achievement-list button.is-active strong {
  color: var(--brand-dark);
}

.company-achievement-list small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.company-certificate-section {
  display: grid;
  gap: 26px;
  padding-top: 58px;
  border-top: 1px solid var(--brand);
}

.company-certificate-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.company-certificate-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-certificate-controls span {
  margin-right: 8px;
  color: var(--muted);
  font-size: 14px;
}

.company-certificate-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0 0 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: 32px/1 Arial, sans-serif;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.company-certificate-controls button:hover,
.company-certificate-controls button:focus-visible {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.company-certificate-controls button:focus-visible {
  outline: 2px solid rgba(168, 34, 9, 0.2);
  outline-offset: 3px;
}

.company-certificate-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.company-certificate-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.company-certificate-track::-webkit-scrollbar {
  display: none;
}

.company-certificate-track article {
  min-width: 0;
  scroll-snap-align: start;
}

.company-certificate-track img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f8f7;
  object-fit: contain;
}

.company-certificate-track p {
  display: -webkit-box;
  min-height: 68px;
  margin: 14px 2px 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.company-info-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.company-info-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.2;
}

.company-info-heading > p {
  width: min(480px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.company-info-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-info-nav a {
  position: relative;
  padding: 17px 20px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.company-info-nav a:last-child {
  border-right: 0;
}

.company-info-nav a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: transparent;
}

.company-info-nav a:hover {
  color: var(--brand-dark);
  background: var(--brand-wash);
}

.company-info-nav a:hover::after {
  background: var(--brand);
}

.company-profile-section,
.company-qualification-section,
.company-history-section,
.company-organization-section {
  display: grid;
  gap: 26px;
  scroll-margin-top: 150px;
}

.company-info-section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.25;
}

.company-info-section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.company-info-section-title-row > p {
  width: min(430px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.company-profile-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.company-profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.company-profile-name {
  display: grid;
  gap: 8px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--brand-dark);
}

.company-profile-name span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.company-profile-name strong {
  font-size: 23px;
  line-height: 1.35;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 10px 28px 20px;
}

.company-profile-grid div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.company-profile-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.company-profile-grid div:nth-child(odd) {
  padding-right: 22px;
}

.company-profile-grid div:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.company-profile-grid dt,
.company-profile-summary dt {
  color: var(--brand-dark);
  font-weight: 900;
}

.company-profile-grid dd,
.company-profile-summary dd {
  margin: 0;
  color: var(--ink);
}

.company-profile-summary {
  align-self: center;
  padding: 12px 0 12px 34px;
  border-left: 3px solid var(--brand);
}

.company-profile-summary h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 25px;
}

.company-profile-summary > p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.company-profile-summary dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.company-profile-summary dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

.company-qualification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-qualification-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 26px 24px;
}

.company-qualification-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.company-qualification-list article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.company-qualification-list article > span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.company-qualification-list small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.company-qualification-list h3 {
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: 21px;
}

.company-qualification-list p {
  margin: 0;
  color: var(--muted);
}

.company-timeline {
  position: relative;
  display: grid;
  gap: 0;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.company-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 110px;
  width: 1px;
  background: var(--line);
}

.company-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 52px;
  min-height: 112px;
}

.company-timeline li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 104px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.company-timeline time {
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
  text-align: right;
}

.company-timeline strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 20px;
}

.company-timeline p {
  margin: 0;
  color: var(--muted);
}

.company-org-tree {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.company-org-root,
.company-org-centers div,
.company-org-service {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 14px;
  border: 1px solid rgba(168, 34, 9, 0.24);
  border-radius: 6px;
  color: var(--brand-dark);
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.company-org-root {
  position: relative;
  width: min(260px, 100%);
  margin: 0 auto;
  color: var(--white);
  background: var(--brand-dark);
}

.company-org-root::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: rgba(168, 34, 9, 0.42);
}

.company-org-centers {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.company-org-centers::before {
  content: "";
  position: absolute;
  top: -22px;
  right: calc(16.666% - 12px);
  left: calc(16.666% - 12px);
  height: 1px;
  background: rgba(168, 34, 9, 0.42);
}

.company-org-centers div {
  position: relative;
}

.company-org-centers div::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  width: 1px;
  height: 22px;
  background: rgba(168, 34, 9, 0.42);
}

.company-org-service {
  position: relative;
  width: min(320px, 100%);
  margin: 54px auto 0;
}

.company-org-service::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 50%;
  width: 1px;
  height: 54px;
  background: rgba(168, 34, 9, 0.42);
}

.company-organization-chart {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 72px;
  width: 100%;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fcfbfa;
}

.organization-governance {
  position: relative;
  display: grid;
  align-self: start;
  align-content: start;
  justify-items: center;
  gap: 56px;
  padding: 8px 0;
}

.organization-governance::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 50%;
  width: 2px;
  background: rgba(168, 34, 9, 0.58);
}

.organization-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(168, 34, 9, 0.34);
  border-radius: 4px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.organization-node-major {
  width: 100%;
  color: #fff;
  background: var(--brand-dark);
}

.organization-governance .organization-node-major:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 74px;
  height: 2px;
  background: rgba(168, 34, 9, 0.58);
}

.organization-governance .organization-node-major:last-child {
  margin-top: 12px;
}

.organization-node-branch {
  width: min(150px, 66%);
  justify-self: end;
  margin-top: -22px;
  margin-bottom: -22px;
  background: var(--brand-wash);
}

.organization-business-lines {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 48px;
}

.organization-business-lines::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 0;
  width: 2px;
  background: rgba(168, 34, 9, 0.58);
}

.organization-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(210px, 1.1fr);
  gap: 70px;
  align-items: center;
  min-height: 64px;
}

.organization-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -48px;
  width: 48px;
  height: 2px;
  background: rgba(168, 34, 9, 0.58);
}

.organization-row.has-detail > .organization-node:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 71px;
  height: 2px;
  background: rgba(168, 34, 9, 0.58);
}

.organization-subgroups {
  position: relative;
  display: grid;
  gap: 10px;
}

.organization-subgroups::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: -35px;
  width: 2px;
  background: rgba(168, 34, 9, 0.58);
}

.organization-subgroups .organization-node::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 35px;
  height: 2px;
  background: rgba(168, 34, 9, 0.58);
}

@media (max-width: 900px) {
  .company-info-heading,
  .company-info-section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .company-profile-layout {
    grid-template-columns: 1fr;
  }

  .company-profile-summary {
    padding: 6px 0 6px 26px;
  }

  .company-achievements {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .company-certificate-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .company-organization-chart {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 40px;
    padding: 28px;
  }

  .organization-business-lines {
    padding-left: 34px;
  }

  .organization-row {
    grid-template-columns: minmax(170px, 0.9fr) minmax(170px, 1.1fr);
    gap: 40px;
  }

  .organization-row::before {
    left: -34px;
    width: 34px;
  }

  .organization-row.has-detail > .organization-node:first-child::after {
    width: 41px;
  }

  .organization-governance .organization-node-major:last-child::after {
    width: 42px;
  }
}

@media (max-width: 720px) {
  .company-info-page {
    gap: 44px;
  }

  .company-info-heading h1 {
    font-size: 34px;
  }

  .company-info-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -22px;
  }

  .company-info-nav a:nth-child(2) {
    border-right: 0;
  }

  .company-info-nav a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .company-info-section-title h2 {
    font-size: 28px;
  }

  .company-facts > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 4px;
  }

  .company-introduction-section {
    padding-top: 38px;
  }

  .company-introduction-copy {
    font-size: 15px;
    line-height: 1.9;
  }

  .company-achievements {
    margin-top: 10px;
  }

  .company-achievement-media {
    width: min(100%, 340px);
  }

  .company-achievement-content h3 {
    font-size: 22px;
  }

  .company-achievement-list button {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .company-achievement-list button > img {
    width: 40px;
    height: 40px;
  }

  .company-achievement-list strong {
    font-size: 16px;
  }

  .company-certificate-section {
    padding-top: 38px;
  }

  .company-certificate-heading {
    gap: 16px;
  }

  .company-certificate-controls span {
    display: none;
  }

  .company-certificate-controls button {
    width: 38px;
    height: 38px;
  }

  .company-certificate-track {
    grid-auto-columns: 82%;
    gap: 14px;
  }

  .company-organization-chart {
    display: block;
    padding: 20px 16px;
  }

  .organization-governance {
    gap: 24px;
  }

  .organization-node-branch {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .organization-node-major {
    width: min(210px, 90%);
  }

  .organization-governance .organization-node-major:last-child::after {
    display: none;
  }

  .organization-governance .organization-node-major:last-child {
    margin-top: 0;
  }

  .organization-business-lines {
    gap: 14px;
    margin-top: 38px;
    padding-left: 26px;
  }

  .organization-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .organization-row::before {
    top: 28px;
    left: -26px;
    width: 26px;
  }

  .organization-row.has-detail > .organization-node:first-child::after {
    display: none;
  }

  .organization-row.has-detail > .organization-node:nth-child(2),
  .organization-subgroups {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .organization-subgroups::before {
    left: -12px;
  }

  .organization-subgroups .organization-node::before {
    width: 12px;
  }

  .company-profile-name {
    padding: 22px 20px;
  }

  .company-profile-name strong {
    font-size: 20px;
  }

  .company-profile-grid {
    grid-template-columns: 1fr;
    padding: 8px 20px 16px;
  }

  .company-profile-grid div,
  .company-profile-grid div:nth-child(odd),
  .company-profile-grid div:nth-child(even) {
    grid-template-columns: 92px 1fr;
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-profile-grid div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .company-profile-grid div:last-child {
    border-bottom: 0;
  }

  .company-profile-summary {
    padding-left: 20px;
  }

  .company-profile-summary dl div {
    grid-template-columns: 78px 1fr;
  }

  .company-qualification-list {
    grid-template-columns: 1fr;
  }

  .company-qualification-list article,
  .company-qualification-list article:nth-child(odd),
  .company-qualification-list article:nth-child(-n + 2) {
    padding: 22px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-qualification-list article:last-child {
    border-bottom: 0;
  }

  .company-timeline {
    padding-left: 28px;
  }

  .company-timeline::before {
    left: 6px;
  }

  .company-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 124px;
  }

  .company-timeline li::before {
    left: 0;
  }

  .company-timeline time {
    font-size: 18px;
    text-align: left;
  }

  .company-org-tree {
    padding: 28px 20px;
  }

  .company-org-centers {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-org-centers::before {
    top: -22px;
    right: auto;
    bottom: -34px;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .company-org-centers div::before {
    display: none;
  }

  .company-org-service {
    margin-top: 34px;
  }

  .company-org-service::before {
    top: -35px;
    height: 34px;
  }
}

.business-page-hero {
  --business-hero-image: url("./assets/hero-assistive-service.png");
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius);
  background-image:
    linear-gradient(90deg, rgba(35, 24, 20, 0.88) 0%, rgba(35, 24, 20, 0.64) 42%, rgba(35, 24, 20, 0.08) 76%),
    var(--business-hero-image);
  background-position: center;
  background-size: cover;
}

.rental-business-hero {
  --business-hero-image: url("./assets/rental-hero-generated-v1.webp");
}

.rental-business-hero,
.products-business-hero,
.digital-business-hero {
  width: 100vw;
  min-height: clamp(500px, 62vh, 580px);
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  background-color: #eee9e4;
  background-image:
    linear-gradient(135deg, rgba(30, 20, 17, 0.88) 0%, rgba(45, 27, 21, 0.62) 38%, rgba(54, 34, 27, 0.18) 72%, rgba(54, 34, 27, 0) 100%),
    var(--business-hero-image);
  background-position: center 46%;
}

.rental-section,
.product-section,
.digital-section {
  padding-top: 0;
}

.rental-business-hero .business-page-hero-content,
.products-business-hero .business-page-hero-content,
.digital-business-hero .business-page-hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.rental-business-hero .business-page-hero-content h1,
.rental-business-hero .business-page-hero-content > p:not(.eyebrow),
.products-business-hero .business-page-hero-content h1,
.products-business-hero .business-page-hero-content > p:not(.eyebrow),
.digital-business-hero .business-page-hero-content h1,
.digital-business-hero .business-page-hero-content > p:not(.eyebrow) {
  width: min(620px, 100%);
}

.products-business-hero {
  --business-hero-image: url("./assets/products-hero-generated-v1.webp");
  background-position: center;
}

.digital-business-hero {
  --business-hero-image: url("./assets/digital-hero-generated-v1.webp");
  background-position: center;
}

.overview-section,
.careers-section {
  padding-top: 0;
}

.overview-hero,
.careers-banner {
  width: 100vw;
  min-height: clamp(500px, 62vh, 580px);
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  background-color: #eee9e4;
}

.overview-hero {
  background-image: url("./assets/overview-hero-generated-v3.webp");
  background-position: center;
  background-size: cover;
}

.overview-hero::before,
.careers-banner::after {
  background: linear-gradient(135deg, rgba(30, 20, 17, 0.88) 0%, rgba(45, 27, 21, 0.62) 38%, rgba(54, 34, 27, 0.18) 72%, rgba(54, 34, 27, 0) 100%);
}

.overview-hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.overview-hero-content > p:not(.eyebrow),
.overview-hero-content strong {
  width: min(620px, 100%);
}

.careers-banner > img {
  height: clamp(500px, 62vh, 580px);
  object-position: center;
  filter: none;
}

.careers-banner-content {
  right: auto;
  bottom: 64px;
  left: 50%;
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
}

.careers-banner-content h1,
.careers-banner-content > p:not(.eyebrow) {
  width: min(620px, 100%);
}

.business-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 44px;
  color: var(--white);
}

.business-page-hero-content .eyebrow {
  color: #ffd8cc;
}

.business-page-hero-content h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.16;
}

.business-page-hero-content > p:not(.eyebrow) {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
}

.business-page-nav {
  position: sticky;
  top: 114px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  margin: 0 0 48px;
  padding: 15px 2px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.business-page-nav::-webkit-scrollbar {
  display: none;
}

.business-page-nav a {
  position: relative;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.business-page-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 2px;
  background: transparent;
  opacity: 1;
  transform: none;
  transition: none;
}

.business-page-nav a:hover {
  color: var(--brand-dark);
}

.business-page-nav a:hover::after {
  background: var(--brand);
}

.process-mobile {
  display: none;
}

.achievement-panel {
  padding: 4px 28px 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.achievement-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.achievement-grid div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.achievement-grid div:first-child {
  border-top: 0;
}

.digital-anchor-nav {
  margin-top: 0;
}

.digital-feature-list {
  gap: 36px;
}

.digital-feature,
.digital-feature:nth-child(even) {
  overflow: visible;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.digital-feature-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.digital-feature-media:hover {
  border-color: rgba(168, 34, 9, 0.38);
}

.digital-feature-media img,
.digital-feature-media:hover img {
  transform: none;
}

@media (max-width: 900px) {
  .business-page-nav {
    top: 68px;
  }

  .digital-feature,
  .digital-feature:nth-child(even) {
    padding: 20px 0 28px;
  }
}

@media (max-width: 720px) {
  .business-page-hero {
    min-height: 410px;
    background-position: 62% center;
    background-image:
      linear-gradient(0deg, rgba(35, 24, 20, 0.94) 0%, rgba(35, 24, 20, 0.66) 48%, rgba(35, 24, 20, 0.08) 82%),
      var(--business-hero-image);
  }

  .rental-business-hero,
  .products-business-hero,
  .digital-business-hero {
    min-height: min(520px, calc(100svh - 68px));
    background-image:
      linear-gradient(145deg, rgba(30, 20, 17, 0.92) 0%, rgba(45, 27, 21, 0.68) 48%, rgba(54, 34, 27, 0.12) 100%),
      var(--business-hero-image);
  }

  .rental-business-hero {
    background-position: 66% center;
  }

  .products-business-hero {
    background-position: 64% center;
  }

  .digital-business-hero {
    background-position: 72% center;
  }

  .rental-business-hero .business-page-hero-content,
  .products-business-hero .business-page-hero-content,
  .digital-business-hero .business-page-hero-content {
    width: min(100% - 28px, 1160px);
    padding: 0 0 36px;
  }

  .overview-hero,
  .careers-banner {
    min-height: min(520px, calc(100svh - 68px));
  }

  .overview-hero {
    background-position: 58% center;
  }

  .overview-hero::before,
  .careers-banner::after {
    background: linear-gradient(145deg, rgba(30, 20, 17, 0.92) 0%, rgba(45, 27, 21, 0.68) 48%, rgba(54, 34, 27, 0.12) 100%);
  }

  .overview-hero-content {
    width: min(100% - 28px, 1160px);
    padding: 0 0 36px;
  }

  .careers-banner > img {
    height: min(520px, calc(100svh - 68px));
    object-position: 70% center;
  }

  .careers-banner-content {
    bottom: 36px;
    left: 50%;
    width: min(100% - 28px, 1160px);
  }

  .business-page-hero-content {
    padding: 28px 24px;
  }

  .business-page-hero-content h1 {
    font-size: 34px;
  }

  .business-page-hero-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .business-page-nav {
    gap: 24px;
    margin-bottom: 38px;
  }

  .process-photo-figure {
    display: none;
  }

  .process-mobile {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0 0 0 34px;
    list-style: none;
  }

  .process-mobile::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 18px;
    left: 11px;
    width: 1px;
    background: var(--line);
  }

  .process-mobile li {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .process-mobile li + li {
    padding-top: 20px;
  }

  .process-mobile li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -29px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
  }

  .process-mobile li + li::before {
    top: 27px;
  }

  .process-mobile span {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
  }

  .process-mobile strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
  }

  .process-mobile p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
  }

  .achievement-panel {
    padding: 0;
  }

  .digital-feature-media.is-interface {
    height: 190px;
    aspect-ratio: auto;
  }

  .digital-feature-media.is-interface img {
    width: 148%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left top;
  }

  .digital-feature-content {
    padding: 22px 2px 0;
  }
}
