* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    background: #f3f5f4;
    color: #152016;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: linear-gradient(180deg, rgba(7, 14, 8, 0.46) 0%, rgba(7, 14, 8, 0) 100%);
    border-bottom: 0;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(245, 247, 246, 0.96);
    border-bottom: 1px solid rgba(21, 32, 22, 0.12);
    box-shadow: 0 12px 34px rgba(10, 18, 12, 0.08);
    backdrop-filter: blur(12px);
}

.solid-header-page .site-header {
    background: rgba(245, 247, 246, 0.96);
    border-bottom: 1px solid rgba(21, 32, 22, 0.12);
    box-shadow: 0 12px 34px rgba(10, 18, 12, 0.08);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 70px;
    padding: 0;
}

.navbar-toggler {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: background-color 180ms ease;
}

.site-header.is-scrolled .navbar-toggler-line,
.site-header.is-open .navbar-toggler-line,
.solid-header-page .site-header .navbar-toggler-line {
    background: #0d1710;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.navbar-brand {
    position: relative;
    width: 148px;
    height: 54px;
}

.brand-logo {
    display: block;
    width: auto;
    height: 54px;
    object-fit: contain;
}

.navbar-brand .brand-logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: opacity 180ms ease;
}

.navbar-brand .brand-logo-dark,
.site-header.is-scrolled .navbar-brand .brand-logo-light,
.site-header.is-open .navbar-brand .brand-logo-light,
.solid-header-page .site-header .navbar-brand .brand-logo-light {
    opacity: 0;
}

.site-header.is-scrolled .navbar-brand .brand-logo-dark,
.site-header.is-open .navbar-brand .brand-logo-dark,
.solid-header-page .site-header .navbar-brand .brand-logo-dark {
    opacity: 1;
}

.navbar-light .navbar-brand {
    color: #fff;
    transition: color 180ms ease;
}

.footer-brand,
.site-header.is-scrolled .navbar-light .navbar-brand,
.site-header.is-open .navbar-light .navbar-brand,
.solid-header-page .site-header .navbar-light .navbar-brand {
    color: #0d1710;
}

.navbar-nav {
    gap: 40px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 500;
    padding: 26px 0 24px;
    border-bottom: 3px solid transparent;
    transition: color 180ms ease, border-color 180ms ease;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.site-header.is-scrolled .navbar-nav .nav-link,
.site-header.is-open .navbar-nav .nav-link,
.solid-header-page .site-header .navbar-nav .nav-link {
    color: #1f2923;
}

.site-header.is-scrolled .navbar-nav .nav-link.active,
.site-header.is-scrolled .navbar-nav .nav-link:hover,
.site-header.is-open .navbar-nav .nav-link.active,
.site-header.is-open .navbar-nav .nav-link:hover,
.solid-header-page .site-header .navbar-nav .nav-link.active,
.solid-header-page .site-header .navbar-nav .nav-link:hover {
    color: #0d1710;
    border-bottom-color: #0d1710;
}

.btn {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    padding: 13px 23px;
}

.btn-dark {
    background: #07140c;
    border-color: #07140c;
}

.site-header:not(.is-scrolled):not(.is-open) .btn-dark {
    color: #07140c;
    background: #fff;
    border-color: #fff;
}

.solid-header-page .site-header:not(.is-scrolled):not(.is-open) .btn-dark {
    color: #fff;
    background: #07140c;
    border-color: #07140c;
}

.mobile-nav {
    width: min(86vw, 360px);
    background: #f5f7f6;
    border-left: 1px solid rgba(21, 32, 22, 0.12);
    z-index: 1050;
}

.mobile-nav .offcanvas-header {
    align-items: center;
    min-height: 86px;
    padding: 24px;
    border-bottom: 1px solid rgba(21, 32, 22, 0.1);
}

.mobile-nav-brand {
    display: inline-flex;
    align-items: center;
    color: #0d1710;
    font-size: 24px;
    font-weight: 800;
}

.mobile-nav-close {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(21, 32, 22, 0.2);
    border-radius: 8px;
    background: transparent;
}

.mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #0d1710;
    border-radius: 999px;
}

.mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 28px 24px;
}

.mobile-nav .navbar-nav {
    gap: 0;
    padding: 0;
}

.mobile-nav .nav-link {
    position: relative;
    display: inline-block;
    color: #1f2923;
    font-size: 18px;
    font-weight: 600;
    padding: 11px 0 13px;
    border-bottom: 0;
}

.mobile-nav .nav-link.active,
.mobile-nav .nav-link:hover {
    color: #0d1710;
}

.mobile-nav .nav-link.active {
    padding-left: 0;
}

.mobile-nav .nav-link.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #0d1710;
    border-radius: 999px;
}

.mobile-nav .btn {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
    font-size: 14px;
}

