:root {
    --sl-red: #e7332f;
    --sl-ink: #1c2024;
    --sl-logo-gray: #4b4e50;
    --sl-paper: #ffffff;
    --sl-muted: #5f676e;
    --sl-line: #d9dee2;
    --sl-dark: #2a3035;
    --sl-steel: #f3f5f6;
    --sl-max: 1420px;
    --sl-gutter: max(44px, calc((100% - var(--sl-max)) / 2));
    --sl-text: 16px;
    --sl-title: 30px;
    --sl-hero: 58px;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.sl-body {
    margin: 0;
    background: var(--sl-steel);
    color: var(--sl-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--sl-text);
    line-height: 1.55;
}

.sl-body a {
    color: inherit;
    text-decoration: none;
}

.sl-body img {
    max-width: 100%;
}

.sl-header,
.sl-footer,
.sl-section,
.sl-page-hero,
.sl-detail-hero,
.sl-feature-grid {
    width: 100%;
    margin-inline: auto;
}

.sl-header {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: auto minmax(360px, 1fr) auto;
    align-items: center;
    gap: 42px;
    min-height: 98px;
    border-bottom: 1px solid var(--sl-line);
    background: var(--sl-paper);
    padding: 0 var(--sl-gutter);
}

.sl-home .sl-header {
    width: 100%;
    padding-inline: var(--sl-gutter);
    border-color: var(--sl-line);
    background: var(--sl-paper);
    color: var(--sl-ink);
    box-shadow: 0 10px 30px rgba(28, 32, 36, .07);
}

.sl-logo {
    display: inline-flex;
    min-width: 270px;
    align-items: center;
    gap: 16px;
}

.sl-logo-mark {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.sl-logo-text {
    display: grid;
    gap: 2px;
}

.sl-logo-text strong {
    color: var(--sl-logo-gray);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.sl-logo-text small {
    color: currentColor;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    opacity: .72;
    text-transform: uppercase;
    white-space: nowrap;
}

.sl-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    color: currentColor;
    font-size: var(--sl-text);
    opacity: .82;
}

.sl-nav a {
    padding-block: 8px;
    border-bottom: 2px solid transparent;
}

.sl-nav a:hover {
    border-color: var(--sl-red);
    opacity: 1;
}

.sl-header-contact:hover .sl-phone-icon {
    background: #cf2724;
}

.sl-header-contact:hover .sl-phone-copy strong {
    color: var(--sl-red);
}

.sl-header-contact {
    display: inline-grid;
    grid-template-columns: 54px auto;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.sl-phone-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 8px;
    background: var(--sl-red);
    color: #fff;
}

.sl-phone-icon svg {
    display: block;
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.sl-phone-copy {
    display: grid;
    gap: 2px;
    line-height: 1.15;
}

.sl-phone-copy strong {
    color: var(--sl-ink);
    font-size: 20px;
    font-weight: 800;
}

.sl-phone-copy small {
    color: var(--sl-muted);
    font-size: 14px;
}

.sl-home-hero {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 440px;
    align-items: center;
    overflow: hidden;
    margin: -1px auto 0;
    background: var(--sl-hero-bg-color, var(--sl-paper));
    color: var(--sl-ink);
}

.sl-home-hero-visual {
    position: absolute;
    z-index: 0;
    inset: 0 var(--sl-gutter);
    background-color: var(--sl-hero-bg-color, var(--sl-paper));
    background-image:
        linear-gradient(90deg, var(--sl-hero-bg-color, var(--sl-paper)) 0%, var(--sl-hero-bg-color, var(--sl-paper)) 10%, transparent 48%),
        linear-gradient(90deg, rgba(255, 255, 255, 0) 88%, var(--sl-hero-bg-color, var(--sl-paper)) 100%),
        var(--sl-hero-bg-image);
    background-position: center, center, center center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, cover;
}

.sl-home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding: 58px var(--sl-gutter);
    grid-template-columns: minmax(0, 590px);
    gap: 0;
    align-items: center;
}

.sl-hero-copy {
    position: static;
    max-width: 610px;
    padding: 0;
    align-self: center;
}

.sl-hero-copy::before {
    display: none;
}

.sl-hero-copy h1,
.sl-page-hero h1,
.sl-detail-hero h1,
.sl-section h2 {
    margin: 0;
    font-size: var(--sl-hero);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
}

.sl-hero-copy h1 {
    max-width: 590px;
}

.sl-section h2,
.sl-page-hero h1,
.sl-detail-hero h1 {
    font-size: var(--sl-title);
    line-height: 1.16;
}

.sl-hero-copy > p:not(.sl-eyebrow),
.sl-page-hero p,
.sl-detail-hero p,
.sl-section p,
.sl-prose,
.sl-card p,
.sl-feature-card p,
.sl-news-list time {
    margin: 0;
    font-size: var(--sl-text);
    color: currentColor;
    opacity: .72;
}

.sl-hero-copy > p:not(.sl-eyebrow) {
    max-width: 520px;
    margin-top: 24px;
    color: var(--sl-muted);
    opacity: 1;
}

.sl-eyebrow,
.sl-feature-card > span:not(.sl-card-link) {
    margin: 0 0 26px;
    color: var(--sl-red);
    font-size: var(--sl-text);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.sl-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    min-width: 178px;
    padding: 0 28px;
    font-weight: 700;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.sl-btn-primary {
    border-color: var(--sl-red);
    background: var(--sl-red);
    color: #fff;
}

.sl-body a.sl-btn-primary {
    color: #fff;
}

.sl-btn-ghost {
    border-color: var(--sl-line);
    background: rgba(255, 255, 255, .74);
    color: var(--sl-ink);
}

.sl-btn-ghost:hover {
    border-color: var(--sl-ink);
    background: #fff;
}

.sl-hero-statline {
    display: grid;
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--sl-line);
    background: #fff;
}

.sl-hero-statline div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 20px 28px;
    border-right: 1px solid var(--sl-line);
}

.sl-hero-statline div:last-child {
    border-right: 0;
}

.sl-hero-statline strong {
    display: block;
    color: var(--sl-red);
    font-size: 20px;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.sl-facts strong {
    display: block;
    color: var(--sl-red);
    font-size: var(--sl-title);
    line-height: 1.1;
}

.sl-stat-icon,
.sl-home-cta-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--sl-red);
    font-size: 24px;
    line-height: 1;
}

