/* base.css */
@font-face {
  font-family: "Michroma";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/michroma-latin-400-normal.woff2") format("woff2");
}

:root {
  color: #15191c;
  background: #ffffff;
  font-family: "Inter Variable", Inter, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --red: #c81115;
  --red-dark: #a70e12;
  --ink: #10171b;
  --ink-soft: #1a2328;
  --text: #15191c;
  --muted: #606970;
  --muted-light: #899096;
  --line: #dfe3e5;
  --line-dark: rgba(255, 255, 255, 0.14);
  --surface: #f5f6f6;
  --surface-2: #eef0f1;
  --white: #ffffff;
  --container: 1280px;
  --shadow: 0 12px 34px rgba(15, 23, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: "Inter Variable", Inter, Arial, sans-serif;
}

html[data-locale="zh"] body,
html[data-locale="zh"] button,
html[data-locale="zh"] input,
html[data-locale="zh"] textarea,
html[data-locale="zh"] select {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

html[data-locale="zh"] h1,
html[data-locale="zh"] h2,
html[data-locale="zh"] h3 {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope Variable", Manrope, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: 50px;
  line-height: 1.12;
  font-weight: 760;
}

h2 {
  font-size: 30px;
  line-height: 1.22;
  font-weight: 730;
}

h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

p {
  line-height: 1.65;
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin-inline: auto;
}

.page {
  width: 100%;
  overflow: clip;
}

.content-loading {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  background: var(--white);
}

.content-loading__inner {
  display: flex;
  width: min(280px, 76vw);
  align-items: center;
  flex-direction: column;
  transform: translateY(-2vh);
  animation: content-loading-enter 240ms ease-out 120ms both;
}

.content-loading__logo {
  display: block;
  width: min(280px, 76vw);
  height: auto;
}

.content-loading__track {
  position: relative;
  display: block;
  width: 116px;
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e5;
}

.content-loading__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36px;
  border-radius: inherit;
  background: var(--red);
  animation: content-loading-progress 1.15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.content-loading__label {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

@keyframes content-loading-enter {
  from {
    opacity: 0;
    transform: translateY(calc(-2vh + 4px));
  }

  to {
    opacity: 1;
    transform: translateY(-2vh);
  }
}

@keyframes content-loading-progress {
  from {
    transform: translateX(-38px);
  }

  to {
    transform: translateX(118px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-loading__inner {
    animation: none;
  }

  .content-loading__progress {
    left: 40px;
    animation: none;
  }
}

.content-status {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 17, 21, 0.08), transparent 38%),
    var(--surface);
}

.content-status__panel {
  width: min(640px, 100%);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow);
}

.content-status__mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 24px;
  font-weight: 760;
}

.content-status__eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.content-status h1 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 46px);
}

.content-status p {
  color: var(--muted);
}

.content-status pre {
  max-height: 180px;
  margin: 24px 0;
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  color: #8b1114;
  background: #fff7f7;
  font: 13px/1.55 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.content-status button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
  cursor: pointer;
}

.content-status button:hover {
  background: var(--red-dark);
}

.button {
  display: inline-flex;
  min-width: 154px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.button--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button--outline {
  color: var(--text);
  background: #ffffff;
  border-color: #9ea5aa;
}

.button--outline:hover {
  color: var(--red);
  border-color: var(--red);
}

.button--light {
  color: var(--text);
  background: #ffffff;
  border-color: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 650;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #343a3e;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 21px;
  height: 3px;
  background: var(--red);
}

.eyebrow--light {
  color: #ffffff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: #8a9196;
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs strong {
  color: #60676c;
  font-weight: 520;
}

@media (max-width: 1100px) {
  :root {
    --container: 940px;
  }

  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  h1 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 36px;
    line-height: 1.14;
  }

  h2 {
    font-size: 25px;
  }

  .button {
    min-width: 0;
    height: 48px;
    padding-inline: 18px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}


/* components.css */
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  width: 100%;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header--overlay {
  position: fixed;
  inset: 0 0 auto;
}

.site-header--dark {
  color: #ffffff;
  background: var(--ink);
}

.site-header--overlay.site-header--dark {
  background: rgba(11, 16, 19, 0.7);
}

.site-header--scrolled {
  box-shadow: 0 8px 28px rgba(8, 13, 16, 0.18);
}

.site-header--overlay.site-header--scrolled {
  background: rgba(16, 23, 27, 0.97);
  backdrop-filter: blur(12px);
}

.site-header--overlay.site-header--scrolled.site-header--mobile-open {
  backdrop-filter: none;
}

.site-header--light {
  color: var(--text);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.subpage-hero {
  position: relative;
  height: clamp(360px, 46vh, 500px);
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.subpage-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(7, 11, 13, 0.5);
  content: "";
}

.subpage-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.subpage-hero__eyebrow {
  padding-top: 13px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 3px solid var(--red);
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
}

.subpage-hero h1 {
  max-width: 1050px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.subpage-breadcrumb {
  height: 62px;
  background: #f5f6f6;
  border-bottom: 1px solid var(--line);
}

.subpage-breadcrumb .breadcrumbs {
  height: 100%;
}

.utility-bar {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11px;
}

.utility-bar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.utility-bar__inner > div {
  display: flex;
  gap: 36px;
}

.header-main {
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header--overlay .header-main {
  height: 78px;
}

.brand-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ink);
  line-height: 0;
}

.brand-logo--inverse {
  color: #ffffff;
}

.brand-logo__picture,
.brand-logo__image {
  display: block;
}

.brand-logo__image {
  height: auto;
  max-width: none;
  object-fit: contain;
}

.brand-logo--header .brand-logo__image {
  width: 252px;
}

.brand-logo--compact .brand-logo__image {
  width: 190px;
}

.brand-logo--stacked .brand-logo__image {
  width: 142px;
}

.brand-logo__english-addon {
  display: grid;
  height: 30px;
  grid-template-columns: 1px max-content;
  align-items: center;
  column-gap: 10px;
  margin-left: 12px;
  color: currentColor;
}

.brand-logo__english-divider {
  width: 1px;
  height: 30px;
  background: currentColor;
  opacity: 0.76;
}

.brand-logo__english-copy {
  display: grid;
  gap: 2px;
  font-family: "Michroma", "Manrope Variable", Manrope, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  -webkit-text-stroke: 0.46px currentColor;
  paint-order: stroke fill;
  text-rendering: geometricPrecision;
}

.brand-logo--stacked .brand-logo__english-addon {
  height: 42px;
  column-gap: 12px;
  margin-left: 14px;
}

.brand-logo--stacked .brand-logo__english-divider {
  height: 42px;
}

.brand-logo--stacked .brand-logo__english-copy {
  gap: 3px;
  font-size: 13px;
  -webkit-text-stroke-width: 0.42px;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  margin-left: auto;
}

.nav-entry {
  display: flex;
  align-items: stretch;
}

.nav-entry > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 520;
  white-space: nowrap;
}

.nav-entry > a::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-entry > a:hover::after,
.nav-entry > a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.mobile-menu-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 3px;
  cursor: pointer;
}

.site-header--dark .icon-button {
  border-color: rgba(255, 255, 255, 0.42);
}

.language-control {
  position: relative;
}

.language-button {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-menu {
  position: absolute;
  z-index: 40;
  top: 100%;
  right: 0;
  width: 150px;
  padding: 8px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  visibility: hidden;
  transition:
    clip-path 400ms cubic-bezier(0.45, 0, 0.55, 1),
    visibility 0s linear 400ms;
  will-change: clip-path;
}

.language-menu::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(10, 17, 21, 0.16);
  box-shadow: 0 4px 10px rgba(10, 17, 21, 0.1);
  content: "";
  pointer-events: none;
  transition: top 400ms cubic-bezier(0.45, 0, 0.55, 1);
}

.language-menu.is-open {
  clip-path: inset(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    clip-path 400ms cubic-bezier(0.45, 0, 0.55, 1),
    visibility 0s;
}

.language-menu.is-open::after {
  top: calc(100% - 1px);
}

.language-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.is-current {
  color: var(--red);
  background: var(--surface);
}

.mobile-menu-button {
  display: none;
}

.mega-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  width: 100%;
  color: var(--text);
  background: #ffffff;
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 42px rgba(10, 17, 21, 0.17);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  visibility: hidden;
  transition:
    clip-path 400ms cubic-bezier(0.45, 0, 0.55, 1),
    visibility 0s linear 400ms;
  will-change: clip-path;
}

.mega-menu::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(10, 17, 21, 0.18);
  box-shadow: 0 5px 12px rgba(10, 17, 21, 0.12);
  content: "";
  pointer-events: none;
  transition: top 400ms cubic-bezier(0.45, 0, 0.55, 1);
}