.btn-brand {
    color: #fff;
    background: #385018;
    border-color: #385018;
}

.btn-brand:hover {
    color: #fff;
    background: #284010;
    border-color: #284010;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #0f1710;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide picture,
.hero-slide-image {
    display: block;
    width: 100%;
    height: 100%;
}

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

.hero-slide-image {
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: var(--hero-overlay-opacity, 0.65);
    background:
        linear-gradient(90deg, rgba(7, 14, 8, 0.86) 0%, rgba(7, 14, 8, 0.58) 42%, rgba(7, 14, 8, 0.26) 100%),
        linear-gradient(0deg, rgba(7, 14, 8, 0.52), rgba(7, 14, 8, 0.08));
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding-top: 70px;
    color: #fff;
}

.eyebrow,
.section-label {
    color: #689038;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 680px;
    margin: 0 0 20px;
    font-size: clamp(34px, 4.1vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    overflow-wrap: break-word;
}

.hero-content p:not(.eyebrow) {
    max-width: 625px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 100%;
}

.scroll-cue {
    position: absolute;
    bottom: 42px;
    left: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: color 180ms ease;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    transition: border-color 180ms ease;
}

.scroll-cue i::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 999px;
    transform: translateX(-50%);
    animation: mouse-wheel 1.45s ease-in-out infinite;
    transition: background-color 180ms ease;
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    animation: scroll-arrow 1.45s ease-in-out infinite;
    transition: border-color 180ms ease;
}

.scroll-cue:hover {
    color: #c8e0a8;
}

.scroll-cue:hover i {
    border-color: #c8e0a8;
}

.scroll-cue:hover i::before {
    background: #c8e0a8;
}

.scroll-cue:hover i::after {
    border-color: #c8e0a8;
}

@keyframes mouse-wheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

@keyframes scroll-arrow {
    0%,
    100% {
        opacity: 0.35;
        transform: translate(-50%, -2px) rotate(45deg);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 3px) rotate(45deg);
    }
}

.section {
    padding: 104px 0;
}

.profile-section,
.process-section {
    background: #f8f9f8;
}

.product-section {
    background: #eef1f0;
}

.section h2,
.cta-panel h2 {
    margin: 0 0 18px;
    color: #0d1710;
    font-size: clamp(29px, 3.4vw, 43px);
    font-weight: 900;
    line-height: 1.08;
}

.section-copy,
.section-heading p,
.mini-card p,
.product-card p,
.process-item p,
.site-footer p,
.site-footer a {
    color: #67706a;
    font-size: 14px;
    line-height: 1.75;
}

.section-copy {
    margin-bottom: 32px;
}

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

.mini-card {
    min-height: 160px;
    padding: 26px;
    border: 1px solid #e0e4e1;
    border-radius: 6px;
    background: #fff;
}

.mini-icon {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid #cfd6d1;
    border-radius: 50%;
    color: #07140c;
    font-size: 11px;
    font-weight: 900;
}

.mini-card h3,
.product-card h3,
.process-item h3,
.site-footer h3 {
    color: #172119;
    font-size: 15px;
    font-weight: 800;
}

.profile-photo {
    position: relative;
}

.profile-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 28px 55px rgba(12, 21, 15, 0.18);
}

.experience-badge {
    position: absolute;
    bottom: -18px;
    left: -28px;
    width: 176px;
    padding: 25px 24px;
    color: #fff;
    background: #102016;
    border: 2px solid #07140c;
    border-radius: 5px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.experience-badge strong {
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 0.9;
}

.experience-badge span {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 52px;
}

.product-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
}

.product-body {
    padding: 24px;
}

.product-card p {
    min-height: 112px;
    margin-bottom: 20px;
}

.product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.product-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 14px;
    white-space: nowrap;
}

.product-actions .btn-outline-dark {
    min-width: 118px;
}

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

.product-section .product-actions .btn {
    width: 100%;
    min-height: 56px;
}

.process-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 48px;
}

.process-top h2 {
    max-width: 560px;
}

.process-top a {
    margin-top: 35px;
    color: #172119;
    font-size: 12px;
    font-weight: 800;
}

.process-item {
    position: relative;
    padding-top: 54px;
}

.process-item span {
    position: absolute;
    top: 0;
    left: 0;
    color: #dfe4e1;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.process-item h3 {
    margin-bottom: 16px;
}

.process-page {
    background: #f3f5f4;
}

.process-hero {
    position: relative;
    min-height: 64vh;
    min-height: 64svh;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.process-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 14, 8, 0.82) 0%, rgba(7, 14, 8, 0.54) 45%, rgba(7, 14, 8, 0.12) 100%),
        linear-gradient(0deg, rgba(7, 14, 8, 0.18), rgba(7, 14, 8, 0.06));
}

.process-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 64vh;
    min-height: 64svh;
    flex-direction: column;
    justify-content: center;
    padding-top: 86px;
    color: #fff;
}