.sl-stat-icon svg,
.sl-home-cta-icon svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sl-hero-statline em {
    display: block;
    margin-bottom: 5px;
    color: var(--sl-muted);
    font-style: normal;
    line-height: 1.15;
}

.sl-facts span {
    display: block;
    margin-top: 6px;
    color: var(--sl-muted);
    opacity: 1;
}

.sl-hero-media {
    display: grid;
    align-items: end;
    justify-items: end;
    min-height: 540px;
    position: relative;
    width: 100%;
    overflow: visible;
}

.sl-hero-media img {
    position: relative;
    display: block;
    width: 100%;
    width: 118%;
    height: 575px;
    object-fit: contain;
    object-position: right center;
    filter: none;
}

.sl-card-link {
    display: block;
    color: var(--sl-red);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sl-home-showcase {
    display: grid;
    width: 100%;
    gap: 14px;
    padding: 20px var(--sl-gutter) 78px;
    background: #fff;
}

.sl-feature-grid {
    display: grid;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    border-top: 0;
    background: #fff;
}

.sl-feature-card {
    position: relative;
    display: grid;
    min-height: 238px;
    overflow: hidden;
    grid-template-columns: minmax(0, .54fr) minmax(150px, .46fr);
    grid-template-rows: auto auto 1fr auto;
    gap: 0;
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    isolation: isolate;
    box-shadow: 0 12px 32px rgba(28, 32, 36, .04);
}

.sl-feature-card::after,
.sl-card::after {
    position: absolute;
    inset: 0;
    border-bottom: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
}

.sl-feature-card:hover::after,
.sl-card:hover::after {
    opacity: 1;
}

.sl-feature-card > h2,
.sl-feature-card > p,
.sl-feature-card > .sl-card-link {
    grid-column: 1;
    position: relative;
    z-index: 2;
    padding-left: 44px;
    padding-right: 24px;
}

.sl-feature-rule {
    position: relative;
    z-index: 2;
    display: block;
    width: 28px;
    height: 2px;
    margin: 26px 0 18px 44px;
    background: var(--sl-red);
}

.sl-feature-card h2 {
    margin: 0;
    max-width: none;
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: normal;
    align-self: start;
}

.sl-feature-card p {
    display: -webkit-box;
    max-width: none;
    margin-top: 18px;
    color: var(--sl-muted);
    opacity: 1;
    align-self: start;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.sl-feature-card > .sl-card-link {
    align-self: end;
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

.sl-feature-card > img {
    position: relative;
    z-index: 1;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1 / -1;
    display: block;
    width: min(100%, 230px);
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    align-self: center;
    justify-self: end;
    object-fit: cover;
    object-position: center;
    padding: 0;
}

.sl-home-cta {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    background: #fff;
    padding: 18px 28px;
    box-shadow: 0 12px 32px rgba(28, 32, 36, .04);
}

.sl-home-cta-icon {
    width: 52px;
    height: 52px;
    font-size: 28px;
}

.sl-home-cta-icon svg {
    width: 30px;
    height: 30px;
}

.sl-home-cta strong,
.sl-home-cta span {
    display: block;
}

.sl-home-cta strong {
    font-size: var(--sl-title);
    line-height: 1.1;
}

.sl-home-cta span {
    color: var(--sl-muted);
}

.sl-feature-card:nth-child(2) > img {
    object-position: center;
}

.sl-feature-card:nth-child(3) > img {
    object-position: center;
}

.sl-section {
    padding: 78px var(--sl-gutter);
    border-top: 1px solid var(--sl-line);
}

.sl-split,
.sl-lead-section,
.sl-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(340px, 1.14fr);
    gap: 60px;
}

.sl-lead-section {
    width: 100%;
    grid-template-columns: minmax(320px, .78fr) minmax(560px, 1.22fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    margin-inline: auto;
    border-top: 1px solid var(--sl-line);
    border-bottom: 1px solid var(--sl-line);
    background: #fff;
    padding: 0 var(--sl-gutter);
}

.sl-lead-copy {
    display: grid;
    min-height: 520px;
    align-content: space-between;
    gap: 34px;
    border-right: 1px solid var(--sl-line);
    padding: 42px 44px;
}

.sl-lead-copy-compact {
    min-height: auto;
    align-content: start;
    gap: 14px;
}

.sl-lead-copy-compact p:not(.sl-eyebrow) {
    max-width: 420px;
    color: var(--sl-muted);
}

.sl-lead-copy > div:first-child p:not(.sl-eyebrow) {
    max-width: 440px;
}

.sl-lead-points {
    display: grid;
    gap: 1px;
    border-top: 1px solid var(--sl-line);
    border-bottom: 1px solid var(--sl-line);
}

.sl-lead-points span {
    display: block;
    padding: 15px 0 15px 28px;
    color: var(--sl-muted);
    position: relative;
}

.sl-lead-points span::before {
    position: absolute;
    left: 0;
    top: 24px;
    width: 10px;
    height: 2px;
    background: var(--sl-red);
    content: "";
}

.sl-lead-contact {
    display: grid;
    gap: 4px;
}

.sl-lead-contact span {
    color: var(--sl-muted);
    font-weight: 700;
}

.sl-lead-contact strong {
    font-size: var(--sl-title);
    line-height: 1.1;
}

.sl-contact-list {
    display: grid;
    align-content: start;
    gap: 24px;
}

.sl-contact-section {
    align-items: stretch;
    padding-top: 108px;
}

.sl-contact-copy {
    display: grid;
    align-content: start;
    gap: 46px;
}

.sl-contact-intro {
    display: grid;
    gap: 22px;
}

.sl-contact-intro h1 {
    margin: 0;
    color: var(--sl-ink);
    font-size: var(--sl-title);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.sl-contact-intro p:not(.sl-eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--sl-muted);
    font-size: var(--sl-text);
    line-height: 1.7;
}

.sl-contact-list > p {
    margin: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--sl-line);
    color: var(--sl-muted);
}

.sl-contact-list strong {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sl-ink);
    font-size: var(--sl-title);
    line-height: 1.1;
}

.sl-contact-list a {
    color: var(--sl-ink);
    font-weight: 700;
}

.sl-contact-copy .sl-prose {
    color: var(--sl-muted);
}

.sl-contact-map {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border: 1px solid var(--sl-line);
    background: #eef1f3;
}

.sl-contact-map iframe,
.sl-contact-map ymaps {
    width: 100%;
    height: 100%;
}

.sl-contact-map iframe {
    display: block;
    min-height: 620px;
    border: 0;
    filter: grayscale(.18);
}

.sl-production-photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-self: center;
}