.mega-menu.is-open {
  clip-path: inset(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    clip-path 400ms cubic-bezier(0.45, 0, 0.55, 1),
    visibility 0s;
}

.mega-menu.is-open::after {
  top: calc(100% - 1px);
}

.mega-menu.is-open.is-switching {
  pointer-events: none;
  animation: mega-menu-curtain-switch 400ms cubic-bezier(0.45, 0, 0.55, 1) both;
}

.mega-menu.is-open.is-switching::after {
  animation: mega-menu-curtain-edge-switch 400ms cubic-bezier(0.45, 0, 0.55, 1) both;
}

@keyframes mega-menu-curtain-switch {
  0%,
  100% {
    clip-path: inset(0);
  }

  50% {
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes mega-menu-curtain-edge-switch {
  0%,
  100% {
    top: calc(100% - 1px);
  }

  50% {
    top: 0;
  }
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  column-gap: 44px;
  row-gap: 28px;
  min-height: 240px;
  padding-block: 36px;
}

.mega-menu__inner--feature {
  padding-bottom: 26px;
}

.mega-menu__inner--1 {
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  min-height: 220px;
}

.mega-menu__intro {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.mega-menu__intro span {
  display: block;
  margin-bottom: 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.mega-menu__intro strong {
  display: block;
  max-width: 330px;
  font: 700 23px/1.35 "Manrope Variable", sans-serif;
}

.mega-menu__column h3 {
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.mega-menu__column a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.mega-menu__column a:hover {
  color: var(--red);
}

.mega-menu__feature {
  display: grid;
  min-height: 76px;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 14px 18px;
  color: var(--text);
  background: var(--surface);
  border-top: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.mega-menu__feature:hover {
  color: var(--red);
  background: #eef0f1;
}

.mega-menu__feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
}

.mega-menu__feature-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 3px 16px;
}

.mega-menu__feature-copy small {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.mega-menu__feature-copy strong {
  font: 720 15px/1.3 "Manrope Variable", sans-serif;
}

.mega-menu__feature-copy > span {
  color: var(--muted);
  font-size: 12px;
}

.mega-menu__feature-arrow {
  transition: transform 180ms ease;
}

.mega-menu__feature:hover .mega-menu__feature-arrow {
  transform: translateX(4px);
}

.mobile-drawer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100dvh;
  padding: 22px;
  color: var(--text);
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #ffffff;
  opacity: 1;
  isolation: isolate;
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer nav {
  padding: 18px 0;
}

.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mobile-nav-primary > a {
  padding: 14px 2px;
  font: 650 20px/1.2 "Manrope Variable", sans-serif;
}

.mobile-nav-primary > button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-nav-primary > button svg {
  transition: transform 180ms ease;
}

.mobile-nav-group.is-open .mobile-nav-primary > button svg {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: grid;
  gap: 14px;
  padding: 2px 0 18px 18px;
}

.mobile-nav-submenu section {
  display: grid;
  gap: 0;
}

.mobile-nav-submenu strong {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.mobile-nav-submenu a {
  padding: 6px 0;
  color: #535c61;
  font-size: 14px;
  line-height: 1.35;
}

.mobile-nav-submenu .mobile-nav-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  margin-top: 4px;
  color: var(--text);
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-weight: 720;
}

.mobile-nav-feature > svg:first-child {
  color: var(--red);
}

.mobile-nav-primary > a:focus-visible,
.mobile-nav-primary > button:focus-visible,
.mobile-nav-submenu a:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.25);
  outline-offset: 2px;
}

.mobile-drawer__language {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
}

.mobile-drawer__language > span {
  margin-right: 4px;
}

.mobile-drawer__language a {
  padding: 7px 10px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 13px;
}

.mobile-drawer__language a.is-current {
  color: var(--red);
  background: #ffffff;
  border-color: #ffffff;
}

.search-overlay {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(10, 16, 19, 0.96);
}

.search-overlay__close {
  position: absolute;
  top: 32px;
  right: 38px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.search-overlay form {
  width: min(760px, calc(100% - 40px));
}

.search-overlay label {
  display: block;
  margin-bottom: 24px;
  font: 720 37px/1.2 "Manrope Variable", sans-serif;
}

.search-field {
  display: flex;
  border-bottom: 2px solid #ffffff;
}

.search-field input {
  flex: 1;
  min-width: 0;
  padding: 18px 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  outline: 0;
}

.search-field button {
  width: 60px;
  color: #ffffff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.search-overlay form > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.floating-actions {
  position: fixed;
  z-index: 50;
  top: 195px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-inquiry {
  display: flex;
  width: 58px;
  height: 160px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 16px;
  color: #ffffff;
  background: var(--red);
  writing-mode: vertical-rl;
}

.floating-inquiry span {
  font-size: 11px;
  font-weight: 700;
}

html[data-locale="zh"] .floating-inquiry {
  width: 66px;
  height: 158px;
  gap: 12px;
  padding-top: 18px;
}

html[data-locale="zh"] .floating-inquiry span {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 3px;
}

.floating-whatsapp {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 260px;
  place-items: center;
  color: #ffffff;
  background: #22b948;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1181px) {
  .floating-actions {
    top: 0;
    bottom: 0;
    width: 58px;
    height: 100vh;
    height: 100svh;
    pointer-events: none;
  }

  html[data-locale="zh"] .floating-actions {
    width: 66px;
  }

  .floating-inquiry,
  .floating-whatsapp {
    position: absolute;
    right: 0;
    pointer-events: auto;
  }

  .floating-inquiry {
    top: 195px;
  }

  .floating-whatsapp {
    top: calc(50% - 145px);
    margin-top: 0;
  }
}

@media (min-width: 1181px) and (max-height: 899px) {
  .floating-whatsapp {
    top: 125px;
  }
}

.back-to-top {
  position: fixed;
  z-index: 60;
  left: 18px;
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(12, 18, 21, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top.is-visible:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(221, 25, 36, 0.28);
  outline-offset: 3px;
}

.page-cta {
  position: relative;
  min-height: 140px;
  overflow: hidden;
  background: #f1f2f3;
  border-top: 1px solid #e7e9ea;
}

.page-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("../images/case-commercial-hero.png");
  background-position: center 44%;
  background-size: cover;
  opacity: 0.045;
}

.page-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  gap: 30px;
}

.page-cta__icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
}

.page-cta__copy {
  flex: 1;
}

.page-cta h2 {
  margin-bottom: 4px;
  font-size: 24px;
}

.page-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-cta__actions {
  display: flex;
  gap: 14px;
}

.site-footer {
  min-height: 300px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 46px;
  padding-top: 42px;
  padding-bottom: 24px;
}

.footer-about > p {
  max-width: 280px;
  margin: 15px 0 18px;
  font-size: 12px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-column h3 {
  margin: 4px 0 18px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column > a,
.footer-column > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 12px;
}

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

.footer-column > .footer-video-link {
  padding-top: 10px;
  margin-top: 12px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.footer-video-link svg {
  color: #ffffff;
}

.footer-language {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 7px 10px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-language > span {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.35);
}

.footer-language a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 700;
}

.footer-language a:hover,
.footer-language a.is-current {
  color: #ffffff;
}

.footer-globe {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  font-size: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  font-size: 11px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-bottom > div > span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.site-footer--compact {
  min-height: 207px;
}

.site-footer--compact .footer-grid {
  gap: 34px;
  padding-top: 22px;
  padding-bottom: 10px;
}

.site-footer--compact .footer-about > p {
  margin-block: 7px;
  font-size: 10px;
}

.site-footer--compact .footer-column h3 {
  margin-bottom: 8px;
}

.site-footer--compact .footer-column > a,
.site-footer--compact .footer-column > span {
  margin: 4px 0;
  font-size: 10px;
}

.site-footer--compact .footer-bottom {
  min-height: 35px;
}

.lightbox,
.video-modal {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px;
  background: rgba(8, 12, 14, 0.94);
}

.lightbox > img {
  width: min(1180px, 86vw);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox > button,
.video-modal > button {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.lightbox__close,
.video-modal > button {
  top: 28px;
  right: 34px;
}

.lightbox__previous {
  top: 50%;
  left: 28px;
}

.lightbox__next {
  top: 50%;
  right: 28px;
}

.lightbox > span {
  position: absolute;
  bottom: 24px;
  color: #ffffff;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .mega-menu {
    display: none;
  }

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

  .footer-grid > :nth-child(4),
  .footer-grid > :nth-child(5) {
    margin-top: 18px;
  }

  .site-footer--compact {
    min-height: 0;
  }

  .floating-actions {
    top: auto;
    right: 18px;
    bottom: 20px;
  }

  .floating-inquiry {
    display: none;
  }

  .subpage-hero h1 {
    max-width: 850px;
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .page-cta__inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 30px;
  }

  .page-cta__copy {
    min-width: calc(100% - 102px);
  }

  .page-cta__actions {
    width: 100%;
    flex-wrap: wrap;
    padding-left: 102px;
  }
}

@media (max-width: 767px) {
  .utility-bar {
    display: none;
  }

  .header-main,
  .site-header--overlay .header-main {
    height: 72px;
  }

  .brand-logo--header .brand-logo__image {
    width: 184px;
  }

  .brand-logo--compact .brand-logo__image {
    width: 184px;
  }

  .header-actions > .icon-button,
  .language-control {
    display: none;
  }

  .subpage-hero {
    height: 340px;
  }

  .subpage-hero__content {
    justify-content: flex-end;
    padding-bottom: 48px;
  }

  .subpage-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.15;
  }

  .subpage-breadcrumb {
    height: auto;
    min-height: 58px;
    padding-block: 15px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .floating-actions {
    top: auto;
    right: 14px;
    bottom: 18px;
  }

  .floating-inquiry {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .back-to-top {
    left: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .page-cta__inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 30px;
  }

  .page-cta__icon {
    width: 56px;
    height: 56px;
  }

  .page-cta__copy {
    min-width: calc(100% - 86px);
  }

  .page-cta__actions {
    width: 100%;
    flex-wrap: wrap;
    padding-left: 86px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .footer-about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-grid > :nth-child(4),
  .footer-grid > :nth-child(5) {
    margin-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .lightbox,
  .video-modal {
    padding: 56px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .mega-menu::after,
  .language-menu,
  .language-menu::after,
  .mega-menu__inner > * {
    clip-path: none;
    transition: none;
  }

  .mega-menu.is-switching,
  .mega-menu.is-switching::after {
    animation: none;
  }

  .back-to-top {
    transition: none;
  }
}


/* home.css */
.home-wide-container {
  width: min(1600px, calc(100% - 96px));
  margin-inline: auto;
}

.page--home main .section-heading {
  margin-bottom: 42px;
}

.page--home main .section-heading h2 {
  font-size: 48px;
  line-height: 1.16;
}

.page--home main .button {
  min-width: 184px;
  height: 56px;
  padding-inline: 26px;
  font-size: 15px;
}

.home-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  color: #ffffff;
  background: var(--ink);
}

.page--home .site-header--overlay .header-main {
  height: 92px;
}

.page--home .site-header--overlay .brand-logo svg {
  width: 220px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 13, 0.28);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
}

.hero-slide__content :is(h1, h2) {
  max-width: 900px;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: 68px;
  line-height: 1.06;
}

.hero-slide__content > p {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

.hero-slide__actions {
  display: flex;
  gap: 16px;
}

.hero-slide__actions .button {
  min-width: 178px;
  height: 56px;
  font-size: 15px;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 58px;
  height: 76px;
  padding: 0;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease;
}

.hero-arrow:hover {
  background: var(--red);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-swiper .swiper-pagination {
  bottom: 28px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #ffffff;
  opacity: 0.9;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 8px;
  background: var(--red);
}

.capability-strip {
  min-height: 152px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.capability-strip__grid {
  display: grid;
  min-height: inherit;
  grid-template-columns: repeat(4, 1fr);
}

.capability-strip__grid article {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 26px 30px;
  text-align: center;
}

.capability-strip__grid article + article::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 64px;
  background: var(--line);
  content: "";
}

.capability-strip__grid strong {
  color: var(--red);
  font: 780 34px/1 "Manrope Variable", sans-serif;
}

.capability-strip__grid span {
  color: #343a3e;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.4;
}

.home-products {
  padding: 128px 0;
  background: #f3f4f4;
}

.home-products__layout {
  display: grid;
  min-height: 680px;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.home-products__intro {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.home-products__intro .home-products__heading {
  margin-bottom: 28px;
  font-size: 48px;
  line-height: 1.14;
}

.home-products__intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.product-accordion-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 70px;
}

.product-accordion-controls button,
.home-video__navigation > button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--text);
  background: transparent;
  border: 1px solid #a7adb1;
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.product-accordion-controls button:hover {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.product-accordion-controls strong {
  margin-left: 14px;
  color: var(--red);
  font: 720 30px/1 "Manrope Variable", sans-serif;
}

.product-accordion-controls > span {
  color: var(--muted);
  font-size: 16px;
}

.product-accordion {
  display: flex;
  min-width: 0;
  height: 680px;
  gap: 12px;
}

.product-accordion-panel {
  position: relative;
  min-width: 72px;
  flex: 1 1 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: flex 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-accordion-panel.is-text-only {
  background: #22292c;
}

.product-accordion-panel.is-text-only::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.product-accordion-panel__toggle {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-accordion-panel__toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -5px;
}

.product-accordion-panel.is-active {
  flex: 5 1 0;
}

.product-accordion-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.82);
  transform: scale(1.03);
  transition: filter 420ms ease, transform 620ms ease;
}

.product-accordion-panel.is-active > img,
.product-accordion-panel:hover > img {
  filter: saturate(1);
  transform: scale(1);
}

.product-accordion-panel__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(6, 10, 12, 0.56);
  transition: background-color 420ms ease;
}

.product-accordion-panel.is-active .product-accordion-panel__shade {
  background: rgba(6, 10, 12, 0.36);
}

.product-accordion-panel__number {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 50%;
  color: rgba(255, 255, 255, 0.86);
  font: 680 44px/1 "Manrope Variable", sans-serif;
  transform: translateX(-50%);
  pointer-events: none;
  transition: top 420ms ease, left 420ms ease, color 420ms ease, font-size 420ms ease, transform 420ms ease;
}

.product-accordion-panel.is-active .product-accordion-panel__number {
  top: 42px;
  left: 38px;
  color: var(--red);
  font-size: 76px;
  transform: none;
}

.product-accordion-panel__collapsed-title {
  display: none;
}

.product-accordion-panel__content {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 42px;
  left: 38px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 220ms ease, transform 420ms ease;
}

.product-accordion-panel.is-active .product-accordion-panel__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 160ms;
}

.product-accordion-panel__content small {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-accordion-panel__content strong {
  max-width: 520px;
  font: 720 34px/1.18 "Manrope Variable", sans-serif;
}

.product-accordion-panel__rule {
  width: 70px;
  height: 3px;
  margin: 22px 0;
  background: var(--red);
}

.product-accordion-panel__copy {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
}

.product-accordion-panel__link {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
}

.product-accordion-panel.is-active .product-accordion-panel__link {
  pointer-events: auto;
}

.home-manufacturing {
  padding: 120px 0 104px;
  background: #f2f3f3;
}

.home-manufacturing .section-heading {
  margin-bottom: 48px;
}

.manufacturing-hero {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.manufacturing-points {
  display: grid;
  min-height: 170px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.manufacturing-points > div {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 0 42px;
}

.manufacturing-points > div + div::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.manufacturing-points svg {
  grid-row: 1 / span 2;
  width: 27px;
  margin-top: 3px;
}

.manufacturing-points h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.manufacturing-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.manufacturing-links {
  display: grid;
  min-height: 78px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #ffffff;
  text-align: center;
}

.manufacturing-links a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 650;
}

.manufacturing-links a + a {
  border-left: 1px solid var(--line);
}

.home-projects {
  padding: 104px 0 108px;
  background: #ffffff;
}

.home-projects .section-heading {
  margin-bottom: 34px;
}

.page--home main .home-projects .section-heading h2 {
  font-size: 44px;
}

.featured-project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 320px 230px;
  gap: 18px;
}

.featured-project {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.featured-project:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.55);
  outline-offset: 3px;
}

.featured-project--hero {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.featured-project--wide {
  grid-column: 7 / span 6;
  grid-row: 1;
}

.featured-project--small:nth-of-type(3) {
  grid-column: 1 / span 3;
  grid-row: 2;
}

.featured-project--small:nth-of-type(4) {
  grid-column: 4 / span 3;
  grid-row: 2;
}

.featured-project--medium {
  grid-column: 7 / span 3;
  grid-row: 2;
}

.featured-project--large {
  grid-column: 10 / span 3;
  grid-row: 2;
}

.featured-project > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.featured-project__shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 13, 0.38);
  transition: background-color 300ms ease;
}

.featured-project__index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.78);
  font: 650 18px/1 "Manrope Variable", sans-serif;
}

.featured-project__content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.featured-project__content small {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-project__content strong {
  max-width: 620px;
  font: 720 22px/1.2 "Manrope Variable", sans-serif;
}

.featured-project--hero .featured-project__content strong,
.featured-project--wide .featured-project__content strong {
  font-size: 32px;
}

.featured-project__content > span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 300ms ease;
}

.featured-project:hover > img {
  transform: scale(1.045);
}

.featured-project:hover .featured-project__shade {
  background: rgba(7, 11, 13, 0.52);
}

.featured-project:hover .featured-project__content > span {
  opacity: 1;
  transform: translateY(0);
}

.home-video {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #ffffff;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
}

.home-video__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-video__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(5, 9, 11, 0.7);
}

.home-video__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  grid-template-rows: 1fr auto;
  gap: 0 72px;
  padding: 90px 0 62px;
}

.home-video__copy {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
}

.home-video__copy > small {
  display: block;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-video__copy h2 {
  max-width: 660px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.13;
}

.home-video__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  align-self: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 0;
  overflow: hidden;
  background: #000000;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.video-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: opacity 300ms ease, transform 600ms ease;
}

.video-poster:hover > img {
  opacity: 0.68;
  transform: scale(1.025);
}

.video-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: #ffffff;
  background: rgba(15, 20, 23, 0.45);
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.video-poster:hover .video-poster__play {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-poster__label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-video__navigation {
  display: flex;
  align-items: center;
  grid-column: 2;
  grid-row: 2;
  gap: 18px;
  padding-top: 36px;
}

.home-video__navigation > button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.home-video__navigation > button:hover {
  background: var(--red);
  border-color: var(--red);
}

.home-video__navigation > div {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
}

.home-video__navigation > div button {
  width: 32px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.home-video__navigation > div button.is-active {
  width: 76px;
  background: var(--red);
}

.video-modal__frame {
  position: relative;
  width: min(1200px, 90vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border-radius: 4px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.video-modal__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.home-news {
  padding: 110px 0 120px;
  background: #ffffff;
}

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

.news-card {
  min-height: 430px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.news-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.news-card > div {
  padding: 24px 26px 26px;
}

.news-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-light);
  font-size: 12px;
}

.news-card h3 {
  min-height: 54px;
  margin-bottom: 14px;
  font-size: 19px;
}

.page--home .page-cta {
  min-height: 180px;
}

@media (max-width: 1400px) {
  .home-wide-container {
    width: calc(100% - 64px);
  }

  .hero-slide__content :is(h1, h2) {
    font-size: 62px;
  }

  .home-products__layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
  }

  .home-products__intro .home-products__heading,
  .page--home main .section-heading h2,
  .home-video__copy h2 {
    font-size: 43px;
  }

  .product-accordion {
    gap: 9px;
  }

  .product-accordion-panel {
    min-width: 62px;
  }

  .page--home main .home-projects .section-heading h2 {
    font-size: 40px;
  }

  .featured-project-grid {
    grid-template-rows: 290px 210px;
  }

  .home-video__inner {
    gap: 0 54px;
  }
}

@media (max-width: 1100px) {
  .home-wide-container {
    width: calc(100% - 48px);
  }

  .page--home .site-header--overlay .header-main {
    height: 82px;
  }

  .page--home .site-header--overlay .brand-logo svg {
    width: 205px;
  }

  .hero-slide__content :is(h1, h2) {
    font-size: 54px;
  }

  .home-products,
  .home-projects {
    padding-block: 96px;
  }

  .home-products__layout {
    display: block;
  }

  .home-products__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 52px;
  }

  .home-products__intro .eyebrow,
  .home-products__intro .home-products__heading,
  .home-products__intro > p:not(.eyebrow) {
    grid-column: 1;
  }

  .home-products__intro .home-products__heading {
    max-width: 760px;
  }

  .home-products__intro > p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 0;
  }

  .home-products__intro > .button {
    align-self: end;
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .product-accordion-controls {
    grid-column: 1 / -1;
    margin-top: 34px;
  }

  .product-accordion {
    height: 620px;
  }

  .home-manufacturing {
    padding-block: 96px 84px;
  }

  .manufacturing-hero {
    height: 430px;
  }

  .manufacturing-points > div {
    padding-inline: 25px;
  }

  .featured-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .featured-project,
  .featured-project--hero,
  .featured-project--wide,
  .featured-project--small:nth-of-type(3),
  .featured-project--small:nth-of-type(4),
  .featured-project--medium,
  .featured-project--large {
    height: 250px;
    grid-column: auto;
    grid-row: auto;
  }

  .featured-project--hero,
  .featured-project--wide {
    height: 320px;
  }

  .home-video__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 48px;
    padding-block: 88px;
  }

  .video-poster,
  .home-video__copy,
  .home-video__navigation {
    grid-column: 1;
    grid-row: auto;
  }

  .video-poster {
    height: 520px;
  }

  .home-video__copy {
    max-width: 780px;
  }

  .home-video__navigation {
    max-width: 600px;
    padding-top: 0;
  }

  .news-card > img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .home-wide-container {
    width: calc(100% - 32px);
  }

  .page--home main .section-heading {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .page--home main .section-heading h2,
  .home-products__intro .home-products__heading,
  .home-video__copy h2 {
    font-size: 34px;
  }

  .page--home main .home-projects .section-heading h2 {
    font-size: 34px;
  }

  .page--home main .button {
    min-width: 0;
    height: 52px;
    font-size: 14px;
  }

  .home-hero {
    height: 100vh;
    height: 100svh;
    min-height: 700px;
  }

  .page--home .site-header--overlay .header-main {
    height: 72px;
  }

  .page--home .site-header--overlay .brand-logo svg {
    width: 166px;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-slide__shade {
    background: rgba(7, 11, 13, 0.48);
  }

  .hero-slide__content {
    justify-content: flex-end;
    padding-top: 72px;
    padding-bottom: 98px;
  }

  .hero-slide__content :is(h1, h2) {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-slide__content > p {
    font-size: 16px;
  }

  .hero-slide__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-slide__actions .button {
    width: 100%;
    height: 52px;
  }

  .hero-arrow {
    display: none;
  }

  .capability-strip {
    min-height: 0;
  }

  .capability-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-strip__grid article {
    min-height: 112px;
    align-items: flex-start;
    gap: 9px;
    padding: 22px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .capability-strip__grid article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .capability-strip__grid article + article::before {
    display: none;
  }

  .capability-strip__grid strong {
    font-size: 22px;
    white-space: nowrap;
  }

  .capability-strip__grid span {
    font-size: 11px;
  }

  .home-products,
  .home-projects {
    padding-block: 72px;
  }

  .home-products__intro {
    display: block;
    margin-bottom: 42px;
  }

  .home-products__intro > p:not(.eyebrow),
  .home-video__copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .home-products__intro > .button {
    margin-top: 4px;
  }

  .product-accordion-controls {
    margin-top: 32px;
  }

  .product-accordion {
    height: auto;
    flex-direction: column;
    gap: 10px;
  }

  .product-accordion-panel,
  .product-accordion-panel.is-active {
    min-width: 0;
    height: 92px;
    flex: none;
    transition: height 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .product-accordion-panel.is-active {
    height: 420px;
  }

  .product-accordion-panel__number,
  .product-accordion-panel.is-active .product-accordion-panel__number {
    top: 25px;
    left: 24px;
    font-size: 42px;
    transform: none;
  }

  .product-accordion-panel.is-active .product-accordion-panel__number {
    top: 26px;
    color: var(--red);
    font-size: 54px;
  }

  .product-accordion-panel__collapsed-title {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 20px;
    bottom: 0;
    left: 90px;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    opacity: 1;
    pointer-events: none;
    transform: translateY(0);
    visibility: visible;
    transition:
      opacity 180ms ease 180ms,
      transform 220ms ease 180ms,
      visibility 0s linear 180ms;
  }

  .product-accordion-panel__collapsed-title strong {
    min-width: 0;
    flex: 1;
    font: 720 15px/1.3 "Manrope Variable", sans-serif;
    overflow-wrap: break-word;
  }

  .product-accordion-panel__collapsed-title svg {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.82);
  }

  .product-accordion-panel.is-active .product-accordion-panel__collapsed-title {
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      opacity 140ms ease,
      transform 180ms ease,
      visibility 0s linear 140ms;
  }

  .product-accordion-panel__content {
    right: 24px;
    bottom: 26px;
    left: 24px;
  }

  .product-accordion-panel__content strong {
    font-size: 27px;
  }

  .product-accordion-panel__copy {
    font-size: 14px;
  }

  .home-manufacturing {
    padding-block: 72px 58px;
  }

  .manufacturing-hero {
    height: 270px;
  }

  .manufacturing-points {
    grid-template-columns: 1fr;
  }

  .manufacturing-points > div {
    min-height: 132px;
    align-content: center;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }

  .manufacturing-points > div + div::before {
    display: none;
  }

  .manufacturing-links {
    grid-template-columns: 1fr;
  }

  .manufacturing-links a {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
  }

  .manufacturing-links a + a {
    border-left: 0;
  }

  .featured-project-grid {
    display: grid;
    width: calc(100% + 16px);
    grid-auto-columns: min(82vw, 360px);
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: 320px;
    gap: 14px;
    padding-bottom: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-project-grid::-webkit-scrollbar {
    display: none;
  }

  .featured-project,
  .featured-project--hero,
  .featured-project--wide,
  .featured-project--small:nth-of-type(3),
  .featured-project--small:nth-of-type(4),
  .featured-project--medium,
  .featured-project--large {
    height: 100%;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .featured-project__content {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .featured-project__content strong,
  .featured-project--hero .featured-project__content strong,
  .featured-project--wide .featured-project__content strong {
    font-size: 24px;
  }

  .featured-project__content > span {
    opacity: 1;
    transform: none;
  }

  .home-video {
    min-height: 0;
  }

  .home-video__inner {
    gap: 38px;
    min-height: 0;
    padding-block: 72px;
  }

  .video-poster {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .video-poster__play {
    width: 78px;
    height: 78px;
  }

  .video-poster__label {
    bottom: 16px;
    left: 18px;
    font-size: 11px;
  }

  .home-video__copy > small {
    font-size: 12px;
  }

  .home-video__navigation {
    width: calc(100% - 112px);
    gap: 12px;
    margin-inline: auto;
  }

  .home-video__navigation > div button {
    width: 22px;
  }

  .home-video__navigation > div button.is-active {
    width: 52px;
  }

  .home-news {
    padding-block: 72px;
  }

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

  .news-card {
    min-height: 0;
  }

  .news-card > img {
    height: 240px;
  }

  .page--home .page-cta {
    min-height: 0;
  }
}

@media (max-width: 360px) {
  .capability-strip__grid article {
    padding-inline: 12px;
  }

  .capability-strip__grid strong {
    font-size: 19px;
  }

  .product-accordion-panel__collapsed-title {
    right: 14px;
    left: 94px;
    gap: 8px;
  }

  .product-accordion-panel__collapsed-title strong {
    font-size: 14px;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .hero-slide__content :is(h1, h2) {
    font-size: 38px;
  }

  .product-accordion-panel.is-active {
    height: 450px;
  }

  .featured-project-grid {
    grid-template-rows: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-video__background {
    display: none;
  }

  .product-accordion-panel,
  .product-accordion-panel > img,
  .product-accordion-panel__content,
  .featured-project > img,
  .video-poster > img,
  .video-poster__play {
    transition: none;
  }
}


/* product.css */
.page--product .site-header {
  height: 88px;
}

.product-overview {
  min-height: 690px;
  background: #ffffff;
}

.product-overview__grid {
  display: grid;
  min-height: 690px;
  grid-template-columns: 54% 46%;
  gap: 62px;
  padding-block: 48px 56px;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #ffffff;
}

.product-gallery__stage--single {
  display: block;
  width: 100%;
  height: 580px;
  padding: 0;
  background: #f3f5f5;
  border: 0;
  border-radius: 4px;
  cursor: zoom-in;
}

.product-gallery__stage--single > img {
  object-fit: contain;
}

.product-gallery__enlarge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(7, 11, 13, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.product-gallery__stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__stage > button {
  position: absolute;
  top: 50%;
  display: grid;
  width: 44px;
  height: 52px;
  padding: 0;
  place-items: center;
  color: #52595e;
  background: rgba(255, 255, 255, 0.78);
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.product-gallery__stage > button:first-of-type {
  left: 0;
}

.product-gallery__stage > button:last-of-type {
  right: 0;
}

.product-gallery__thumbs {
  display: grid;
  width: min(650px, 100%);
  height: 110px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.product-gallery__thumbs button {
  height: 100%;
  padding: 5px;
  overflow: hidden;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border: 2px solid var(--red);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  padding-top: 16px;
}

.product-category {
  margin-bottom: 15px;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}

.product-summary h2 {
  margin-bottom: 22px;
  font-size: 41px;
  line-height: 1.08;
}

.product-summary__lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: #4f575c;
  font-size: 15px;
  line-height: 1.65;
}

.product-summary ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 29px;
  list-style: none;
}

.product-summary li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.product-summary li svg {
  width: 18px;
  color: var(--red);
}

.product-summary__actions {
  display: flex;
  gap: 15px;
  margin-bottom: 19px;
}

.product-summary__notice {
  padding: 16px 18px;
  margin: 0 0 26px;
  color: #555e63;
  background: #f3f5f5;
  border-left: 3px solid var(--red);
  font-size: 13px;
  line-height: 1.65;
}

.product-drawing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4e565b;
  font-size: 13px;
}

.product-anchor-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 63px;
  background: #f4f5f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-anchor-nav .container {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(5, 1fr);
}

.product-anchor-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5358;
  font-size: 13px;
}

.product-anchor-nav a::after {
  position: absolute;
  right: 42px;
  bottom: 0;
  left: 42px;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
}

.product-anchor-nav a:hover,
.product-anchor-nav a.is-active {
  color: var(--text);
}

.product-anchor-nav a:hover::after,
.product-anchor-nav a.is-active::after {
  opacity: 1;
}

.product-introduction {
  padding: 72px 0 58px;
}

.product-introduction__grid {
  display: grid;
  min-height: 384px;
  grid-template-columns: 38% 62%;
  gap: 52px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.product-introduction h2 {
  margin-bottom: 25px;
}

.product-introduction p {
  margin-bottom: 23px;
  color: #4f575c;
  font-size: 14px;
  line-height: 1.72;
}

.product-introduction img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  border-radius: 4px;
}

.product-introduction__image {
  position: relative;
  width: 100%;
  height: 335px;
  padding: 0;
  overflow: hidden;
  background: #f3f5f5;
  border: 0;
  border-radius: 4px;
  cursor: zoom-in;
}

.product-introduction__image img {
  height: 100%;
  object-fit: contain;
}

.product-introduction__image > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  color: #ffffff;
  background: rgba(7, 11, 13, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.product-features {
  min-height: 390px;
}

.product-features .container {
  height: 100%;
  padding: 48px 0 58px;
  border-bottom: 1px solid var(--line);
}

.product-features h2 {
  margin-bottom: 32px;
}

.product-features--facts .eyebrow {
  margin-bottom: 10px;
}

.product-fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.product-fact-grid article {
  position: relative;
  display: flex;
  min-height: 188px;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px 24px;
  background: #f3f5f5;
  border-top: 3px solid var(--red);
  border-radius: 4px;
}

.product-fact-grid article > svg {
  margin-bottom: 34px;
  color: var(--red);
}

.product-fact-grid article > span {
  position: absolute;
  top: 24px;
  right: 22px;
  color: #a6adb1;
  font: 700 12px/1 "Manrope Variable", sans-serif;
}

.product-fact-grid h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.product-facts-empty {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 20px;
  padding: 30px;
  color: #555e63;
  background: #f3f5f5;
  border-left: 3px solid var(--red);
}

.product-facts-empty p {
  max-width: 720px;
  margin: 0;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-feature-grid article {
  min-width: 0;
}

.product-feature-grid img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  border-radius: 4px;
}

.product-feature-grid h3 {
  margin: 15px 0 8px;
  font-size: 16px;
}

.product-feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-specifications {
  min-height: 330px;
}

.product-specifications .container {
  height: 100%;
  padding: 42px 0 48px;
  border-bottom: 1px solid var(--line);
}

.product-specifications h2,
.product-dimensions h2,
.product-safety h2,
.product-project-reference h2,
.related-products h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.specification-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.specification-tables dl {
  margin-bottom: 0;
  border: 1px solid var(--line);
}

.specification-tables dl > div {
  display: grid;
  min-height: 44px;
  grid-template-columns: 42% 58%;
}

.specification-tables dl > div + div {
  border-top: 1px solid var(--line);
}

.specification-tables dt,
.specification-tables dd {
  display: flex;
  align-items: center;
  padding: 0 18px;
  margin: 0;
  font-size: 13px;
}

.specification-tables dt {
  color: #4f575c;
  background: #f4f5f5;
  border-right: 1px solid var(--line);
}

.specification-empty {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: #f3f5f5;
  border-left: 3px solid var(--red);
}

.specification-empty > svg {
  flex: 0 0 auto;
  color: var(--red);
}

.specification-empty strong {
  display: block;
  margin-bottom: 5px;
}

.specification-empty p,
.specification-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.specification-disclaimer {
  margin-top: 16px;
}

.product-dimensions {
  height: 415px;
}

.product-dimensions .container {
  height: 100%;
  padding-top: 27px;
  border-bottom: 1px solid var(--line);
}

.product-dimensions figure {
  height: 325px;
  margin-bottom: 0;
  overflow: hidden;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.product-dimensions figure img {
  width: 100%;
  height: 305px;
  object-fit: contain;
}

.product-dimensions figcaption {
  color: #8a9196;
  font-size: 12px;
  text-align: center;
}

.product-safety {
  height: 393px;
}

.product-safety .container {
  height: 100%;
  padding-top: 26px;
  border-bottom: 1px solid var(--line);
}

.product-safety__grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 42px;
}

.product-safety ul {
  display: grid;
  gap: 13px;
  padding: 3px 0 0;
  margin: 0;
  list-style: none;
}

.product-safety li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}

.product-safety li svg {
  width: 18px;
  color: var(--red);
}

.safety-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.safety-image-grid figure {
  margin-bottom: 0;
  text-align: center;
}

.safety-image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
}

.safety-image-grid figcaption {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 600;
}

.product-project-reference {
  height: 303px;
}

.product-project-reference .container {
  height: 100%;
  padding-top: 23px;
}

.product-project-reference__grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
}

.product-project-reference__image {
  position: relative;
  width: 100%;
  height: 210px;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  border-radius: 3px;
  cursor: zoom-in;
}

.product-project-reference__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-project-reference__image > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: rgba(7, 11, 13, 0.5);
  font-size: 13px;
  font-weight: 680;
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-project-reference__image:hover > img {
  transform: scale(1.035);
}

.product-project-reference__image:hover > span,
.product-project-reference__image:focus-visible > span {
  opacity: 1;
}

.product-project-reference__image:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.45);
  outline-offset: 3px;
}

.product-project-reference__grid > div {
  align-self: center;
}

.product-project-reference__grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.product-project-reference__grid p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.technical-information {
  padding: 62px 0;
}

.technical-information__grid {
  display: grid;
  min-height: 415px;
  grid-template-columns: 62% 38%;
  border: 1px solid var(--line);
}

.technical-information form,
.engineering-contact {
  padding: 26px 26px 20px;
}

.technical-information form {
  border-right: 1px solid var(--line);
}

.technical-information h2 {
  margin-bottom: 18px;
  font-size: 20px;
}

.technical-information__product {
  margin: -10px 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.form-grid label {
  color: #596167;
  font-size: 11px;
  font-weight: 600;
}

.form-grid label > span {
  color: var(--red);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  height: 43px;
  padding: 0 13px;
  margin-top: 7px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: 0;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
}

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid textarea {
  height: 72px;
  padding-top: 12px;
  resize: vertical;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.form-submit-row .button {
  height: 42px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #26833b;
  font-size: 12px;
}

.engineering-contact {
  display: flex;
  flex-direction: column;
}

.engineering-contact > a,
.engineering-contact > span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 13px 0;
  color: #4f575c;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.engineering-contact > a > svg,
.engineering-contact > span > svg {
  width: 18px;
}

.engineering-contact strong {
  display: inline-block;
  width: 100px;
  color: var(--text);
  font-size: 11px;
}

.related-products {
  padding: 46px 0 56px;
}

.related-products .container {
  padding-top: 0;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-product-grid article {
  display: grid;
  min-height: 206px;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.related-product-grid article > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f9f9;
}

.related-product-grid article > div {
  align-self: center;
  padding: 12px 14px;
}

.related-product-grid span {
  font-size: 11px;
  font-weight: 700;
}

.related-product-grid h3 {
  margin: 3px 0 8px;
  font-size: 14px;
  line-height: 1.35;
}

.related-product-grid p {
  min-height: 58px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.related-product-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 650;
}

.page--product .page-cta {
  min-height: 116px;
}

.page--product .page-cta__icon {
  width: 62px;
  height: 62px;
}

.page--product .site-footer {
  min-height: 275px;
}

.page--product .footer-grid {
  padding-top: 34px;
  padding-bottom: 16px;
}

@media (max-width: 1100px) {
  .product-overview,
  .product-introduction,
  .product-features,
  .product-specifications,
  .product-dimensions,
  .product-safety,
  .product-project-reference,
  .technical-information,
  .related-products {
    height: auto;
  }

  .product-overview__grid {
    min-height: 0;
    grid-template-columns: 51% 49%;
    gap: 28px;
  }

  .product-summary h2 {
    font-size: 39px;
  }

  .product-introduction,
  .product-features,
  .product-specifications,
  .product-dimensions,
  .product-safety,
  .product-project-reference,
  .technical-information,
  .related-products {
    padding-block: 38px;
  }

  .product-introduction__grid,
  .product-features .container,
  .product-specifications .container,
  .product-dimensions .container,
  .product-safety .container,
  .product-project-reference .container,
  .related-products .container {
    height: auto;
    padding-top: 0;
  }

  .product-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-features .container {
    padding-bottom: 0;
  }

  .technical-information__grid {
    height: auto;
  }
}

@media (max-width: 767px) {
  .page--product .site-header {
    height: 72px;
  }

  .product-overview__grid {
    grid-template-columns: 1fr;
    padding-block: 26px 42px;
  }

  .product-gallery__stage {
    height: 330px;
  }

  .product-gallery__thumbs {
    height: 72px;
    gap: 8px;
  }

  .product-summary h2 {
    font-size: 36px;
  }

  .product-summary__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-anchor-nav {
    position: relative;
    height: auto;
  }

  .product-anchor-nav .container {
    grid-template-columns: 1fr 1fr;
  }

  .product-anchor-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .product-introduction__grid,
  .product-safety__grid,
  .product-project-reference__grid,
  .technical-information__grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .product-introduction__grid {
    gap: 24px;
  }

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

  .product-introduction__image {
    height: 250px;
  }

  .product-introduction__image img {
    height: 100%;
  }

  .product-feature-grid,
  .product-fact-grid,
  .specification-tables,
  .safety-image-grid,
  .related-product-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid img {
    height: 240px;
  }

  .product-dimensions figure {
    height: auto;
  }

  .product-dimensions figure img {
    height: auto;
  }

  .technical-information form {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .form-grid__full {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .related-product-grid article {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .related-product-grid article > img {
    height: 220px;
  }

  .related-product-grid article > div {
    padding: 22px;
  }

  .related-product-grid p {
    min-height: 0;
  }

  .page--product .page-cta,
  .page--product .site-footer {
    min-height: 0;
  }
}


/* projects.css */
.page--projects .site-header {
  height: 88px;
}

.projects-gallery {
  padding: 82px 0 96px;
  background: #ffffff;
}

.projects-gallery__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: 60px;
  margin-bottom: 44px;
}

.projects-gallery__intro h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 40px;
}

.projects-gallery__intro > p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 38px;
}

.project-filters button {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 15px;
  color: #4b5459;
  background: #f5f6f6;
  border: 1px solid #d9dddf;
  border-radius: 3px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  scroll-margin-top: 118px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.project-filters button > span {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.project-filters button > small {
  color: #8b9296;
  font-size: 10px;
  font-weight: 720;
}

.project-filters button:hover {
  color: var(--red);
  background: #ffffff;
  border-color: #bfc5c8;
}

.project-filters button.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.project-filters button.is-active > small {
  color: rgba(255, 255, 255, 0.6);
}

.project-filters button:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.3);
  outline-offset: 2px;
}

.projects-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 26px;
}

.project-gallery__item {
  display: block;
  min-width: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}

.project-gallery__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
  border-radius: 3px;
}

.project-gallery__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-gallery__media > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(7, 11, 13, 0.48);
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-gallery__caption {
  display: block;
  padding-top: 18px;
}

.project-gallery__caption small {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.project-gallery__caption strong {
  display: block;
  font-family: "Manrope Variable", Manrope, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

.project-gallery__item:hover .project-gallery__media > img {
  transform: scale(1.035);
}

.project-gallery__item:hover .project-gallery__media > span,
.project-gallery__item:focus-visible .project-gallery__media > span {
  opacity: 1;
}

.project-gallery__item:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.42);
  outline-offset: 4px;
}

.projects-gallery__load-more {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 68px;
  text-align: center;
}

.projects-gallery__progress {
  width: min(360px, 100%);
  height: 3px;
  overflow: hidden;
  background: #e4e7e8;
}

.projects-gallery__progress > span {
  display: block;
  height: 100%;
  background: var(--red);
  transition: width 280ms ease;
}

.projects-gallery__load-more > p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.projects-gallery__load-more > p strong {
  color: var(--text);
  font-weight: 700;
}

.projects-gallery__load-button {
  display: inline-flex;
  min-width: 218px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 3px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.projects-gallery__load-button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.projects-gallery__load-button:disabled {
  color: #70787d;
  background: #ffffff;
  border-color: #c9ced1;
  cursor: default;
  transform: none;
}

.projects-gallery__load-button:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .projects-gallery {
    padding-block: 68px 80px;
  }

  .projects-gallery__intro {
    gap: 36px;
  }

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

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

@media (max-width: 767px) {
  .page--projects .site-header {
    height: 72px;
  }

  .projects-gallery {
    padding-block: 48px 58px;
  }

  .projects-gallery__intro {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .projects-gallery__intro h2 {
    font-size: 30px;
  }

  .project-filters {
    display: flex;
    gap: 8px;
    margin: 0 -16px 30px;
    padding-inline: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .project-filters::-webkit-scrollbar {
    display: none;
  }

  .project-filters button {
    flex: 0 0 218px;
    min-height: 58px;
  }

  .projects-gallery__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .projects-gallery__load-more {
    margin-top: 46px;
  }

  .project-gallery__caption {
    padding-top: 14px;
  }

  .project-gallery__caption strong {
    font-size: 19px;
  }

  .project-gallery__media > span {
    opacity: 1;
    background: rgba(7, 11, 13, 0.16);
  }
}


/* catalog.css */
.page--catalog .site-header {
  height: 88px;
}

.catalog-intro {
  padding: 72px 0 0;
  background: #ffffff;
}

.catalog-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 510px);
  align-items: end;
  gap: 70px;
  padding-bottom: 68px;
}

.catalog-intro__grid h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 44px;
}

.catalog-intro__grid > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.catalog-list {
  padding: 76px 0 96px;
  background: #f3f5f5;
}

.catalog-list__toolbar {
  display: grid;
  gap: 28px;
  margin-bottom: 34px;
}

.catalog-list__toolbar h2 {
  margin-bottom: 0;
  font-size: 40px;
}

.catalog-filters {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  background: #ffffff;
  border-top: 1px solid #d5dadd;
  border-left: 1px solid #d5dadd;
  border-radius: 0;
}

.catalog-filters button {
  min-height: 58px;
  padding: 10px 16px;
  color: #555e63;
  background: transparent;
  border: 0;
  border-right: 1px solid #d5dadd;
  border-bottom: 1px solid #d5dadd;
  border-radius: 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
}

.catalog-filters button:hover {
  color: var(--ink);
  background: #eef1f1;
}

.catalog-filters button.is-active {
  color: #ffffff;
  background: var(--ink);
}

.catalog-filters button:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.3);
  outline-offset: 1px;
}

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

.catalog-card {
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe3e5;
  border-radius: 4px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.catalog-card:hover {
  border-color: #c5cccf;
  box-shadow: 0 12px 26px rgba(10, 16, 19, 0.07);
}

.catalog-card__media {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1f1;
  border-bottom: 1px solid #dfe3e5;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  transition: transform 440ms ease;
}

.catalog-card__media img[data-orientation="landscape"] {
  padding: 0;
  object-fit: cover;
}

.catalog-card__media img[data-orientation="portrait"] {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin-inline: auto;
  object-fit: contain;
}

.catalog-card__media > span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(10, 16, 19, 0.78);
  border-left: 3px solid var(--red);
  font-size: 10px;
  font-weight: 720;
  line-height: 1.35;
  text-transform: uppercase;
}

.catalog-card:hover .catalog-card__media img {
  transform: scale(1.035);
}

.catalog-card__body {
  display: flex;
  min-height: 0;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 30px 28px;
}

.catalog-card__body h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.25;
}

.catalog-card__body > p {
  min-height: 0;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 42px;
  background: #ffffff;
  border-left: 4px solid var(--red);
}

.catalog-empty strong {
  display: block;
  margin-bottom: 8px;
  font: 700 21px/1.35 "Manrope Variable", sans-serif;
}

.catalog-empty p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.catalog-card__body ul {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 15px 0 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.catalog-card__body li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #555e63;
  font-size: 11px;
  font-weight: 620;
}

.catalog-card__body li svg {
  color: var(--red);
}

.catalog-card__body .text-link {
  margin-top: auto;
  font-size: 13px;
}

.catalog-selection {
  color: #ffffff;
  background: var(--ink);
}

.catalog-selection__grid {
  display: grid;
  min-height: 640px;
  grid-template-columns: 46% 54%;
}

.catalog-selection__visual {
  display: grid;
  align-items: center;
  padding: 70px 54px 70px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-selection__visual img {
  width: 100%;
  padding: 22px;
  background: #ffffff;
  border-radius: 3px;
}

.catalog-selection__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 70px 72px;
}

.catalog-selection__content h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 42px;
}

.catalog-selection__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.catalog-selection__steps {
  width: 100%;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.catalog-selection__steps > div {
  display: grid;
  min-height: 88px;
  grid-template-columns: 34px 38px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.catalog-selection__steps > div > span {
  color: var(--red);
  font: 700 13px/1 "Manrope Variable", sans-serif;
}

.catalog-selection__steps > div > svg {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-selection__steps strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
}

.catalog-selection__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .catalog-intro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 40px;
  }

  .catalog-intro__grid h2 {
    font-size: 38px;
  }

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

  .catalog-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .catalog-card__media {
    height: auto;
  }

  .catalog-card__body {
    min-height: 0;
  }

  .catalog-card__body > p {
    min-height: 0;
  }

  .catalog-selection__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .catalog-selection__visual {
    padding: 70px 0 0;
    border-right: 0;
  }

  .catalog-selection__content {
    padding: 55px 0 70px;
  }
}

@media (max-width: 767px) {
  .page--catalog .site-header {
    height: 72px;
  }

  .catalog-intro {
    padding-top: 44px;
  }

  .catalog-intro__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 48px;
  }

  .catalog-intro__grid h2,
  .catalog-list__toolbar h2,
  .catalog-selection__content h2 {
    font-size: 30px;
  }

  .catalog-list {
    padding-block: 54px 68px;
  }

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

  .catalog-filters button {
    min-height: 54px;
    padding: 9px 8px;
  }

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

  .catalog-card__media {
    height: auto;
  }

  .catalog-card__body {
    padding: 28px 24px;
  }

  .catalog-card__body h3 {
    font-size: 22px;
  }

  .catalog-selection__visual {
    padding-top: 52px;
  }

  .catalog-selection__visual img {
    padding: 10px;
  }

  .catalog-selection__content {
    padding-block: 42px 58px;
  }

  .catalog-selection__steps > div {
    grid-template-columns: 28px 30px 1fr;
    gap: 10px;
  }
}


/* about.css */
.page--about .site-header {
  height: 88px;
}

.page--about main section[id],
.about-credentials__anchor {
  scroll-margin-top: 108px;
}

.about-story {
  padding: 92px 0;
  background: #ffffff;
}

.about-story__grid {
  display: grid;
  min-height: 530px;
  grid-template-columns: 56% 44%;
  align-items: center;
  gap: 68px;
}

.about-story__visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 3px;
}

.about-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__visual > span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px 20px;
  color: #ffffff;
  background: var(--red);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.about-story__content h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 43px;
}

.about-story__content > p:not(.eyebrow) {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-story__links {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.about-capabilities {
  color: #ffffff;
  background: var(--ink);
}

.about-capabilities__grid {
  display: grid;
  min-height: 310px;
  grid-template-columns: repeat(4, 1fr);
}

.about-capabilities__grid > div {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
}

.about-capabilities__grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.about-capabilities__grid > div > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.22);
  font: 720 34px/1 "Manrope Variable", sans-serif;
}

.about-capabilities svg {
  margin-bottom: 24px;
  color: var(--red);
}

.about-capabilities h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 18px;
}

.about-capabilities p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.65;
}