.process-hero-content h1 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.04;
    overflow-wrap: break-word;
}

.process-hero-content p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.75;
}

.process-story-section {
    background: #f3f5f4;
}

.process-story-section .section-heading {
    margin-bottom: 88px;
}

.process-story-section .section-heading h2::after {
    content: "";
    display: block;
    width: 82px;
    height: 3px;
    margin: 24px auto 0;
    background: #07140c;
    border-radius: 999px;
}

.production-timeline {
    display: grid;
    gap: 110px;
}

.production-step {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(34px, 7vw, 96px);
}

.production-step-reverse .production-copy {
    order: 2;
}

.production-step-reverse .production-media {
    order: 1;
}

.production-copy {
    position: relative;
}

.production-copy h3 {
    margin: 0 0 16px;
    color: #0d1710;
    font-size: clamp(24px, 2.7vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.production-copy p {
    margin: 0 0 22px;
    color: #67706a;
    font-size: 15px;
    line-height: 1.75;
}

.step-number {
    position: absolute;
    top: -32px;
    right: 0;
    z-index: 0;
    color: rgba(21, 32, 22, 0.04);
    font-size: clamp(78px, 10vw, 150px);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.process-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-checklist li {
    position: relative;
    padding-left: 28px;
    color: #1f2923;
    font-size: 13px;
    font-weight: 700;
}

.process-checklist li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 2px solid #385018;
    border-radius: 50%;
}

.process-checklist li::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #385018;
    border-bottom: 2px solid #385018;
    transform: rotate(-45deg);
}

.production-media {
    margin: 0;
}

.production-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 45px rgba(12, 21, 15, 0.14);
}

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

.process-spec-grid div {
    min-height: 76px;
    padding: 15px 17px;
    border: 1px solid #cfd6d1;
    background: rgba(255, 255, 255, 0.52);
}

.process-spec-grid strong,
.process-spec-grid span,
.process-note strong,
.process-note span {
    display: block;
}

.process-spec-grid strong,
.process-note strong {
    color: #0d1710;
    font-size: 12px;
    font-weight: 900;
}

.process-spec-grid span,
.process-note span {
    margin-top: 5px;
    color: #67706a;
    font-size: 12px;
    line-height: 1.5;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.process-tags span {
    padding: 7px 11px;
    color: #fff;
    background: #203810;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.process-note {
    position: relative;
    padding: 17px 18px 17px 23px;
    border-left: 3px solid #385018;
    background: rgba(255, 255, 255, 0.54);
}

.process-cta-section {
    padding: 0;
    background: #0e2015;
}

.process-cta-panel {
    margin: 0;
    padding: clamp(72px, 9vw, 118px) 24px;
    color: #fff;
    background: transparent;
    text-align: center;
}

.process-cta-panel h2 {
    max-width: 880px;
    margin: 0 auto 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.08;
}

.process-cta-panel p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
}

.process-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.process-cta-actions .btn {
    min-width: 210px;
}

.insight-section {
    background: #f3f5f4;
}

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

.insight-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(21, 32, 22, 0.1);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.insight-image {
    display: block;
    overflow: hidden;
    background: #dfe4e3;
}

.insight-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    transition: transform 260ms ease;
}

.insight-empty-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    background: linear-gradient(135deg, #dfe4e3 0%, #eef2ef 100%);
}

.insight-card:hover .insight-image img {
    transform: scale(1.04);
}

.insight-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    color: #657069;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.insight-meta span + span::before {
    content: "/";
    margin-right: 10px;
    color: #9aa39d;
}

.insight-card h3 {
    margin: 0 0 14px;
    color: #0d1710;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
}

.insight-card h3 a:hover {
    color: #59666c;
}

.insight-card p {
    margin: 0 0 24px;
    color: #5d6760;
    font-size: 15px;
    line-height: 1.75;
}

.insight-link {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.article-pagination {
    margin-top: 54px;
}

.article-empty-state {
    max-width: 720px;
    margin: 0 auto;
}

.article-detail-page {
    background: #fff;
}

.article-hero {
    padding: 128px 0 78px;
    background: #f3f5f4;
    border-bottom: 1px solid rgba(21, 32, 22, 0.1);
}

.article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 52px;
    align-items: center;
}

.article-hero-copy {
    min-width: 0;
}

.article-hero-copy h1 {
    margin: 0 0 22px;
    color: #0d1710;
    font-size: clamp(38px, 4.6vw, 66px);
    font-weight: 900;
    line-height: 1.06;
}

.article-hero-copy p {
    margin: 0;
    color: #4f5a53;
    font-size: 18px;
    line-height: 1.78;
}

.article-hero-image {
    margin: 0;
    overflow: hidden;
    background: #dfe4e3;
    border-radius: 8px;
}

.article-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
}