.sl-production-photo-grid img {
    display: block;
    width: 100%;
    height: 280px;
    filter: saturate(.42) brightness(1.08) contrast(.82);
    object-fit: cover;
    object-position: center;
}

.sl-production-story {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    padding-top: 62px;
    padding-bottom: 62px;
}

.sl-production-copy {
    max-width: 760px;
}

.sl-production-copy h2 {
    margin-bottom: 28px;
}

.sl-about-story {
    display: grid;
    gap: 34px;
}

.sl-about-story-layout {
    display: grid;
    grid-template-columns: minmax(280px, .42fr) minmax(0, 1.58fr);
    gap: 60px;
    align-items: stretch;
}

.sl-about-story-layout > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
}

.sl-facts {
    display: grid;
    width: 100%;
    margin-inline: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--sl-line);
    border-bottom: 1px solid var(--sl-line);
    background: #fff;
    color: var(--sl-ink);
    padding-inline: var(--sl-gutter);
}

.sl-facts div {
    min-height: 142px;
    padding: 26px;
    border-right: 1px solid var(--sl-line);
}

.sl-facts div:last-child {
    border-right: 0;
}

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

.sl-section-head > a {
    color: var(--sl-red);
    font-weight: 700;
}

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

.sl-card {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 390px;
    grid-template-rows: 220px auto 1fr auto;
    gap: 14px;
    background: #fff;
    padding-bottom: 26px;
}