.about-factory {
  padding: 105px 0;
  background: #f3f5f5;
}

.about-factory__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 78px;
}

.about-factory__content h2 {
  margin-bottom: 24px;
  font-size: 42px;
}

.about-factory__content > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-factory__content ul {
  display: grid;
  gap: 15px;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid #d9dddf;
  list-style: none;
}

.about-factory__content li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #3f474c;
  font-size: 13px;
  font-weight: 620;
}

.about-factory__content li svg {
  color: var(--red);
}

.about-factory__visual {
  display: grid;
  height: 500px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.about-factory__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.about-factory__visual img:first-child {
  grid-row: 1 / -1;
}

.about-process {
  padding: 102px 0 110px;
  background: #ffffff;
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: end;
  gap: 64px;
  margin-bottom: 46px;
}

.about-section-heading h2 {
  margin-bottom: 0;
  font-size: 42px;
}

.about-section-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
}

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-process__grid article {
  position: relative;
  min-height: 300px;
  padding: 42px 32px;
}

.about-process__grid article + article {
  border-left: 1px solid var(--line);
}

.about-process__grid article > span {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #c7cccf;
  font: 720 32px/1 "Manrope Variable", sans-serif;
}

.about-process__grid svg {
  margin: 34px 0 35px;
  color: var(--red);
}