.article-hero-empty-image {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    background: linear-gradient(135deg, #dfe4e3 0%, #eef2ef 100%);
}

.article-content-section {
    background: #fff;
}

.article-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 62px;
    align-items: start;
}

.article-main-column {
    min-width: 0;
}

.article-content {
    max-width: 820px;
}

.article-content p {
    margin: 0 0 26px;
    color: #27312b;
    font-size: 18px;
    line-height: 1.9;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 42px 0 18px;
    color: #0d1710;
    font-weight: 900;
    line-height: 1.22;
}

.article-content h2 {
    font-size: 38px;
}

.article-content h3 {
    font-size: 30px;
}

.article-content h4 {
    font-size: 22px;
}

.article-content ul,
.article-content ol {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    padding-left: 24px;
    color: #27312b;
    font-size: 18px;
    line-height: 1.8;
}

.article-content li::marker {
    color: #385018;
    font-weight: 900;
}

.article-content a {
    color: #203810;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content figure {
    margin: 38px 0;
}

.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content blockquote {
    margin: 36px 0;
    padding: 22px 26px;
    border-left: 4px solid #385018;
    color: #27312b;
    background: #f3f5f4;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.7;
}

.article-content table {
    width: 100%;
    margin: 34px 0;
    border-collapse: collapse;
    color: #27312b;
    font-size: 15px;
}

.article-content th,
.article-content td {
    padding: 13px 15px;
    border: 1px solid #cfd6d1;
    text-align: left;
    vertical-align: top;
}

.article-content th {
    color: #0d1710;
    background: #f3f5f4;
    font-weight: 900;
}

.article-content .article-youtube,
.article-content iframe {
    max-width: 100%;
    border-radius: 8px;
}

.article-content > :last-child {
    margin-bottom: 0;
}

.article-sidebar {
    position: sticky;
    top: 126px;
    z-index: 2;
    align-self: start;
    height: fit-content;
    min-width: 0;
}

.article-sidebar-card {
    padding: 30px;
    background: #f3f5f4;
    border: 1px solid #cfd6d1;
    border-radius: 8px;
}

.article-sidebar-card h2 {
    margin: 0 0 14px;
    color: #0d1710;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
}

.article-sidebar-card p {
    margin: 0 0 22px;
    color: #4f5a53;
    line-height: 1.7;
}

.article-sidebar-card .btn {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
}

.article-related {
    margin-top: 86px;
}

.article-main-column .article-related .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page {
    background: #f3f5f4;
}

.about-hero {
    position: relative;
    min-height: 64vh;
    min-height: 64svh;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 14, 8, 0.74), rgba(7, 14, 8, 0.52)),
        linear-gradient(0deg, rgba(7, 14, 8, 0.28), rgba(7, 14, 8, 0.08));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 64vh;
    min-height: 64svh;
    flex-direction: column;
    justify-content: center;
    padding-top: 86px;
    color: #fff;
}

.about-hero-content h1 {
    max-width: 880px;
    margin: 0 auto 18px;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    overflow-wrap: break-word;
}

.about-hero-content p {
    max-width: 690px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.75;
}

.about-history-section,
.about-facility-section,
.about-location-section {
    background: #f8f9f8;
}

.about-history-section h2,
.about-facility-section h2,
.about-trust-section h2 {
    margin: 0 0 18px;
    color: #0d1710;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.1;
}

.about-history-media {
    margin: 0;
}

.about-history-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
    filter: grayscale(1);
    border-radius: 4px;
}

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

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    color: #0d1710;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.about-stats span {
    margin-top: 7px;
    color: #67706a;
    font-size: 12px;
    font-weight: 700;
}

.about-vision-section {
    background: #eef1f0;
}

.about-vision-section .section-heading h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 22px auto 0;
    background: #07140c;
    border-radius: 999px;
}

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

.about-principle-card {
    min-height: 270px;
    padding: 38px;
    border: 1px solid #cfd6d1;
    background: rgba(255, 255, 255, 0.42);
}

.about-card-icon {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
    place-items: center;
    border: 1px solid #385018;
    border-radius: 50%;
    color: #385018;
    font-size: 12px;
    font-weight: 900;
}

.about-principle-card h3 {
    margin: 0 0 16px;
    color: #0d1710;
    font-size: 18px;
    font-weight: 900;
}

.about-principle-card p {
    margin: 0;
    color: #4f5a53;
    font-size: 14px;
    font-style: italic;
    line-height: 1.8;
}

.about-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.about-section-top .section-copy {
    max-width: 760px;
    margin-bottom: 0;
}

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

.about-facility-card {
    position: relative;
    display: flex;
    min-height: 235px;
    align-items: flex-end;
    overflow: hidden;
    padding: 22px;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.about-facility-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 8, 0.08), rgba(7, 14, 8, 0.82));
}