.sl-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sl-card h2,
.sl-card h3 {
    margin: 8px 26px 0;
    font-size: var(--sl-title);
    line-height: 1.16;
}

.sl-card p,
.sl-card-link {
    margin-inline: 26px;
}

.sl-card-link {
    margin-top: 10px;
}

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

.sl-product-compact-card {
    display: grid;
    min-height: 148px;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--sl-line);
    padding: 22px;
}

.sl-product-compact-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    overflow: hidden;
    background: var(--sl-steel);
}

.sl-product-compact-icon img {
    display: block;
    width: 84%;
    height: 84%;
    object-fit: contain;
}

.sl-product-compact-icon > span {
    display: block;
    width: 36px;
    height: 36px;
    border: 4px solid var(--sl-line);
    border-top-color: var(--sl-red);
}

.sl-product-compact-body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.sl-product-compact-body strong {
    font-size: var(--sl-text);
    line-height: 1.25;
}

.sl-product-compact-body span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--sl-muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sl-product-compact-arrow {
    color: var(--sl-red);
    font-size: var(--sl-title);
    line-height: 1;
}

.sl-dark-band {
    display: grid;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
    gap: 50px;
    border-top: 1px solid var(--sl-line);
    border-bottom: 1px solid var(--sl-line);
    background: #fff;
    color: var(--sl-ink);
    padding-inline: var(--sl-gutter);
}

.sl-dark-band .sl-eyebrow {
    color: var(--sl-muted);
}

.sl-dark-band p,
.sl-dark-band h2,
.sl-dark-band span,
.sl-dark-band a {
    color: inherit;
}

.sl-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: start;
}

.sl-industries span {
    border: 1px solid var(--sl-line);
    background: var(--sl-steel);
    padding: 12px 16px;
}

.sl-news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sl-news-list a {
    display: grid;
    overflow: hidden;
    min-height: 330px;
    grid-template-rows: 190px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--sl-line);
}

.sl-news-list img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.sl-news-list span {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px 24px 24px;
}

.sl-news-list time {
    color: var(--sl-muted);
    font-weight: 700;
}