.about-process__grid h3 {
  margin-bottom: 13px;
  font-size: 18px;
}

.about-process__grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.about-credentials {
  position: relative;
  padding: 102px 0 110px;
  background: #f3f5f5;
}

.about-credentials__anchor {
  position: absolute;
  top: 0;
  left: 0;
}

.about-credentials__tabs {
  display: grid;
  width: min(620px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.about-credentials__tabs button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  color: #4e575c;
  background: #ffffff;
  border: 1px solid #d4d9dc;
  border-radius: 3px;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.about-credentials__tabs button > span {
  font-size: 13px;
  font-weight: 680;
}

.about-credentials__tabs button > small {
  color: #8a9296;
  font-size: 10px;
  font-weight: 720;
}

.about-credentials__tabs button:hover {
  color: var(--red);
  border-color: #b9c0c4;
}

.about-credentials__tabs button.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.about-credentials__tabs button.is-active > small {
  color: rgba(255, 255, 255, 0.62);
}

.about-credentials__tabs button:focus-visible,
.about-credential:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.3);
  outline-offset: 3px;
}

.about-credentials__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  margin-bottom: 30px;
  border-top: 1px solid #d5dadd;
  border-bottom: 1px solid #d5dadd;
}

.about-credentials__summary h3 {
  margin: 0;
  font-size: 21px;
}