.about-facility-card div {
    position: relative;
    z-index: 1;
}

.about-facility-card h3 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 900;
}

.about-facility-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    line-height: 1.5;
}

.about-trust-section {
    padding: 92px 0;
    color: #fff;
    background: #0e2015;
}

.about-trust-section h2 {
    color: #fff;
}

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

.trusted-grid span {
    display: block;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-style: italic;
    font-weight: 800;
    text-align: center;
}

.about-testimonial {
    margin: 0;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.about-testimonial strong {
    display: block;
    margin-bottom: 22px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.about-testimonial p {
    margin: 0 0 22px;
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
    line-height: 1.65;
}

.about-testimonial cite,
.about-testimonial span {
    display: block;
}

.about-testimonial cite {
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.about-testimonial span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
}

.about-location-section .section-heading {
    margin-bottom: 36px;
}

.about-location-section .section-heading p {
    color: #67706a;
}

.about-map {
    position: relative;
    display: grid;
    min-height: 315px;
    place-items: center;
    overflow: hidden;
    background: #9ea5a0;
}

.about-map-link,
.about-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-map-link {
    display: block;
}

.about-map iframe {
    border: 0;
    pointer-events: none;
}

.catalog-page {
    background: #f3f5f4;
}

.catalog-hero {
    padding: 150px 0 72px;
    background: #f3f5f4;
    border-bottom: 1px solid rgba(21, 32, 22, 0.1);
}

.catalog-hero h1 {
    max-width: 780px;
    margin: 0 0 22px;
    color: #0d1710;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.04;
}

.catalog-hero p {
    max-width: 720px;
    margin: 0;
    color: #4f5a53;
    font-size: 18px;
    line-height: 1.7;
}

.catalog-section {
    background: #f3f5f4;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.catalog-layout-no-filter {
    grid-template-columns: minmax(0, 1fr);
}

.catalog-filter {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 124px);
    overflow: hidden;
}

.catalog-filter form {
    display: flex;
    max-height: calc(100vh - 124px);
    flex-direction: column;
}

.catalog-filter-scroll {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 10px;
}

.catalog-filter-actions {
    flex: 0 0 auto;
    padding-top: 16px;
    background: #f3f5f4;
}

.catalog-filter-toggle,
.catalog-filter-backdrop,
.catalog-filter-head {
    display: none;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group h2 {
    margin: 0 0 20px;
    color: #0d1710;
    font-size: 23px;
    font-weight: 900;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #1f2923;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.filter-group input {
    width: 18px;
    height: 18px;
    accent-color: #0e2015;
}

.catalog-reset {
    display: flex;
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #59666c;
    border-color: #59666c;
}

.catalog-apply {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.catalog-toolbar {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.catalog-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
}

.catalog-search input[type="search"] {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid #cfd6d1;
    color: #0d1710;
    background: #fff;
    font-size: 15px;
    outline: none;
}

.catalog-search input[type="search"]:focus {
    border-color: #0e2015;
}

.catalog-search .btn {
    display: inline-flex;
    gap: 8px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding-right: 24px;
    padding-left: 24px;
}

.catalog-search .btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-search-clear {
    color: #0d1710;
    background: #fff;
    border-color: #cfd6d1;
}

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

.catalog-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #cfd6d1;
    background: #fff;
}

.catalog-card figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #dfe4e3;
}

.catalog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
}

.catalog-empty-image,
.product-card-empty-image {
    display: grid;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    place-items: center;
    background: #dfe4e3;
}

.catalog-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 12px;
    color: #fff;
    background: #0e2015;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-badge-alert {
    background: #7f2d12;
}

.catalog-badge-industrial {
    background: #59666c;
}

.catalog-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.catalog-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

.catalog-title-row h2 {
    margin: 0;
    color: #0d1710;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.16;
}

.catalog-title-row span {
    color: #0d1710;
    font-size: 15px;
    font-weight: 800;
}

.catalog-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: -6px 0 18px;
}

.catalog-price strong {
    color: #385018;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.catalog-price span {
    color: #8a948d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: line-through;
}

.catalog-specs {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    color: #4f5a53;
    list-style: none;
}

.catalog-specs li {
    position: relative;
    padding-left: 23px;
    font-size: 14px;
    line-height: 1.45;
}

.catalog-specs li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 9px;
    height: 9px;
    border: 1px solid #0e2015;
    transform: rotate(45deg);
}

.catalog-detail-btn {
    display: flex;
    width: 100%;
    min-height: 56px;
    margin-top: auto;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 14px;
}

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

.catalog-pagination a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #cfd6d1;
    color: #0d1710;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.catalog-pagination span.disabled {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #9aa39d;
    border: 1px solid #d5ddd8;
}

.catalog-pagination a.active,
.catalog-pagination a:hover {
    color: #fff;
    background: #0e2015;
    border-color: #0e2015;
}

