:root {
    --ink: #1e2628;
    --ink-soft: #4f5b5e;
    --paper: #f5f3ee;
    --white: #ffffff;
    --line: #d9d5cb;
    --accent: #b9852d;
    --accent-dark: #8f651f;
    --teal: #1f6f66;
    --teal-dark: #15544d;
    --charcoal: #2b3234;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.55;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--charcoal);
    color: var(--white);
}

.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    border-radius: 6px;
}

.brand-logo {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: #e6e9e8;
    font-size: 15px;
    font-weight: 600;
}

.main-nav a:hover {
    color: #ffd78a;
}

.locale-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
}

.locale-switcher a {
    padding: 3px 7px;
    border-radius: 4px;
    color: #c8cecf;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.locale-switcher a:hover {
    color: #ffd78a;
}

.locale-switcher a.is-current {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: min(78vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

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

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

.hero-overlay {
    background: linear-gradient(90deg, rgba(17, 22, 23, 0.88) 0%, rgba(17, 22, 23, 0.55) 55%, rgba(17, 22, 23, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 110px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero .container > p:not(.eyebrow) {
    max-width: 640px;
    margin: 0 0 28px;
    color: #e9e6de;
    font-size: clamp(17px, 2vw, 21px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.band {
    padding: 76px 0;
}

.products {
    background: var(--white);
}

.factory {
    background: var(--charcoal);
    color: var(--white);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: 0;
}

.row-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    max-width: none;
}

.text-link {
    color: var(--teal);
    font-weight: 700;
    white-space: nowrap;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.category-tile {
    display: flex;
    flex-direction: column;
    min-height: 170px;
    justify-content: space-between;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-index {
    color: var(--accent);
    font-weight: 700;
}

.category-name {
    font-size: 20px;
    font-weight: 700;
}

.category-count {
    color: var(--ink-soft);
    font-size: 14px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(40, 47, 50, 0.14);
    transform: translateY(-2px);
}

.product-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5e4df;
}

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

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-category {
    margin-bottom: 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
}

.product-card p {
    margin: 0 0 14px;
    color: var(--ink-soft);
    font-size: 14px;
}

.variant-count {
    margin-top: auto;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
}

.factory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

.factory-copy p:not(.eyebrow) {
    color: #d7d2c8;
    font-size: 17px;
}

.factory-copy .eyebrow {
    color: #efc875;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.stats div {
    border-top: 2px solid var(--accent);
    padding-top: 10px;
}

.stats strong {
    display: block;
    font-size: 24px;
}

.stats span {
    color: #b8b6af;
    font-size: 13px;
}

.factory-visual {
    border-radius: 8px;
    overflow: hidden;
}

.factory-visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.page-hero {
    padding: 64px 0 44px;
    background: var(--charcoal);
    color: var(--white);
}

.page-lede,
.product-lede {
    max-width: 720px;
    color: #c5cbcb;
    font-size: 17px;
}

.catalog {
    background: var(--white);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 34px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-title {
    margin: 0 0 4px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.catalog-sidebar a {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.catalog-sidebar a.active,
.catalog-sidebar a:hover {
    background: #e7f0ee;
    color: var(--teal-dark);
}

.empty {
    padding: 28px;
    background: #f1efe9;
    color: var(--ink-soft);
    border-radius: 8px;
}

.detail {
    background: var(--paper);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--ink-soft);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--teal);
}

.breadcrumb a::after {
    content: "/";
    margin-left: 10px;
    color: #a7aaa8;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: start;
}

.detail-media {
    position: sticky;
    top: 92px;
}

.detail-media > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.detail-info h1 {
    margin-bottom: 16px;
}

.product-lede {
    color: var(--ink-soft);
}

.rich-text {
    max-width: 760px;
    color: var(--ink-soft);
    white-space: pre-line;
}

.meta-line {
    margin: 20px 0;
    color: var(--ink-soft);
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.cert-list span {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.variants {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.related {
    background: var(--paper);
}

.table-scroll {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.spec-table td {
    font-size: 15px;
}

.spec-table small {
    display: block;
    color: var(--accent-dark);
    font-weight: 700;
}

.custom-spec-row td {
    background: #fbf8f1;
}

.variant-photo-row td {
    background: #f7faf9;
}

.variant-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 6px 0;
}

.variant-photos img {
    width: 86px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--line);
}

.custom-spec-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.custom-spec-list span {
    font-size: 14px;
}

.custom-spec-list strong {
    color: var(--ink);
}

.custom-spec-section {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.custom-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.custom-spec-item {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.custom-spec-item strong {
    display: block;
    margin-bottom: 6px;
}

.custom-spec-item span {
    color: var(--ink-soft);
}

@media (max-width: 640px) {
    .custom-spec-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: #1b2123;
    color: #d9dbd8;
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 34px;
}

.footer-brand {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.footer-heading {
    margin: 0 0 12px;
    color: var(--white);
    font-weight: 700;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.footer-grid a:hover {
    color: #ffd78a;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #394143;
    color: #8e9899;
    font-size: 13px;
}

.pagination nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 36px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
}

.pagination .active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .factory-grid,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-media {
        position: static;
    }

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

    .catalog-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-title {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 20px 22px;
        background: var(--charcoal);
        gap: 14px;
    }

    .main-nav.open {
        display: flex;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(17, 22, 23, 0.2) 0%, rgba(17, 22, 23, 0.88) 78%);
    }

    .band {
        padding: 56px 0;
    }

    .category-grid,
    .product-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 130px;
    }

    .row-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .factory-visual img {
        height: 280px;
    }
}

.form-section {
    background: var(--white);
}

.form-layout {
    max-width: 920px;
}

.alert {
    margin-bottom: 26px;
    padding: 16px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.alert.success {
    background: #dff2e9;
    color: #0b5c3e;
}

.sample-alert {
    margin-bottom: 26px;
    padding: 16px 18px;
    border: 1px solid #e5b45e;
    border-radius: 6px;
    background: #fff6e6;
    color: #7c5300;
    font-weight: 700;
}

.selected-product {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: end;
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.selected-product h2 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: 0;
}

.selected-product p {
    margin: 0;
    color: var(--ink-soft);
}

.selected-variants label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 13px;
}

.selected-variants select {
    width: 100%;
}

.inquiry-form fieldset {
    margin: 0 0 30px;
    padding: 0;
    border: 0;
}

.inquiry-form legend {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 0;
    border-bottom: 2px solid var(--charcoal);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid #b8bcba;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 2px solid var(--teal);
    outline-offset: 1px;
}

.field-error {
    color: #b3261e;
    font-size: 13px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 640px) {
    .selected-product {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .field-wide {
        grid-column: auto;
    }
}

.intro-section {
    background: var(--white);
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.content-split h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.18;
    letter-spacing: 0;
}

.content-split p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 16px;
}

.split-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.process {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.process-step {
    padding-top: 16px;
    border-top: 3px solid var(--accent);
}

.process-step > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.process-step h3,
.strength-item h3,
.contact-item h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    letter-spacing: 0;
}

.process-step p,
.strength-item p,
.contact-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.strength-item {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.factory-cta {
    background: var(--charcoal);
    color: var(--white);
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.cta-band h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: 0;
}

.cta-band p:not(.eyebrow) {
    margin: 0;
    color: #d3d1ca;
}

.cta-band .eyebrow {
    color: #efc875;
}

.values {
    background: var(--white);
}

.markets {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.market-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.market-list li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 700;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

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

.contact-item {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.contact-action h2 {
    margin: 0 0 14px;
    font-size: 32px;
    letter-spacing: 0;
}

.contact-action p:not(.eyebrow) {
    margin: 0 0 24px;
    color: var(--ink-soft);
    font-size: 16px;
}

@media (max-width: 900px) {
    .content-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .split-media img {
        height: 260px;
    }

    .process-grid,
    .strength-grid,
    .contact-cards,
    .market-list {
        grid-template-columns: 1fr;
    }
}

.blog-section {
    background: var(--white);
}

.blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-category-link {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 14px;
}

.blog-category-link.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.featured-blog {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 0;
    margin-bottom: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper);
}

.featured-blog-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.featured-blog-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.featured-blog-copy h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0;
}

.featured-blog-copy p:not(.eyebrow) {
    margin: 0 0 18px;
    color: var(--ink-soft);
}

.read-more {
    color: var(--teal);
    font-weight: 800;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper);
}

.blog-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.blog-card h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: 0;
}

.blog-card p {
    margin: 0 0 16px;
    color: var(--ink-soft);
    font-size: 14px;
}

.read-more {
    margin-top: auto;
}

.article {
    background: var(--white);
    padding: 50px 0 30px;
}

.article-wrap {
    max-width: 860px;
}

.article-head {
    margin-bottom: 30px;
}

.article-category {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.article-head h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    letter-spacing: 0;
}

.article-meta {
    margin: 0;
    color: var(--ink-soft);
}

.article-cover {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 34px;
}

.article-body {
    color: #333d40;
    font-size: 17px;
    line-height: 1.8;
}

.article-cta {
    margin-top: 44px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.article-cta h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: 0;
}

.article-cta p {
    margin: 0 0 20px;
    color: var(--ink-soft);
}

.related-blog {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .featured-blog,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-blog-media img {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    .featured-blog-copy {
        padding: 26px;
    }

    .article-cover {
        height: 260px;
    }
}

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.gallery-thumb {
    width: 82px;
    height: 62px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

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

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

.download-band {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.downloads-section {
    background: var(--white);
}

.download-group {
    margin-bottom: 38px;
}

.download-group-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--charcoal);
}

.download-group-head h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0;
}

.download-group-head span {
    color: var(--teal);
    font-weight: 700;
}

.doc-list {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.doc-row {
    display: grid;
    grid-template-columns: 1fr 90px 100px;
    align-items: center;
    gap: 16px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.doc-row:last-child {
    border-bottom: 0;
}

.doc-title {
    font-weight: 700;
}

.doc-type {
    color: var(--ink-soft);
    font-size: 13px;
}

.doc-row .read-more {
    text-align: right;
}

@media (max-width: 640px) {
    .doc-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .doc-row .read-more {
        text-align: left;
    }

    .download-group-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

.videos-section {
    background: var(--white);
}

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

.video-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

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

.play-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(20, 24, 25, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.video-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.video-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
}

.video-card p {
    margin: 0 0 16px;
    color: var(--ink-soft);
    font-size: 14px;
}

.video-detail {
    background: var(--white);
}

.video-player-wrap {
    max-width: 980px;
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-description h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: 0;
}

.video-description p:not(.eyebrow) {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--ink-soft);
    font-size: 17px;
}

.related-videos {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn-sample {
    background: var(--accent);
    color: var(--white);
}

.btn-sample:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.sample-link {
    color: var(--accent-dark);
    font-weight: 800;
    white-space: nowrap;
}

.sample-link:hover {
    color: var(--teal);
}

.home-product-carousel {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 12px;
    align-items: center;
}

.home-product-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px;
}

.home-product-track::-webkit-scrollbar {
    display: none;
}

.home-product-track .product-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.carousel-nav {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.carousel-nav:hover {
    border-color: var(--teal);
    color: var(--teal);
}

@media (max-width: 900px) {
    .home-product-track .product-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media (max-width: 640px) {
    .home-product-carousel {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-product-track .product-card {
        flex-basis: 86%;
    }

    .carousel-nav {
        position: static;
        justify-self: center;
    }
}

.cms-section {
    background: var(--white);
}

.cms-layout {
    max-width: 860px;
}

.cms-layout > p {
    margin: 0 0 22px;
    color: #333d40;
    font-size: 17px;
    line-height: 1.85;
}

.cms-cta {
    margin-top: 38px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.cms-cta h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: 0;
}

.cms-cta p {
    margin: 0 0 20px;
    color: var(--ink-soft);
}

.locale-switcher {
    max-width: 280px;
    overflow-x: auto;
    scrollbar-width: none;
}

.locale-switcher::-webkit-scrollbar {
    display: none;
}

html[dir="rtl"] .hero-overlay {
    background: linear-gradient(to left, rgba(17, 22, 23, 0.88) 0%, rgba(17, 22, 23, 0.55) 55%, rgba(17, 22, 23, 0.25) 100%);
}

html[dir="rtl"] .breadcrumb a::after {
    margin-left: 0;
    margin-right: 10px;
}

html[dir="rtl"] .spec-table th,
html[dir="rtl"] .spec-table td {
    text-align: right;
}

html[dir="rtl"] .doc-row .read-more {
    text-align: left;
}

html[dir="rtl"] .play-badge {
    left: auto;
    right: 12px;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .product-category,
html[dir="rtl"] .sidebar-title,
html[dir="rtl"] .play-badge {
    text-transform: none;
}