.about-credentials__summary p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.about-credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px 20px;
}

.about-credential {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #dfe3e5;
  border-radius: 3px;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}

.about-credential__image {
  position: relative;
  display: grid;
  height: 290px;
  padding: 18px;
  overflow: hidden;
  place-items: center;
  background: #ecefef;
}

.about-credential__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(15, 20, 23, 0.12));
  transition: transform 360ms ease;
}

.about-credential__image > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(8, 13, 16, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.about-credential:hover .about-credential__image > img {
  transform: scale(1.025);
}

.about-credential:hover .about-credential__image > span,
.about-credential:focus-visible .about-credential__image > span {
  opacity: 1;
}

.about-credential > strong {
  display: block;
  padding: 17px 18px 18px;
  font-size: 12px;
  line-height: 1.4;
}

.about-quality {
  padding: 102px 0 88px;
  color: #ffffff;
  background: var(--ink);
}

.about-section-heading--light h2 {
  color: #ffffff;
}

.about-section-heading--light > p {
  color: rgba(255, 255, 255, 0.62);
}

.about-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-quality__grid article {
  overflow: hidden;
  background: #ffffff;
  border-radius: 3px;
}

.about-quality__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-quality__grid article > div {
  min-height: 136px;
  padding: 24px 24px 27px;
}

.about-quality__grid h3 {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 17px;
}

.about-quality__grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.about-quality__footer {
  display: grid;
  min-height: 110px;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-quality__footer > svg {
  color: var(--red);
}

.about-quality__footer p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.about-quality__footer strong {
  color: #ffffff;
  font-size: 14px;
}

.about-quality__footer p span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story__visual {
    height: 480px;
  }

  .about-story__content {
    max-width: 760px;
  }

  .about-capabilities__grid,
  .about-process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-capabilities__grid > div:nth-child(3),
  .about-capabilities__grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-capabilities__grid > div:nth-child(3) {
    border-left: 0;
  }

  .about-factory__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-process__grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-process__grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 767px) {
  .page--about .site-header {
    height: 72px;
  }

  .about-story,
  .about-factory,
  .about-process,
  .about-credentials,
  .about-quality {
    padding-block: 64px;
  }

  .about-story__grid {
    min-height: 0;
    gap: 34px;
  }

  .about-story__visual {
    height: 280px;
  }

  .about-story__content h2,
  .about-factory__content h2,
  .about-section-heading h2 {
    font-size: 30px;
  }

  .about-story__links {
    align-items: stretch;
    flex-direction: column;
  }

  .about-capabilities__grid,
  .about-process__grid,
  .about-quality__grid {
    grid-template-columns: 1fr;
  }

  .about-capabilities__grid > div {
    min-height: 220px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .about-factory__visual {
    height: 430px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 0.65fr;
  }

  .about-factory__visual img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .about-process__grid article,
  .about-process__grid article + article,
  .about-process__grid article:nth-child(3),
  .about-process__grid article:nth-child(4) {
    min-height: 240px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-quality__grid img {
    height: 230px;
  }

  .about-quality__footer {
    grid-template-columns: 38px 1fr;
  }

  .about-quality__footer .button {
    grid-column: 1 / -1;
  }

  .about-credentials__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .about-credentials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .about-credential__image {
    height: 220px;
    padding: 10px;
  }

  .about-credential__image > span {
    background: rgba(8, 13, 16, 0.12);
    opacity: 1;
  }

  .about-credential > strong {
    padding: 13px 12px 14px;
    font-size: 11px;
  }
}


/* resources.css */
.page--resources .site-header,
.page--article .site-header {
  height: 88px;
}

.resources-featured {
  padding: 84px 0 96px;
  background: #ffffff;
}

.resources-featured__article {
  display: grid;
  min-height: 500px;
  grid-template-columns: 58% 42%;
  margin-top: 26px;
  overflow: hidden;
  background: #f3f5f5;
  border-radius: 3px;
}

.resources-featured__media {
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}

.resources-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.resources-featured__article:hover .resources-featured__media img {
  transform: scale(1.025);
}

.resources-featured__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 54px 52px;
}

.resources-featured__content > span {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.resources-featured__content h2 {
  margin-bottom: 21px;
  font-size: 36px;
}

.resources-featured__content > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.resources-featured__content > div {
  display: flex;
  gap: 20px;
  margin-bottom: 31px;
  color: #737c81;
  font-size: 11px;
}

.resources-library {
  padding: 96px 0 108px;
  background: #f3f5f5;
}

.resources-library__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.resources-library__toolbar h2 {
  margin-bottom: 0;
  font-size: 40px;
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.resource-filters button {
  min-height: 40px;
  padding: 0 15px;
  color: #525b60;
  background: #ffffff;
  border: 1px solid #d1d6d9;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  scroll-margin-top: 118px;
}

.resource-filters button:hover,
.resource-filters button.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.resource-filters button:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.3);
  outline-offset: 2px;
}

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

.resource-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe3e5;
  border-radius: 3px;
}

.resource-card__media {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  background: var(--ink);
}

.resource-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.resource-card__media > span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 13px;
  color: #ffffff;
  background: var(--red);
  font-size: 9px;
  font-weight: 720;
  text-transform: uppercase;
}