.catalog-empty-state {
    padding: 42px 28px;
    text-align: center;
    background: #fff;
    border: 1px solid #cfd6d1;
}

.catalog-empty-icon {
    display: inline-grid;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    place-items: center;
    color: #0e2015;
    background: #e8eee9;
    border: 1px solid #cfd6d1;
    border-radius: 50%;
}

.catalog-empty-icon svg {
    display: block;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-empty-state h2,
.catalog-empty-state h3 {
    margin: 0 0 12px;
    color: #0d1710;
    font-size: 26px;
    font-weight: 900;
}

.catalog-empty-state p {
    max-width: 520px;
    margin: 0 auto;
    color: #4f5a53;
    line-height: 1.6;
}

.catalog-empty-action {
    margin-top: 24px;
    min-width: 168px;
}

.product-detail-page {
    background: #f3f5f4;
}

.product-detail-hero {
    padding: 128px 0 78px;
    background: #f3f5f4;
    border-bottom: 1px solid rgba(21, 32, 22, 0.1);
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 34px;
    color: #657069;
    font-size: 13px;
    font-weight: 700;
}

.product-breadcrumb a:hover,
.product-breadcrumb strong {
    color: #0d1710;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 54px;
    align-items: start;
}

.product-media-panel {
    min-width: 0;
}

.product-detail-main-swiper {
    position: relative;
    overflow: hidden;
    background: #dfe4e3;
    border: 1px solid #cfd6d1;
}

.product-media-slide {
    background: #dfe4e3;
}

.product-media-slide img,
.product-video-frame {
    display: block;
    width: 100%;
    aspect-ratio: 1.36 / 1;
}

.product-media-slide img {
    object-fit: cover;
}

.product-video-frame {
    background: #07140c;
}

.product-media-empty {
    display: grid;
    width: 100%;
    aspect-ratio: 1.36 / 1;
    place-items: center;
    padding: 32px;
    color: #4f5a53;
    font-weight: 800;
    text-align: center;
}

.product-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.product-gallery-nav {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.product-gallery-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 20, 12, 0.72);
}

.product-gallery-button svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-detail-thumb-swiper {
    margin-top: 16px;
}

.product-thumb-slide {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: #dfe4e3;
    cursor: pointer;
}

.product-thumb-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
}

.product-thumb-empty {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    background: #dfe4e3;
}

.product-detail-thumb-swiper .swiper-slide-thumb-active {
    border-color: #0e2015;
}

.product-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(7, 20, 12, 0.82);
    transform: translate(-50%, -50%);
}

.product-thumb-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 53%;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff;
    transform: translate(-50%, -50%);
}

.product-detail-summary {
    position: sticky;
    top: 104px;
    min-width: 0;
}

.product-detail-badge {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 20px;
}

.product-code {
    margin: 0 0 12px;
    color: #657069;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-detail-summary h1 {
    margin: 0 0 22px;
    color: #0d1710;
    font-size: clamp(34px, 3.3vw, 48px);
    font-weight: 900;
    line-height: 1.08;
}

.product-headline {
    margin: 0 0 28px;
    color: #4f5a53;
    font-size: 17px;
    line-height: 1.75;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin: -8px 0 28px;
}

.product-detail-price strong {
    color: #385018;
    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 900;
    line-height: 1.1;
}

.product-detail-price span {
    color: #8a948d;
    font-size: 15px;
    font-weight: 800;
    text-decoration: line-through;
}

.product-quick-specs {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.product-quick-specs li {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(21, 32, 22, 0.12);
}

.product-quick-specs span {
    color: #657069;
    font-size: 13px;
    font-weight: 800;
}

.product-quick-specs strong {
    color: #0d1710;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.product-detail-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.product-detail-actions .btn {
    display: inline-flex;
    gap: 10px;
    min-height: 54px;
    align-items: center;
    justify-content: center;
}

.product-detail-actions svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    fill: currentColor;
}

.product-detail-content {
    background: #fff;
}

.product-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 60px;
    align-items: start;
}

.product-content-grid.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.product-description h2,
.product-spec-panel h2 {
    margin-bottom: 20px;
}

.product-description > p:last-of-type {
    max-width: 740px;
    color: #4f5a53;
    font-size: 17px;
    line-height: 1.82;
}

.product-description-copy {
    max-width: 740px;
    color: #4f5a53;
    font-size: 17px;
    line-height: 1.82;
}

.product-description-copy p,
.product-description-copy ul,
.product-description-copy ol {
    margin-top: 0;
    margin-bottom: 18px;
}

.product-description-copy h1,
.product-description-copy h2,
.product-description-copy h3,
.product-description-copy h4 {
    margin: 28px 0 14px;
    color: #0d1710;
}

.product-description-copy figure,
.product-description-copy .product-youtube {
    margin: 32px 0;
}