.sl-news-list strong {
    font-size: var(--sl-text);
    line-height: 1.35;
}

.sl-news-list em {
    color: var(--sl-muted);
    font-style: normal;
    line-height: 1.5;
}

.sl-empty-state {
    min-height: 220px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--sl-line);
}

.sl-empty-state strong {
    color: var(--sl-ink);
    font-size: var(--sl-title);
}

.sl-empty-state span {
    color: var(--sl-muted);
}

.sl-page-hero {
    padding: 70px var(--sl-gutter) 48px;
}

.sl-page-hero p {
    max-width: 780px;
    margin-top: 18px;
}

.sl-text-page {
    width: min(calc(100% - 88px), var(--sl-max));
    max-width: var(--sl-max);
    margin-inline: auto;
    border: 1px solid var(--sl-line);
    background: #fff;
    padding: 48px 56px;
}

.sl-text-page > * {
    max-width: 920px;
}

.sl-text-page,
.sl-text-page p,
.sl-text-page li {
    color: var(--sl-muted);
    opacity: 1;
}

.sl-text-page h2 {
    margin: 34px 0 14px;
    color: var(--sl-ink);
    font-size: var(--sl-title);
    line-height: 1.2;
}

.sl-text-page h2:first-child {
    margin-top: 0;
}

.sl-text-page ul,
.sl-text-page ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.sl-text-page li + li {
    margin-top: 8px;
}

.sl-text-page a {
    color: var(--sl-ink);
    text-decoration-color: var(--sl-red);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.sl-text-page p:last-child,
.sl-text-page ul:last-child,
.sl-text-page ol:last-child {
    margin-bottom: 0;
}

.sl-detail-hero {
    position: relative;
    isolation: isolate;
    align-items: center;
    min-height: 430px;
    overflow: hidden;
    grid-template-columns: minmax(0, 620px);
    gap: 0;
    margin-top: -1px;
    padding: 52px var(--sl-gutter);
    background: #f2f4f5;
}

.sl-detail-hero-secondary {
    grid-template-columns: minmax(0, 620px);
}

.sl-detail-hero:not(.sl-detail-hero-image) {
    min-height: 0;
}

.sl-detail-hero-image {
    background-color: #f2f4f5;
}

.sl-detail-hero-image::before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: var(--sl-gutter);
    bottom: 0;
    width: min(50vw, 660px);
    content: "";
    background-image: var(--sl-detail-bg-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 126%;
    pointer-events: none;
}

.sl-detail-hero-image::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: var(--sl-gutter);
    bottom: 0;
    width: min(50vw, 660px);
    content: "";
    background:
        linear-gradient(90deg, #f2f4f5 0%, rgba(242, 244, 245, .82) 14%, rgba(242, 244, 245, 0) 34%, rgba(242, 244, 245, 0) 62%, rgba(242, 244, 245, .82) 86%, #f2f4f5 100%);
    pointer-events: none;
}

.sl-detail-hero > div {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.sl-prose p {
    margin: 0 0 18px;
}

.sl-prose h3 {
    margin: 32px 0 14px;
    color: var(--sl-ink);
    font-size: var(--sl-title);
    line-height: 1.2;
}

.sl-prose img,
.sl-prose table,
.sl-prose iframe {
    max-width: 100%;
}

.sl-prose img {
    display: block;
    height: auto;
}

.sl-prose table {
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

.sl-prose ul {
    margin: 0 0 22px;
    padding-left: 20px;
}

.sl-prose li + li {
    margin-top: 8px;
}

.sl-product-gallery {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sl-product-gallery-wide {
    grid-template-columns: 1fr;
}

.sl-product-gallery figure {
    margin: 0;
}

.sl-gallery-placeholder span {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    place-items: center;
    border: 1px dashed #c6cdd3;
    background: #f6f7f8;
    color: var(--sl-muted);
    font-weight: 700;
}

.sl-product-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sl-product-gallery-wide img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.sl-product-gallery figcaption {
    margin-top: 8px;
    opacity: .72;
}

.sl-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    background: #fff;
    padding: 26px;
}

.sl-form label,
.sl-form span {
    display: block;
}

.sl-form span {
    margin-bottom: 6px;
    opacity: .72;
}

.sl-form input,
.sl-form textarea {
    width: 100%;
    border: 1px solid var(--sl-line);
    padding: 12px;
    font: inherit;
}

.sl-form-wide,
.sl-form button,
.sl-form-success,
.sl-form-error {
    grid-column: 1 / -1;
}

.sl-form textarea {
    min-height: 130px;
    resize: vertical;
}

.sl-form-success {
    border-left: 4px solid var(--sl-red);
    background: #f4f5f6;
    padding: 12px;
}

.sl-form-error {
    color: var(--sl-red);
    font-weight: 700;
}

.sl-form .sl-form-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--sl-muted);
}

.sl-form .sl-form-consent input {
    width: 18px;
    height: 18px;
    margin: 4px 0 0;
    accent-color: var(--sl-red);
}

.sl-form .sl-form-consent span {
    margin-bottom: 0;
    opacity: 1;
}

.sl-form .sl-form-consent a {
    color: var(--sl-ink);
    border-bottom: 1px solid var(--sl-line);
}

.sl-lead-section .sl-form {
    align-content: start;
    padding: 42px 44px;
}

.sl-lead-section .sl-form textarea {
    min-height: 150px;
}

.sl-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 44px var(--sl-gutter);
    border-top: 1px solid var(--sl-line);
}