.resource-card:hover .resource-card__media img {
  transform: scale(1.035);
}

.resource-card__body {
  display: flex;
  min-height: 310px;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px 23px 26px;
}

.resource-card__meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 17px;
  color: #7b8388;
  font-size: 10px;
}

.resource-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.resource-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
  line-height: 1.35;
}

.resource-card h3 a:hover {
  color: var(--red);
}

.resource-card__body > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.resource-card__body .text-link {
  margin-top: auto;
  font-size: 11px;
}

.resources-support {
  color: #ffffff;
  background: var(--ink);
}

.resources-support__grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 72px;
  padding-block: 78px;
}

.resources-support header h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 40px;
}

.resources-support header > p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.resources-support__links {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.resources-support__links > a {
  display: grid;
  min-height: 94px;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.resources-support__links > a > svg:first-child {
  color: var(--red);
}

.resources-support__links > a > svg:last-child {
  color: rgba(255, 255, 255, 0.44);
  transition: transform 180ms ease;
}

.resources-support__links > a:hover > svg:last-child {
  transform: translateX(4px);
}

.resources-support__links span {
  display: flex;
  flex-direction: column;
}

.resources-support__links strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 13px;
}

.resources-support__links span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.article-meta-band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.article-meta-band .container {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
  color: #737b80;
  font-size: 11px;
}

.article-meta-band .container > span:first-child {
  color: var(--red);
  font-weight: 720;
  text-transform: uppercase;
}

.article-meta-band .container > span:nth-child(3),
.article-meta-band a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta-band a {
  margin-left: auto;
  color: var(--text);
  font-weight: 650;
}

.article-content {
  padding: 86px 0 104px;
  background: #ffffff;
}

.article-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) 300px;
  justify-content: space-between;
  gap: 76px;
}