.product-description-copy img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-description-copy iframe {
    max-width: 100%;
}

.product-description-copy table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    color: #27312b;
    font-size: 15px;
}

.product-description-copy th,
.product-description-copy td {
    padding: 13px 15px;
    border: 1px solid #cfd6d1;
    text-align: left;
    vertical-align: top;
}

.product-description-copy th {
    color: #0d1710;
    background: #f3f5f4;
    font-weight: 900;
}

.product-feature-list {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.product-feature-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.product-feature-item span {
    width: 12px;
    height: 12px;
    margin-top: 7px;
    border: 2px solid #0e2015;
    transform: rotate(45deg);
}

.product-feature-item p {
    margin: 0;
    color: #27312b;
    line-height: 1.7;
}

.product-spec-panel {
    padding: 34px;
    background: #f3f5f4;
    border: 1px solid #cfd6d1;
}

.product-spec-table {
    margin: 0;
}

.product-spec-table div {
    display: grid;
    gap: 7px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(21, 32, 22, 0.12);
}

.product-spec-table div:first-child {
    padding-top: 0;
}

.product-spec-table div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.product-spec-table dt {
    color: #657069;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-spec-table dd {
    margin: 0;
    color: #0d1710;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.55;
}

.related-products {
    margin-top: 82px;
}

.related-products .product-actions {
    grid-template-columns: 1fr;
}

.related-products .product-actions .btn {
    width: 100%;
    min-height: 56px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 86px;
    padding: 54px 70px;
    color: #fff;
    background-color: #0e2015;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 14px 14px;
    border: 3px solid #07140c;
    border-radius: 14px;
}

.cta-panel h2 {
    max-width: 490px;
    color: #fff;
}

.cta-panel p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 265px;
    border-radius: 8px;
    padding: 17px 28px;
    background: #fff;
    color: #07140c;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.whatsapp-cta:hover {
    color: #07140c;
    background: #eef2ef;
}

.whatsapp-cta svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: #25d366;
}

.site-footer {
    padding: 82px 0 30px;
    background: #dfe4e3;
}

.site-footer h3 {
    margin-bottom: 18px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
}

.copyright {
    margin-top: 70px;
    padding-top: 28px;
    border-top: 1px solid rgba(21, 32, 22, 0.09);
    color: #7b8580;
    font-size: 12px;
    text-align: center;
}

.error-page {
    min-height: 100vh;
    background: #07140c;
}

.error-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
}

.error-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 14, 8, 0.9) 0%, rgba(7, 14, 8, 0.7) 52%, rgba(7, 14, 8, 0.42) 100%),
        url("../img/banner/hero-camp.webp") center / cover no-repeat;
}

.error-shell .container {
    position: relative;
    z-index: 2;
}

.error-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 96px;
}

.error-brand {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
}

.error-brand:hover {
    color: #fff;
}

.error-card {
    max-width: 720px;
    padding: 118px 0 140px;
}

.error-card h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5.8vw, 82px);
    font-weight: 800;
    line-height: 1.04;
}

.error-card p:not(.section-label) {
    max-width: 640px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.8;
}

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

