:root {
        --bg-soft: #f4f5f7;
        --text: #222222;
        --muted: #696969;
        --accent: #ffc000;
        --footer: #41474d;
        --container: 1200px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: #ffffff;
        color: var(--text);
        font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
        -webkit-font-smoothing: antialiased;
      }

      img {
        display: block;
      }

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

      .site-header {
        position: fixed;
        inset: 0 0 auto;
        z-index: 50;
        height: 82px;
        background: rgba(0, 0, 0, 0);
        border-bottom: 1px solid rgba(255, 255, 255, 0);
        transition:
          background-color 0.25s ease,
          border-color 0.25s ease,
          box-shadow 0.25s ease;
      }

      .site-header.scrolled {
        background: #ffffff;
        border-bottom-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      }

      .header-inner {
        width: var(--container);
        height: 82px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .logo {
        display: block;
        width: 170px;
        height: 34px;
      }

      .logo img {
        width: 170px;
        height: 34px;
        object-fit: contain;
      }

      .nav {
        display: flex;
        align-items: center;
        gap: 70px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
      }

      .nav a {
        transition: color 0.22s ease;
      }

      .nav a:hover {
        color: var(--accent);
      }

      .site-header.scrolled .nav {
        color: #000000;
      }

      .hero {
        position: relative;
        height: 890px;
        overflow: hidden;
        color: #ffffff;
        background: #111111;
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.7s ease;
      }

      .hero-bg.active {
        opacity: 1;
      }

      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 44%;
      }

      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
      }

      .hero-copy {
        position: absolute;
        left: 50%;
        top: calc(50% - 1px);
        width: min(900px, calc(100% - 48px));
        transform: translate(-50%, -50%);
        text-align: center;
      }

      .hero-copy h1 {
        margin: 0 0 15px;
        font-size: 48px;
        line-height: 48px;
        font-weight: 700;
        letter-spacing: 0.35px;
      }

      .hero-copy p {
        margin: 0;
        font-size: 20px;
        line-height: 28px;
        font-weight: 400;
        letter-spacing: -0.45px;
      }

      .hero-lines {
        position: absolute;
        left: 50%;
        bottom: 50px;
        display: flex;
        gap: 12px;
        transform: translateX(-50%);
      }

      .hero-lines button {
        width: 44px;
        height: 2px;
        padding: 0;
        border: 0;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition:
          width 0.25s ease,
          background-color 0.25s ease;
      }

      .hero-lines button.active {
        width: 70px;
        background: #ffffff;
      }

      .hero-arrow {
        position: absolute;
        top: 50%;
        z-index: 3;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        transform: translateY(-50%);
        transition:
          transform 0.22s ease,
          opacity 0.22s ease;
      }

      .hero-arrow:hover {
        opacity: 0.86;
        transform: translateY(-50%) scale(1.06);
      }

      .hero-arrow:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 4px;
        border-radius: 999px;
      }

      .hero-arrow-prev {
        left: 48px;
      }

      .hero-arrow-next {
        right: 48px;
      }

      .hero-arrow img {
        width: 100%;
        height: 100%;
        pointer-events: none;
      }

      .hero-arrow-prev img {
        transform: scaleX(-1);
      }

      .section {
        scroll-margin-top: 82px;
      }

      .section {
        position: relative;
        overflow: hidden;
      }

      .section-soft {
        background: var(--bg-soft);
      }

      .section-white {
        background: #ffffff;
      }

      .container {
        width: var(--container);
        margin: 0 auto;
      }

      .section-title {
        position: relative;
        width: 363px;
        margin: 0 auto;
        padding-top: 80px;
        text-align: center;
      }

      .section-title img {
        width: 76.5px;
        height: 50px;
        margin: 0 auto -29px;
      }

      .section-title h2 {
        position: relative;
        margin: 0;
        font-size: 36px;
        line-height: 40px;
        font-weight: 700;
        letter-spacing: 0.37px;
        text-transform: capitalize;
      }

      .categories {
        min-height: 776px;
      }

      .category-grid {
        display: grid;
        grid-template-columns: repeat(5, 224px);
        gap: 20px;
        width: var(--container);
        margin: 67px auto 0;
      }

      .category-card {
        position: relative;
        height: 224px;
        overflow: hidden;
        border-radius: 20px;
        background: #ffffff;
        cursor: default;
        transition:
          background-color 0.25s ease,
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }

      .category-card:hover {
        background: var(--accent);
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
      }

      .product-art {
        position: absolute;
        transform: var(--base-transform, none);
        transform-origin: center;
        transition: transform 0.35s ease;
        pointer-events: none;
      }

      .category-card:hover .product-art {
        transform: var(--base-transform, none) scale(1.08);
      }

      .product-window {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .product-window img,
      .product-art > img {
        display: block;
        pointer-events: none;
      }

      .category-card h3 {
        position: absolute;
        left: 20px;
        bottom: 17px;
        margin: 0;
        color: #222222;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        white-space: nowrap;
      }

      .category-card h3 span {
        font-weight: 400;
      }

      .product-bulkhead {
        left: 52px;
        top: 27px;
        width: 172px;
        height: 148px;
        --base-transform: scaleY(-1);
      }

      .product-bulkhead img {
        width: 202px;
        height: 148px;
      }

      .product-ceiling {
        left: 89px;
        top: 13px;
        width: 165px;
        height: 152px;
        --base-transform: scaleY(-1);
      }

      .product-ceiling img {
        position: absolute;
        left: -167.17%;
        top: -124.51%;
        width: 497.98%;
        height: 348.64%;
      }

      .product-bulkhead-2 {
        left: 41px;
        top: 25px;
        width: 183px;
        height: 161px;
      }

      .product-bulkhead-2 img {
        width: 183px;
        height: 161px;
      }

      .product-office {
        left: 35px;
        top: 23px;
        width: 189px;
        height: 150px;
      }

      .product-office img {
        position: absolute;
        left: -36.79px;
        top: -96.39px;
        width: 428px;
        height: 412.54px;
      }

      .product-waterproof {
        left: 35px;
        top: 29px;
        width: 189px;
        height: 195px;
      }

      .product-waterproof img {
        width: 189px;
        height: 195px;
      }

      .product-linear {
        left: 13px;
        top: 0;
        right: 0;
        bottom: 30px;
        width: auto;
        height: auto;
      }

      .product-linear img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
      }

      .product-track {
        left: 49px;
        top: 34px;
        width: 175px;
        height: 135px;
      }

      .product-track img {
        position: absolute;
        left: 0.48px;
        top: 0;
        width: 587.82px;
        height: 265.8px;
      }

      .product-panel {
        left: 20px;
        top: 14px;
        right: 0;
        bottom: 41px;
        width: auto;
        height: auto;
      }

      .product-panel .product-window img {
        position: absolute;
        left: 0;
        top: 0;
        width: 156.37%;
        height: 100%;
      }

      .product-panel img {
        width: 100%;
        height: 100%;
      }

      .product-panel {
        height: 169px;
      }

      .product-mirror {
        left: 9px;
        top: 10px;
        width: 215px;
        height: 192px;
      }

      .product-mirror img {
        position: absolute;
        left: -0.3px;
        top: 0.12px;
        width: 365.62px;
        height: 191.77px;
      }

      .product-spot {
        left: 25px;
        top: -24px;
        right: -6px;
        bottom: -5px;
        width: auto;
        height: auto;
      }

      .product-spot img {
        width: 204.61px;
        height: 252.86px;
      }

      .about {
        min-height: 816px;
      }

      .about-layout {
        position: relative;
        height: 608px;
        margin-top: 67px;
      }

      .about-copy {
        width: 601px;
      }

      .about-copy h3 {
        margin: 0 0 16px;
        color: #262626;
        font-size: 20px;
        line-height: normal;
        font-weight: 700;
        letter-spacing: 0.07px;
      }

      .underline {
        width: 74px;
        height: 2px;
        margin-bottom: 16px;
        background: var(--accent);
      }

      .about-copy p {
        margin: 0 0 26px;
        color: var(--muted);
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
      }

      .about-copy p:last-child {
        width: var(--container);
        margin-top: 0;
      }

      .about-main-photo {
        position: absolute;
        right: 0;
        top: 0;
        width: 522px;
        height: 270px;
        overflow: hidden;
        border-radius: 20px;
        background: #b6b6b6;
      }

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

      .thumb-grid {
        position: absolute;
        left: 0;
        right: 0;
        top: 388px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
      }

      .thumb {
        height: 120px;
        overflow: hidden;
        border-radius: 12px;
        background: #e2e2e2;
      }

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

      .contact {
        min-height: 712px;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 384px 388px 388px;
        grid-template-rows: 192px 192px;
        gap: 20px;
        margin-top: 67px;
      }

      .contact-card,
      .hq-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        background: #ffffff;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          background-color 0.25s ease;
      }

      .contact-card:hover,
      .hq-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(34, 34, 34, 0.12);
      }

      .hq-card {
        grid-row: span 2;
        height: 404px;
        color: #ffffff;
      }

      .hq-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
      }

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

      .hq-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        transition: background 0.25s ease;
      }

      .hq-card:hover::after {
        background: rgba(0, 0, 0, 0.55);
      }

      .hq-content {
        position: absolute;
        z-index: 1;
        left: 40px;
        bottom: 40px;
        width: 188px;
      }

      .icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: var(--bg-soft);
        transition:
          background-color 0.25s ease,
          transform 0.25s ease;
      }

      .hq-card .icon-box {
        background: #ffffff;
      }

      .icon-box img {
        width: 24px;
        height: 24px;
        object-fit: contain;
      }

      .icon-svg {
        width: 24px;
        height: 24px;
        color: #222222;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .contact-card:hover .icon-box,
      .hq-card:hover .icon-box {
        background: var(--accent);
        transform: scale(1.04);
      }

      .contact-content {
        position: absolute;
        left: 32px;
        top: 32px;
        width: 306px;
      }

      .contact-card {
        height: 192px;
      }

      .contact-label {
        margin: 0 0 8px;
        color: var(--muted);
        font-size: 16px;
        line-height: normal;
        letter-spacing: -0.44px;
      }

      .contact-value {
        margin: 0;
        color: #222222;
        font-size: 20px;
        line-height: normal;
        font-weight: 700;
        letter-spacing: 0.07px;
        white-space: nowrap;
      }

      .hq-content h3 {
        margin: 0 0 12px;
        font-size: 20px;
        line-height: normal;
        font-weight: 700;
        letter-spacing: 0.07px;
      }

      .hq-content p {
        margin: 0;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: -0.44px;
      }

      .footer {
        height: 80px;
        background: var(--footer);
        color: rgba(255, 255, 255, 0.54);
        text-align: center;
        font-size: 16px;
        line-height: 80px;
        letter-spacing: -0.44px;
      }

      .category-card {
        display: block;
      }

      .site-header.page-header {
        height: 90px;
        background: #ffffff;
        border-bottom-color: rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 -0.5px 0 rgba(0, 0, 0, 0.05);
      }

      .site-header.page-header .header-inner {
        height: 90px;
      }

      .site-header.page-header .nav {
        color: #222222;
      }

      .site-header.page-header .nav a.active {
        color: #222222;
      }

      .product-page {
        min-height: 100vh;
        background: var(--bg-soft);
      }

      .product-shell {
        width: var(--container);
        margin: 0 auto;
        padding: 114px 0 90px;
        display: grid;
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 24px;
        align-items: start;
      }

      .product-sidebar {
        overflow: hidden;
        border-radius: 12px;
        background: #ffffff;
      }

      .product-sidebar-head {
        padding: 20px;
        background: #ffffff;
        box-shadow: inset 0 -0.5px 0 rgba(0, 0, 0, 0.05);
      }

      .product-sidebar-head h1 {
        margin: 0;
        color: #222222;
        font-size: 20px;
        line-height: 24px;
        font-weight: 700;
        text-transform: uppercase;
      }

      .product-sidebar-head p {
        margin: 4px 0 0;
        color: rgba(34, 34, 34, 0.45);
        font-size: 16px;
        line-height: 22px;
      }

      .product-menu {
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .product-menu a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 92px;
        padding: 20px 16px 20px 20px;
        background: #ffffff;
        box-shadow: inset 0 -0.5px 0 rgba(0, 0, 0, 0.05);
        transition: background-color 0.22s ease;
      }

      .product-menu a:hover,
      .product-menu a.active {
        background: var(--accent);
      }

      .product-menu-main {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }

      .product-menu-thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
        overflow: hidden;
        border-radius: 4px;
        background: #f4f5f7;
      }

      .product-menu a:hover .product-menu-thumb,
      .product-menu a.active .product-menu-thumb {
        background: #eeb400;
      }

      .product-menu-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.28s ease;
      }

      .product-menu a:hover .product-menu-thumb img {
        transform: scale(1.06);
      }

      .product-menu-text strong {
        display: block;
        color: #222222;
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        white-space: nowrap;
      }

      .product-menu-text span {
        display: block;
        margin-top: 2px;
        color: #696969;
        font-size: 12px;
        line-height: 16px;
      }

      .product-menu-arrow {
        flex: 0 0 auto;
        color: #cccccc;
        font-size: 18px;
        line-height: 1;
      }

      .product-menu a:hover .product-menu-arrow,
      .product-menu a.active .product-menu-arrow {
        color: #222222;
      }

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

      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 54px;
        margin-bottom: 16px;
        padding: 16px 20px;
        border-radius: 12px;
        background: #ffffff;
        color: rgba(34, 34, 34, 0.45);
        font-size: 16px;
        line-height: 20px;
        white-space: nowrap;
      }

      .breadcrumb strong {
        color: #222222;
        font-weight: 700;
      }

      .breadcrumb a {
        color: rgba(34, 34, 34, 0.45);
        transition: color 0.2s ease;
      }

      .breadcrumb a:hover,
      .breadcrumb a:focus-visible {
        color: #222222;
      }

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

      .series-card {
        display: flex;
        min-height: 337px;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 12px;
        background: #ffffff;
        flex-direction: column;
        transition:
          border-color 0.22s ease,
          transform 0.22s ease,
          box-shadow 0.22s ease;
      }

      .series-card:hover,
      .series-card:focus-visible {
        border-color: var(--accent);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
      }

      .series-card-image {
        height: 281px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #ffffff;
      }

      .series-card-image img {
        display: block;
        width: var(--series-image-width);
        height: var(--series-image-height);
        max-width: none;
        object-fit: var(--series-image-fit, contain);
        object-position: var(--series-image-position, center);
        translate: 0 var(--series-image-offset-y, 0);
        transition: scale 0.32s ease;
      }

      .series-card:hover .series-card-image img,
      .series-card:focus-visible .series-card-image img {
        scale: 1.08;
      }

      .series-byc-h img {
        --series-image-width: 208px;
        --series-image-height: 124px;
      }

      .series-byc-s img {
        --series-image-width: 233px;
        --series-image-height: 121px;
        --series-image-fit: cover;
        --series-image-position: top center;
      }

      .series-byc-b img {
        --series-image-width: 228px;
        --series-image-height: 97px;
        --series-image-fit: cover;
        --series-image-position: center;
        --series-image-offset-y: 4px;
      }

      .series-byc-c img {
        --series-image-width: 197px;
        --series-image-height: 151px;
        --series-image-offset-y: 9px;
      }

      .series-byc-j img {
        --series-image-width: 225px;
        --series-image-height: 143px;
      }

      .series-byc-g img {
        --series-image-width: 202px;
        --series-image-height: 132px;
        --series-image-offset-y: 6px;
      }

      .series-byc-a img {
        --series-image-width: 228px;
        --series-image-height: 83px;
      }

      .series-byc-k img {
        --series-image-width: 207px;
        --series-image-height: 136px;
        --series-image-offset-y: 1px;
      }

      .series-bulkhead-d {
        position: relative;
      }

      .series-bulkhead-d span {
        position: absolute;
        display: block;
        overflow: hidden;
        pointer-events: none;
        transition: scale 0.32s ease;
      }

      .series-bulkhead-d img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: fill;
        scale: 1;
      }

      .series-card:hover .series-bulkhead-d span,
      .series-card:focus-visible .series-bulkhead-d span,
      .series-card:hover .series-bulkhead-m .bulkhead-m-crop,
      .series-card:focus-visible .series-bulkhead-m .bulkhead-m-crop {
        scale: 1.08;
      }

      .series-card:hover .series-bulkhead-d img,
      .series-card:focus-visible .series-bulkhead-d img,
      .series-card:hover .series-bulkhead-m img,
      .series-card:focus-visible .series-bulkhead-m img {
        scale: 1;
      }

      .series-bulkhead-d .bulkhead-d-round {
        width: 144px;
        height: 105px;
        left: 68px;
        top: 143px;
        transform: scaleY(-1);
      }

      .series-bulkhead-d .bulkhead-d-long {
        width: 144px;
        height: 95px;
        left: 68px;
        top: 38px;
        transform: rotate(180deg);
      }

      .series-bulkhead-l img {
        --series-image-width: 201px;
        --series-image-height: 140px;
      }

      .series-bulkhead-m {
        position: relative;
      }

      .series-bulkhead-m .bulkhead-m-crop {
        position: absolute;
        left: 44px;
        top: 74px;
        width: 193px;
        height: 134px;
        overflow: hidden;
        transition: scale 0.32s ease;
      }

      .series-bulkhead-m img {
        position: absolute;
        left: 0;
        top: 0;
        width: 233px;
        height: 138px;
        max-width: none;
        object-fit: fill;
        translate: none;
      }

      .series-bulkhead-n img {
        --series-image-width: 204px;
        --series-image-height: 113px;
        --series-image-offset-y: 9px;
      }

      .series-bulkhead-p img {
        --series-image-width: 225px;
        --series-image-height: 99px;
        --series-image-fit: cover;
        --series-image-position: top center;
      }

      .series-batten-a,
      .series-batten-b,
      .series-batten-c,
      .series-batten-d,
      .series-batten-e {
        position: relative;
      }

      .series-batten-a span,
      .series-batten-b span,
      .series-batten-c span,
      .series-batten-d span,
      .series-batten-e span {
        position: absolute;
        display: block;
        pointer-events: none;
        transition: scale 0.32s ease;
      }

      .series-batten-a img,
      .series-batten-b img,
      .series-batten-c img,
      .series-batten-d img,
      .series-batten-e img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: fill;
        scale: 1;
        translate: none;
      }

      .series-card:hover .series-batten-a span,
      .series-card:focus-visible .series-batten-a span,
      .series-card:hover .series-batten-b span,
      .series-card:focus-visible .series-batten-b span,
      .series-card:hover .series-batten-c span,
      .series-card:focus-visible .series-batten-c span,
      .series-card:hover .series-batten-d span,
      .series-card:focus-visible .series-batten-d span,
      .series-card:hover .series-batten-e span,
      .series-card:focus-visible .series-batten-e span {
        scale: 1.08;
      }

      .series-card:hover .series-batten-a img,
      .series-card:focus-visible .series-batten-a img,
      .series-card:hover .series-batten-b img,
      .series-card:focus-visible .series-batten-b img,
      .series-card:hover .series-batten-c img,
      .series-card:focus-visible .series-batten-c img,
      .series-card:hover .series-batten-d img,
      .series-card:focus-visible .series-batten-d img,
      .series-card:hover .series-batten-e img,
      .series-card:focus-visible .series-batten-e img {
        scale: 1;
      }

      .series-batten-a .batten-a-main {
        width: 464px;
        height: 51px;
        left: 70px;
        top: 120px;
        transform: rotate(14.32deg);
        transform-origin: 0 50%;
      }

      .series-batten-a .batten-a-end {
        width: 246px;
        height: 52px;
        left: 345px;
        top: 147px;
        transform: rotate(7.02deg);
        transform-origin: 0 50%;
      }

      .series-batten-b span {
        width: 624px;
        height: 195px;
        left: 21px;
        top: 80px;
        transform: rotate(7.29deg);
        transform-origin: 0 50%;
      }

      .series-batten-c span {
        width: 277px;
        height: 152px;
        left: 65px;
        top: 81px;
        transform: rotate(180deg) scaleY(-1);
      }

      .series-batten-d span {
        width: 534px;
        height: 243px;
        left: 53px;
        top: 100px;
        transform: rotate(180deg) scaleY(-1);
      }

      .series-batten-e span {
        width: 396px;
        height: 191px;
        left: 50px;
        top: 80px;
        transform: rotate(180deg) scaleY(-1);
      }

      .series-freeform {
        position: relative;
      }

      .series-freeform span {
        position: absolute;
        display: block;
        overflow: hidden;
        pointer-events: none;
        transition: scale 0.32s ease;
      }

      .series-freeform img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: var(--series-freeform-fit, contain);
        object-position: var(--series-freeform-position, center);
        scale: 1;
        translate: none;
      }

      .series-card:hover .series-freeform span,
      .series-card:focus-visible .series-freeform span {
        scale: 1.08;
      }

      .series-card:hover .series-freeform img,
      .series-card:focus-visible .series-freeform img {
        scale: 1;
      }

      .series-card-title {
        display: flex;
        align-items: center;
        gap: 0;
        min-height: 56px;
        padding: 16px 20px 20px;
        background: #ffffff;
        box-shadow: inset 0 0.5px 0 rgba(0, 0, 0, 0.05);
        color: #222222;
        font-size: 16px;
        line-height: 20px;
        white-space: nowrap;
        transition: background-color 0.22s ease;
      }

      .series-card-title strong {
        color: #222222;
        font-weight: 700;
      }

      .series-card-title span {
        color: #696969;
        font-weight: 400;
      }

      .series-card:hover .series-card-title,
      .series-card:focus-visible .series-card-title {
        background: var(--accent);
      }

      .catalog-frame {
        padding: 40px;
        overflow: hidden;
        border-radius: 12px;
        background: #ffffff;
      }

      .catalog-frame img {
        width: 795px;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        object-fit: contain;
        object-position: center;
      }

      .catalog-frame.catalog-crop img {
        height: 1071px;
        object-fit: cover;
        object-position: bottom center;
      }

      @media (max-width: 1240px) {
        :root {
          --container: calc(100vw - 64px);
        }

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

        .category-card {
          height: auto;
          aspect-ratio: 1;
        }

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

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

      @media (max-width: 900px) {
        :root {
          --container: calc(100vw - 32px);
        }

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

        .logo {
          flex: 0 0 128px;
          width: 128px;
          height: 26px;
        }

        .logo img {
          width: 128px;
          height: 26px;
        }

        .nav {
          gap: 24px;
          font-size: 13px;
        }

        .hero {
          height: 620px;
        }

        .hero-arrow {
          width: 40px;
          height: 40px;
          font-size: 40px;
        }

        .hero-arrow-prev {
          left: 24px;
        }

        .hero-arrow-next {
          right: 24px;
        }

        .hero-copy h1 {
          font-size: 38px;
          line-height: 42px;
        }

        .hero-copy p {
          font-size: 18px;
        }

        .section-title {
          padding-top: 56px;
        }

        .category-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          margin-top: 64px;
        }

        .categories,
        .about,
        .contact {
          min-height: 0;
          padding-bottom: 64px;
        }

        .about-layout {
          height: auto;
          margin-top: 64px;
        }

        .about-copy,
        .about-copy p:last-child {
          width: 100%;
        }

        .about-main-photo {
          position: relative;
          width: 100%;
          height: 280px;
          margin-top: 32px;
        }

        .thumb-grid {
          position: relative;
          top: auto;
          grid-template-columns: repeat(3, 1fr);
          margin-top: 20px;
        }

        .contact-grid {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto;
          margin-top: 64px;
        }

        .product-shell {
          grid-template-columns: 1fr;
          padding-top: 96px;
        }

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

        .product-menu a {
          min-height: 88px;
        }

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

        .hq-card {
          grid-column: span 2;
          grid-row: auto;
        }
      }

      @media (max-width: 560px) {
        .header-inner {
          align-items: center;
        }

        .logo {
          flex-basis: 128px;
          width: 128px;
          height: 26px;
        }

        .logo img {
          width: 128px;
          height: 26px;
        }

        .nav {
          gap: 14px;
          font-size: 12px;
        }

        .nav a:nth-child(2) {
          display: none;
        }

        .hero {
          height: 540px;
        }

        .hero-arrow {
          width: 36px;
          height: 36px;
          font-size: 36px;
        }

        .hero-arrow-prev {
          left: 12px;
        }

        .hero-arrow-next {
          right: 12px;
        }

        .hero-copy h1 {
          font-size: 32px;
          line-height: 36px;
        }

        .hero-copy p {
          font-size: 16px;
          line-height: 24px;
        }

        .section-title {
          width: 100%;
        }

        .section-title h2 {
          font-size: 30px;
        }

        .category-grid,
        .contact-grid,
        .thumb-grid {
          grid-template-columns: 1fr;
        }


        .hq-card {
          grid-column: auto;
          height: 404px;
        }

        .contact-value {
          font-size: 18px;
          white-space: normal;
        }

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

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

        .catalog-frame {
          min-height: 0;
          padding: 20px;
        }
      }