.article-body {
  min-width: 0;
}

.article-lead {
  padding-left: 26px;
  margin-bottom: 36px;
  color: #3e464b;
  border-left: 4px solid var(--red);
  font: 620 21px/1.65 "Manrope Variable", Manrope, Arial, sans-serif;
}

.article-body__image {
  width: 100%;
  height: 470px;
  margin-bottom: 48px;
  object-fit: cover;
  border-radius: 3px;
}

.article-body > section:not(.article-takeaways) {
  padding-bottom: 18px;
}

.article-body > section h2 {
  margin-bottom: 17px;
  font-size: 29px;
}

.article-body > section > p {
  margin-bottom: 24px;
  color: #50595e;
  font-size: 15px;
  line-height: 1.85;
}

.article-takeaways {
  padding: 34px 36px 38px;
  margin-top: 18px;
  background: #f3f5f5;
  border-top: 3px solid var(--red);
}

.article-takeaways h2 {
  margin-bottom: 22px;
}

.article-takeaways ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-takeaways li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #424a4f;
  font-size: 13px;
  font-weight: 620;
}

.article-takeaways li svg {
  color: var(--red);
}

.article-note {
  margin: 28px 0 0;
  color: #858d91;
  font-size: 11px;
  line-height: 1.65;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  min-width: 0;
}

.article-sidebar__contents {
  display: grid;
  padding: 25px 24px;
  background: #f3f5f5;
  border-top: 3px solid var(--red);
}

.article-sidebar__contents strong {
  margin-bottom: 15px;
  font-size: 13px;
  text-transform: uppercase;
}

.article-sidebar__contents a {
  padding: 10px 0;
  color: #626b70;
  border-bottom: 1px solid #d9dddf;
  font-size: 11px;
}

.article-sidebar__contents a:hover {
  color: var(--red);
}

.article-sidebar__contact {
  margin-top: 26px;
  padding: 28px 24px;
  color: #ffffff;
  background: var(--ink);
}

.article-sidebar__contact > svg {
  margin-bottom: 17px;
  color: var(--red);
}

.article-sidebar__contact h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
}

.article-sidebar__contact p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.article-sidebar__contact .button {
  width: 100%;
}

.article-related {
  padding: 92px 0 104px;
  background: #f3f5f5;
}

.article-related header {
  margin-bottom: 38px;
}

.article-related h2 {
  margin-bottom: 0;
  font-size: 38px;
}

@media (max-width: 1100px) {
  .resources-featured__article {
    grid-template-columns: 52% 48%;
  }

  .resources-featured__content {
    padding: 42px 38px;
  }

  .resources-featured__content h2 {
    font-size: 32px;
  }

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

  .resources-support__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-content__grid {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 45px;
  }
}

@media (max-width: 767px) {
  .page--resources .site-header,
  .page--article .site-header {
    height: 72px;
  }

  .resources-featured,
  .resources-library,
  .article-content,
  .article-related {
    padding-block: 62px 70px;
  }

  .resources-featured__article {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .resources-featured__media {
    height: 260px;
  }

  .resources-featured__content {
    padding: 32px 24px 38px;
  }

  .resources-featured__content h2,
  .resources-library__toolbar h2,
  .resources-support header h2,
  .article-related h2 {
    font-size: 29px;
  }

  .resources-library__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-filters {
    justify-content: flex-start;
  }

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

  .resource-card__media {
    height: 235px;
  }

  .resource-card__body {
    min-height: 0;
  }

  .resources-support__grid {
    padding-block: 60px;
  }

  .resources-support__links > a {
    min-height: 104px;
    grid-template-columns: 32px 1fr 18px;
    gap: 11px;
  }

  .article-meta-band .container {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-block: 18px;
  }

  .article-meta-band a {
    width: 100%;
    margin: 7px 0 0;
  }

  .article-content__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-lead {
    padding-left: 18px;
    font-size: 18px;
  }

  .article-body__image {
    height: 270px;
  }

  .article-body > section h2 {
    font-size: 25px;
  }

  .article-takeaways {
    padding: 28px 22px;
  }

  .article-sidebar__contents {
    position: static;
  }

  .article-sidebar {
    position: static;
  }
}


/* contact.css */
.page--contact .site-header {
  height: 88px;
}

.contact-methods {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.contact-methods__grid {
  display: grid;
  min-height: 148px;
  grid-template-columns: repeat(4, 1fr);
}

.contact-methods__grid > a,
.contact-methods__grid > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 28px 30px;
}

.contact-methods__grid > * + *::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.contact-methods__grid svg {
  flex: 0 0 auto;
  color: var(--red);
}

.contact-methods__grid span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-methods__grid small {
  margin-bottom: 5px;
  color: #7b8388;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-methods__grid strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.contact-methods__grid a:hover strong {
  color: var(--red);
}

.contact-inquiry {
  padding: 96px 0 108px;
  background: #f3f5f5;
}

.contact-inquiry__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  align-items: end;
  gap: 64px;
  margin-bottom: 42px;
}

.contact-inquiry__heading h2 {
  margin-bottom: 0;
  font-size: 42px;
}

.contact-inquiry__heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
}

.contact-inquiry__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.contact-form {
  padding: 34px;
  background: #ffffff;
  border: 1px solid #dfe3e5;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 20px;
}

.contact-form label {
  color: #515a5f;
  font-size: 11px;
  font-weight: 650;
}

.contact-form label > em {
  color: var(--red);
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  margin-top: 8px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #d7dcde;
  border-radius: 2px;
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 40, 0.08);
}

.contact-form textarea {
  height: 120px;
  padding-top: 13px;
  resize: vertical;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form__file {
  position: relative;
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: #f7f8f8;
  border: 1px dashed #bfc6ca;
  cursor: pointer;
}

.contact-form__file:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 40, 0.08);
}

.contact-form__file > svg {
  color: var(--red);
}

.contact-form__file-copy {
  display: flex;
  min-width: 0;
  color: var(--text);
  flex-direction: column;
}

.contact-form__file strong {
  font-size: 12px;
}

.contact-form__file small {
  overflow: hidden;
  margin-top: 3px;
  color: #7b8388;
  font-size: 10px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form__file-action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #ffffff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form__file input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.contact-form__submit > span {
  color: #7b8388;
  font-size: 10px;
}

.contact-form__submit > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #26833b;
  font-size: 11px;
  font-weight: 620;
}

.contact-preparation {
  padding: 38px 32px;
  color: #ffffff;
  background: var(--ink);
}

.contact-preparation > svg {
  margin-bottom: 30px;
  color: var(--red);
}

.contact-preparation .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-preparation h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 25px;
}

.contact-preparation > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.contact-preparation ul {
  display: grid;
  gap: 14px;
  padding: 22px 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.contact-preparation li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.55;
}

.contact-preparation li svg {
  flex: 0 0 auto;
  color: var(--red);
}

.contact-preparation > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.contact-preparation > div strong {
  font-size: 12px;
}

.contact-preparation > div a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 11px;
}

.contact-location {
  padding: 98px 0;
  background: #ffffff;
}

.contact-location__grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 56% 44%;
  align-items: stretch;
}

.contact-location__visual {
  overflow: hidden;
  background: var(--ink);
}

.contact-location__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-location__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 48px 50px;
  background: #f3f5f5;
}

.contact-location__content h2 {
  margin-bottom: 18px;
  font-size: 35px;
}

.contact-location__content > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.contact-location__details {
  display: grid;
  width: 100%;
  border-top: 1px solid #d9dddf;
}

.contact-location__details > span {
  display: grid;
  min-height: 68px;
  grid-template-columns: 32px 85px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d9dddf;
}

.contact-location__details svg {
  color: var(--red);
}

.contact-location__details small {
  color: #7b8388;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-location__details strong {
  font-size: 11px;
}

.contact-faq {
  padding: 94px 0 105px;
  background: #f3f5f5;
}

.contact-faq__grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 78px;
}

.contact-faq header h2 {
  margin-bottom: 0;
  font-size: 38px;
}