.sl-footer-brand {
    min-width: 0;
    margin-bottom: 14px;
}

.sl-footer p {
    margin: 0 0 8px;
    opacity: .72;
}

@media (max-width: 1040px) {
    :root {
        --sl-gutter: 32px;
        --sl-hero: 46px;
        --sl-title: 28px;
    }

    .sl-header,
    .sl-home .sl-header {
        position: relative;
        left: auto;
        width: 100%;
        transform: none;
        grid-template-columns: 1fr auto;
        gap: 18px 24px;
        background: var(--sl-paper);
        color: var(--sl-ink);
        padding-inline: var(--sl-gutter);
    }

    .sl-logo {
        min-width: 0;
    }

    .sl-header-contact {
        grid-template-columns: 46px auto;
        gap: 12px;
    }

    .sl-phone-icon {
        width: 46px;
        height: 46px;
    }

    .sl-phone-icon svg {
        width: 23px;
        height: 23px;
    }

    .sl-phone-copy strong {
        font-size: 17px;
    }

    .sl-phone-copy small {
        font-size: 12px;
    }

    .sl-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .sl-nav::-webkit-scrollbar {
        display: none;
    }

    .sl-home-hero-inner,
    .sl-detail-hero,
    .sl-split,
    .sl-dark-band {
        grid-template-columns: 1fr;
    }

    .sl-contact-section {
        padding-top: 64px;
    }

    .sl-contact-map,
    .sl-contact-map iframe {
        min-height: 420px;
    }

    .sl-detail-hero {
        min-height: 410px;
        gap: 0;
        padding: 46px var(--sl-gutter);
    }

    .sl-about-story-layout {
        grid-template-columns: minmax(240px, .42fr) minmax(0, 1.58fr);
        gap: 44px;
    }

    .sl-production-photo-grid {
        width: min(100%, 520px);
    }

    .sl-production-photo-grid img {
        height: 230px;
    }

    .sl-lead-section {
        grid-template-columns: 1fr;
    }

    .sl-lead-copy {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--sl-line);
    }

    .sl-home-hero {
        width: 100%;
    }

    .sl-home-hero-inner {
        width: 100%;
        padding: 54px var(--sl-gutter) 180px;
        grid-template-columns: minmax(0, 1fr);
    }

    .sl-hero-media {
        min-height: 360px;
    }

    .sl-hero-media img {
        height: 360px;
    }

    .sl-card-grid,
    .sl-feature-grid,
    .sl-product-compact-grid,
    .sl-product-gallery,
    .sl-news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sl-hero-statline div:nth-child(2) {
        border-right: 0;
    }

    .sl-home-cta {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .sl-home-cta .sl-btn {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    :root {
        --sl-gutter: 14px;
        --sl-hero: 38px;
        --sl-title: 25px;
        --sl-text: 15px;
    }

    .sl-header,
    .sl-footer,
    .sl-section,
    .sl-page-hero,
    .sl-detail-hero,
    .sl-feature-grid,
    .sl-facts {
        width: 100%;
    }

    .sl-text-page {
        width: min(calc(100% - 28px), var(--sl-max));
        padding: 28px 22px;
    }

    .sl-header {
        gap: 10px 14px;
        min-height: 76px;
        padding: 10px 14px;
    }

    .sl-about-story-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .sl-logo {
        min-width: 0;
    }

    .sl-logo-mark {
        width: 40px;
        height: 40px;
    }

    .sl-logo-text strong {
        font-size: 14px;
    }

    .sl-logo-text small {
        font-size: 9px;
    }

    .sl-header-contact {
        grid-template-columns: 40px;
        justify-items: end;
        gap: 0;
    }

    .sl-phone-icon {
        width: 40px;
        height: 40px;
        border-radius: 7px;
    }

    .sl-phone-icon svg {
        width: 20px;
        height: 20px;
    }

    .sl-phone-copy {
        display: none;
    }

    .sl-home-hero {
        width: 100%;
        min-height: auto;
    }

    .sl-home-hero-inner {
        width: 100%;
        padding: 44px var(--sl-gutter);
        gap: 32px;
    }

    .sl-hero-statline {
        position: static;
        width: 100%;
        margin-top: 28px;
    }

    .sl-hero-copy {
        padding-left: 0;
    }

    .sl-hero-copy::before {
        bottom: 0;
    }

    .sl-actions {
        display: grid;
    }

    .sl-hero-statline,
    .sl-facts,
    .sl-feature-grid,
    .sl-card-grid,
    .sl-product-compact-grid,
    .sl-news-list,
    .sl-production-photo-grid,
    .sl-product-gallery,
    .sl-footer {
        grid-template-columns: 1fr;
    }

    .sl-home-showcase {
        padding: 20px var(--sl-gutter) 54px;
    }

    .sl-home-cta {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .sl-home-cta .sl-btn {
        grid-column: auto;
        justify-self: stretch;
    }

    .sl-production-photo-grid {
        width: 100%;
    }

    .sl-production-photo-grid img {
        height: 210px;
    }

    .sl-hero-statline div,
    .sl-facts div {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 20, 20, .16);
        padding-left: 20px;
        padding-right: 20px;
    }

    .sl-hero-media {
        min-height: 280px;
    }

    .sl-hero-media img {
        height: 280px;
    }

    .sl-about-story-layout > img {
        height: 420px;
    }

    .sl-feature-card {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .sl-feature-rule {
        margin-left: 24px;
    }

    .sl-feature-card > h2,
    .sl-feature-card > p,
    .sl-feature-card > .sl-card-link {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sl-feature-card:first-child > h2,
    .sl-feature-card:first-child > p,
    .sl-feature-card:first-child > .sl-card-link {
        padding-left: 24px;
    }

    .sl-feature-card:first-child .sl-feature-rule {
        margin-left: 24px;
    }

    .sl-feature-card > h2 {
        padding-top: 24px;
    }

    .sl-feature-card > img {
        position: relative;
        right: auto;
        bottom: auto;
        grid-column: 1;
        grid-row: 3;
        width: min(calc(100% - 48px), 240px);
        aspect-ratio: 1 / 1;
        height: auto;
        min-height: 0;
        justify-self: end;
        margin: 18px 24px 0 0;
        padding: 0;
        transform: none;
    }

    .sl-feature-card > .sl-card-link {
        grid-row: 4;
        padding-bottom: 24px;
    }

    .sl-product-compact-card {
        min-height: 120px;
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 14px;
        padding: 18px;
    }

    .sl-product-compact-icon {
        width: 58px;
        height: 58px;
    }

    .sl-news-list a {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

    .sl-lead-copy,
    .sl-lead-section .sl-form {
        padding: 26px 24px;
    }

    .sl-contact-map,
    .sl-contact-map iframe {
        min-height: 300px;
        height: 260px;
    }

    .sl-detail-hero {
        min-height: 390px;
        gap: 0;
        padding: 38px 24px;
    }

}