@media (max-width: 991px) {
    .site-header {
        position: fixed;
    }

    .navbar {
        padding: 12px 0;
    }

    .site-header .navbar-collapse {
        margin-top: 12px;
        padding: 16px 0 18px;
        border-top: 1px solid rgba(21, 32, 22, 0.1);
    }

    .navbar-brand {
        font-size: 25px;
    }

    .navbar-nav {
        gap: 0;
        padding-top: 14px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 0;
    }

    .hero-section,
    .hero-content {
        min-height: 100vh;
        min-height: 100svh;
    }

    .experience-badge {
        left: 20px;
    }

    .cta-panel {
        align-items: stretch;
        flex-direction: column;
        padding: 38px;
    }

    .process-hero,
    .process-hero-content {
        min-height: 70vh;
        min-height: 70svh;
    }

    .process-story-section .section-heading {
        margin-bottom: 56px;
    }

    .product-detail-layout,
    .product-content-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-summary {
        position: static;
    }

    .product-content-grid {
        gap: 40px;
    }

    .product-spec-panel {
        padding: 28px;
    }

    .production-timeline {
        gap: 74px;
    }

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

    .production-step-reverse .production-copy,
    .production-step-reverse .production-media {
        order: initial;
    }

    .production-media {
        order: 2;
    }

    .production-copy {
        order: 1;
    }

    .step-number {
        top: -18px;
        right: 0;
    }

    .whatsapp-cta {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-section,
    .hero-content {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        justify-content: center;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.12;
    }

    .hero-content p:not(.eyebrow) {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
    }

    .section {
        padding: 72px 0;
    }

    .process-hero-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .process-hero-content h1 {
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.1;
    }

    .insight-body {
        padding: 24px;
    }

    .article-hero {
        padding: 116px 0 58px;
    }

    .article-hero-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .article-hero-copy p,
    .article-content p {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 28px;
    }

    .article-content h3 {
        font-size: 24px;
    }

    .article-content ul,
    .article-content ol {
        font-size: 16px;
    }

    .article-sidebar-card {
        padding: 26px;
    }

    .production-copy p {
        font-size: 14px;
    }

    .process-spec-grid {
        grid-template-columns: 1fr;
    }

    .process-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .process-cta-actions .btn {
        width: 100%;
        min-width: 0;
    }

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

    .article-hero-grid,
    .article-content-layout {
        grid-template-columns: 1fr;
    }

    .article-main-column .article-related .insight-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar,
    .article-sidebar-card {
        position: static;
    }

    .about-hero-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .about-hero-content h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .about-stats,
    .about-principles,
    .about-facility-grid,
    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .about-section-top {
        align-items: stretch;
        flex-direction: column;
    }

    .about-section-top .btn {
        width: 100%;
    }

    .about-principle-card {
        min-height: auto;
        padding: 28px;
    }

    .about-testimonial {
        padding: 26px;
    }

    .catalog-hero {
        padding: 124px 0 52px;
    }

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

    .catalog-filter-toggle {
        position: fixed;
        right: 20px;
        bottom: 22px;
        z-index: 1035;
        display: flex;
        width: 58px;
        height: 58px;
        min-width: 0;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
        color: #fff;
        background: #0e2015;
        border-color: #0e2015;
        box-shadow: 0 14px 30px rgba(10, 18, 12, 0.24);
    }

    .catalog-filter-toggle svg {
        width: 24px;
        height: 24px;
        flex: 0 0 auto;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.4;
        stroke-linecap: round;
    }

    .catalog-filter-toggle:hover,
    .catalog-filter-toggle:focus {
        color: #fff;
        background: #0e2015;
        border-color: #0e2015;
    }

    .catalog-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1040;
        display: block;
        background: rgba(7, 14, 8, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .catalog-filter-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 28px;
    }

    .catalog-filter-head h2 {
        margin: 0;
        color: #0d1710;
        font-size: 25px;
        font-weight: 900;
    }

    .catalog-filter-close {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        padding: 0;
        border: 1px solid rgba(21, 32, 22, 0.18);
        border-radius: 8px;
        background: transparent;
        color: #0d1710;
    }

    .catalog-filter-close svg {
        display: block;
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .catalog-filter {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        width: min(86vw, 360px);
        max-height: none;
        padding: 24px;
        padding-right: 24px;
        overflow: hidden;
        background: #f5f7f6;
        border-right: 1px solid rgba(21, 32, 22, 0.12);
        transform: translateX(-100%);
        transition: transform 220ms ease;
    }

    .catalog-filter form {
        max-height: none;
        height: 100%;
    }

    .catalog-filter-scroll {
        padding-right: 0;
    }

    .catalog-filter-actions {
        margin-right: -24px;
        margin-left: -24px;
        padding: 16px 24px 0;
        background: #f5f7f6;
        border-top: 1px solid rgba(21, 32, 22, 0.1);
    }

    .catalog-filter.is-open {
        transform: translateX(0);
    }

    .catalog-filter-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

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

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

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

    .product-detail-hero {
        padding: 116px 0 58px;
    }

    .product-breadcrumb {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .product-detail-layout {
        gap: 34px;
    }

    .product-detail-summary h1 {
        font-size: clamp(30px, 8vw, 40px);
    }

    .product-media-slide img,
    .product-video-frame {
        aspect-ratio: 1.08 / 1;
    }

    .product-gallery-nav {
        right: 12px;
        bottom: 12px;
    }

    .product-gallery-button {
        width: 40px;
        height: 40px;
    }

    .product-detail-actions,
    .product-quick-specs li {
        grid-template-columns: 1fr;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .product-quick-specs li {
        gap: 6px;
    }

    .related-products {
        margin-top: 62px;
    }

    .feature-grid,
    .process-top {
        display: block;
    }

    .mini-card + .mini-card {
        margin-top: 16px;
    }

    .process-top a {
        display: inline-block;
        margin-top: 4px;
    }

    .product-card p {
        min-height: auto;
    }

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

    .product-actions .btn-outline-dark {
        min-width: 0;
    }

    .whatsapp-cta {
        min-width: 0;
        width: 100%;
    }

    .error-nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 0;
    }

    .error-card {
        padding: 70px 0 96px;
    }

    .error-actions .btn,
    .error-nav .btn {
        width: 100%;
    }

    .error-nav .btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .article-sidebar {
        position: sticky;
        top: 126px;
        z-index: 2;
        align-self: start;
        height: fit-content;
        min-width: 0;
    }

    .article-sidebar-card {
        position: static;
    }
}