.contact-faq details {
  border-top: 1px solid #cfd5d8;
}

.contact-faq details:last-child {
  border-bottom: 1px solid #cfd5d8;
}

.contact-faq summary {
  position: relative;
  padding: 22px 42px 22px 0;
  font: 680 15px/1.45 "Manrope Variable", Manrope, Arial, sans-serif;
  cursor: pointer;
}

.contact-faq summary::after {
  position: absolute;
  top: 17px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--red);
  border: 1px solid #bfc6ca;
  content: "+";
}

.contact-faq details[open] summary::after {
  content: "-";
}

.contact-faq details p {
  max-width: 700px;
  padding: 0 42px 22px 0;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .contact-methods__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-methods__grid > *:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .contact-methods__grid > *:nth-child(3)::before {
    display: none;
  }

  .contact-methods__grid > *:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

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

  .contact-location__visual {
    height: 430px;
  }
}

@media (max-width: 767px) {
  .page--contact .site-header {
    height: 72px;
  }

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

  .contact-methods__grid > a,
  .contact-methods__grid > div {
    min-height: 92px;
    padding: 22px 8px;
    border-top: 1px solid var(--line);
  }

  .contact-methods__grid > * + *::before {
    display: none;
  }

  .contact-inquiry,
  .contact-location,
  .contact-faq {
    padding-block: 62px 70px;
  }

  .contact-inquiry__heading,
  .contact-faq__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-inquiry__heading h2,
  .contact-location__content h2,
  .contact-faq header h2 {
    font-size: 29px;
  }

  .contact-form {
    padding: 25px 20px;
  }

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

  .contact-form__full {
    grid-column: auto;
  }

  .contact-form__file {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .contact-form__file-action {
    min-height: 32px;
    padding: 0 11px;
  }

  .contact-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-preparation {
    padding: 32px 24px;
  }

  .contact-location__visual {
    height: 280px;
  }

  .contact-location__content {
    padding: 34px 24px;
  }

  .contact-location__details > span {
    grid-template-columns: 28px 1fr;
  }

  .contact-location__details strong {
    grid-column: 2;
    padding-bottom: 12px;
  }

  .contact-faq__grid {
    gap: 32px;
  }
}


/* videos.css */
.video-library-intro {
  padding: 92px 0 78px;
  background: #ffffff;
}

.video-library-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 110px;
}

.video-library-intro h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.16;
}

.video-library-intro__copy > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.video-library-summary {
  display: grid;
  max-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.video-library-summary > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 20px 24px 20px 0;
}

.video-library-summary > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.video-library-summary strong {
  color: var(--red);
  font: 760 34px/1 "Manrope Variable", sans-serif;
}

.video-library-summary span {
  color: #3e464b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.video-library-catalog {
  padding: 78px 0 112px;
  background: var(--surface);
}

.video-library-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 28px;
  margin-bottom: 38px;
  border-bottom: 1px solid #cfd4d7;
}

.video-library-toolbar h2 {
  margin-bottom: 0;
}

.video-library-filters {
  display: flex;
  max-width: 840px;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.video-library-filters button {
  min-height: 40px;
  padding: 0 15px;
  color: #4f585e;
  background: #ffffff;
  border: 1px solid #cfd4d7;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.video-library-filters button:hover,
.video-library-filters button:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.video-library-filters button.is-active {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.video-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
}

.video-library-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  scroll-margin-top: 120px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.video-library-card:hover {
  border-color: #b8c0c4;
  box-shadow: 0 16px 38px rgba(15, 23, 27, 0.1);
  transform: translateY(-3px);
}

.video-library-card:target {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 40, 0.14), 0 16px 38px rgba(15, 23, 27, 0.1);
}

.video-library-card__button {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  flex-direction: column;
  text-align: left;
  background: #ffffff;
  border: 0;
  cursor: pointer;
}

.video-library-card__button:focus-visible {
  outline: 3px solid rgba(215, 25, 40, 0.3);
  outline-offset: -3px;
}

.video-library-card__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-library-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.video-library-card:hover .video-library-card__media img {
  transform: scale(1.035);
}

.video-library-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 12, 0.2), rgba(7, 10, 12, 0.06) 48%, rgba(7, 10, 12, 0.52));
}

.video-library-card__index,
.video-library-card__duration {
  position: absolute;
  z-index: 1;
  top: 16px;
  display: inline-flex;
  min-width: 42px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(12, 17, 20, 0.78);
  font-size: 11px;
  font-weight: 720;
}

.video-library-card__index {
  left: 16px;
  border-left: 3px solid var(--red);
}

.video-library-card__duration {
  right: 16px;
  padding-inline: 10px;
}

.video-library-card__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--red);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.video-library-card:hover .video-library-card__play {
  color: #ffffff;
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-library-card__body {
  display: flex;
  min-height: 242px;
  padding: 23px 24px 25px;
  flex: 1;
  flex-direction: column;
}

.video-library-card__body > small {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.video-library-card__body > strong {
  margin-bottom: 12px;
  color: var(--text);
  font: 720 19px/1.35 "Manrope Variable", sans-serif;
}

.video-library-card__description {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.video-library-card__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--text);
  font-size: 12px;
  font-weight: 720;
}

.video-library-card__action svg {
  color: var(--red);
}

.video-library-modal {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  padding: 54px;
  place-items: center;
  overflow-y: auto;
  background: rgba(7, 10, 12, 0.94);
}

.video-library-modal__panel {
  width: min(1120px, 100%);
  color: #ffffff;
  background: #11171a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.video-library-modal__header {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 22px 18px 28px;
}

.video-library-modal__header small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.video-library-modal__header h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 23px;
}

.video-library-modal__header button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  cursor: pointer;
}

.video-library-modal__header button:hover,
.video-library-modal__header button:focus-visible {
  color: var(--red);
  background: #ffffff;
  border-color: #ffffff;
}

.video-library-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-library-modal__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

html[data-locale="zh"] .video-library-card__body > strong,
html[data-locale="zh"] .video-library-modal__header h2 {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

@media (max-width: 1120px) {
  .video-library-intro__grid {
    gap: 64px;
  }

  .video-library-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .video-library-filters {
    max-width: none;
    justify-content: flex-start;
  }

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

@media (max-width: 767px) {
  .video-library-intro {
    padding: 58px 0 50px;
  }

  .video-library-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-library-intro h2 {
    font-size: 31px;
  }

  .video-library-intro__copy > p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .video-library-summary {
    max-width: none;
  }

  .video-library-summary > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 14px 16px 0;
  }

  .video-library-summary > div + div {
    padding-left: 18px;
  }

  .video-library-summary strong {
    font-size: 28px;
  }

  .video-library-summary span {
    font-size: 10px;
  }

  .video-library-catalog {
    padding: 54px 0 72px;
  }

  .video-library-toolbar {
    margin-bottom: 26px;
  }

  .video-library-filters {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .video-library-filters button {
    flex: 0 0 auto;
  }

  .video-library-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-library-card__body {
    min-height: 0;
    padding: 20px 20px 22px;
  }

  .video-library-card__body > strong {
    font-size: 18px;
  }

  .video-library-modal {
    align-items: center;
    padding: 18px 12px;
  }

  .video-library-modal__header {
    min-height: 84px;
    gap: 16px;
    padding: 14px 14px 14px 18px;
  }

  .video-library-modal__header h2 {
    font-size: 17px;
    line-height: 1.35;
  }

  .video-library-modal__header button {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-library-card,
  .video-library-card__media img,
  .video-library-card__play {
    transition: none;
  }
}


/* legal.css */
.page--legal .site-header {
  height: 88px;
}

.legal-hero {
  padding: 82px 0 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 17, 21, 0.22), transparent 34%),
    var(--ink);
}

.legal-hero .eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #ffffff;
}

.legal-hero > .container > p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.legal-hero time {
  display: inline-flex;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
}

.legal-content {
  padding: 84px 0 104px;
  background: #ffffff;
}

.legal-content__grid {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 820px);
  justify-content: space-between;
  gap: 72px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 24px;
  background: var(--surface);
  border-left: 3px solid var(--red);
}

.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.legal-toc ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-toc li + li {
  margin-top: 9px;
}

.legal-toc a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--red);
}

.legal-document > section {
  scroll-margin-top: 112px;
}

.legal-document > section + section {
  padding-top: 38px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 18px;
  font-size: 27px;
}

.legal-document p,
.legal-document li {
  color: #40494f;
  font-size: 15px;
  line-height: 1.8;
}

.legal-document ul {
  padding-left: 22px;
  margin: 18px 0 0;
}

.legal-document li + li {
  margin-top: 9px;
}

.legal-contact a,
.form-privacy-notice a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy-notice {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .legal-content__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 767px) {
  .page--legal .site-header {
    height: 72px;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: 58px 0 52px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  .legal-content {
    padding: 56px 0 72px;
  }

  .legal-document h2 {
    font-size: 23px;
  }
}


/* theme.css */
/* Red-navigation variant. Page surfaces remain red-white; only navigation states use the expanded red treatment. */

:root {
  color-scheme: light;
  --variant-canvas: #ffffff;
  --variant-panel: #ffffff;
  --navigation-red: var(--red);
  --navigation-red-deep: var(--red);
}

.site-header--dark {
  color: #ffffff;
  background: var(--navigation-red);
}

.site-header--overlay.site-header--dark {
  background: var(--navigation-red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header--overlay.site-header--scrolled {
  background: var(--navigation-red);
  box-shadow: 0 8px 28px rgba(90, 8, 17, 0.24);
  backdrop-filter: blur(12px);
}

.site-header--scrolled:not(.site-header--overlay) {
  background: var(--navigation-red);
  box-shadow: 0 8px 28px rgba(90, 8, 17, 0.24);
}

.site-header .nav-entry > a::after {
  background: #ffffff;
}

.site-header--dark .icon-button {
  border-color: rgba(255, 255, 255, 0.56);
}

.site-header .mega-menu {
  border-top-color: var(--navigation-red-deep);
}

.mobile-drawer {
  color: #ffffff;
  background-color: var(--navigation-red);
}

.mobile-drawer .brand-logo {
  color: #ffffff;
}

.mobile-drawer .icon-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.56);
}

.mobile-drawer__top,
.mobile-drawer nav a,
.mobile-nav-group {
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-primary > button {
  color: rgba(255, 255, 255, 0.74);
}

.mobile-nav-submenu strong {
  color: rgba(255, 255, 255, 0.56);
}

.mobile-nav-submenu a {
  color: rgba(255, 255, 255, 0.88);
}

.mobile-nav-submenu .mobile-nav-feature {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.mobile-nav-feature > svg:first-child {
  color: #ffffff;
}

.mobile-nav-primary > a:focus-visible,
.mobile-nav-primary > button:focus-visible,
.mobile-nav-submenu a:focus-visible {
  outline-color: rgba(255, 255, 255, 0.72);
}

.mobile-drawer__language {
  color: rgba(255, 255, 255, 0.74);
}


/* PHP conditional-rendering adapter */
[hidden] { display: none !important; }
