:root {
    --brand: #159653;
    --brand-bright: #20b667;
    --brand-deep: #075c36;
    --brand-dark: #08281d;
    --ink: #14241d;
    --muted: #607068;
    --line: #dce5df;
    --surface: #ffffff;
    --surface-soft: #f3f7f4;
    --surface-tint: #e8f4ed;
    --shadow-sm: 0 10px 30px rgba(8, 40, 29, 0.08);
    --shadow-lg: 0 24px 70px rgba(8, 40, 29, 0.16);
    --radius-sm: 0.65rem;
    --radius-md: 1.1rem;
    --radius-lg: 1.75rem;
    --container: 1180px;
    --header-height: 86px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--surface-soft) !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--brand-deep);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--brand);
}

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

:focus-visible {
    outline: 3px solid rgba(32, 182, 103, 0.48);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.85rem;
    color: var(--ink);
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.35rem, 6vw, 5.7rem);
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 3.25rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

h4,
h5,
h6 {
    font-size: 1.05rem;
}

p {
    margin: 0 0 1.15rem;
}

ul,
ol {
    margin-top: 0;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--brand-dark);
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.85rem;
}

.row > [class*="col-"] {
    width: 100%;
    padding: 0.85rem;
}

.text-center {
    text-align: center;
}

.clearfix::after {
    display: table;
    clear: both;
    content: "";
}

/* Header and navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #fff;
    background: rgba(6, 34, 24, 0.96);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background-color 180ms ease;
}

.header.is-scrolled {
    background: rgba(6, 34, 24, 0.985);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: 1.25rem;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: block;
    border-radius: 0.4rem;
}

.header-logo {
    width: clamp(175px, 17vw, 225px);
    max-height: 58px;
    object-fit: contain;
}

.nav-menu {
    margin-left: auto;
}

.nav-menu-wrap,
.sub-menu-dropdown-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-menu-wrap {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-menu-wrap > li {
    position: relative;
}

.nav-menu-wrap > li > a,
.nav-menu-list {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.72rem;
    border: 0;
    border-radius: 0.6rem;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.035em;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease;
}

.nav-menu-wrap > li > a:hover,
.nav-menu-wrap > li > a[aria-current="page"],
.nav-menu-list:hover,
.nav-menu-list[aria-expanded="true"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.nav-caret {
    width: 0.48rem;
    height: 0.48rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.nav-menu-list[aria-expanded="true"] .nav-caret {
    transform: translateY(2px) rotate(225deg);
}

.sub-menu-dropdown-list {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    width: 240px;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: #0a3727;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.4rem);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-submenu:hover .sub-menu-dropdown-list,
.has-submenu:focus-within .sub-menu-dropdown-list,
.has-submenu.is-open .sub-menu-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu-dropdown-list a {
    display: block;
    padding: 0.72rem 0.8rem;
    border-radius: 0.55rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 620;
    line-height: 1.35;
    text-decoration: none;
}

.sub-menu-dropdown-list a:hover,
.sub-menu-dropdown-list a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.rightside-icon {
    flex: 0 0 auto;
}

.language-switch {
    display: inline-flex;
    min-width: 48px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.language-switch:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-mobile {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.nav-mobile span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-mobile[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-mobile[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-mobile[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Home */
.home-hero {
    position: relative;
    display: grid;
    min-height: min(800px, calc(100vh - var(--header-height)));
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: #0a2a20;
}

.home-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.home-hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 900ms ease, transform 7.5s linear;
}

.home-hero-slide:first-child {
    object-position: 58% center;
}

.home-hero-slide:nth-child(2) {
    object-position: 54% center;
}

.home-hero-slide.is-active {
    opacity: 1;
    transform: scale(1.045);
}

.hero-brand-mark {
    position: absolute;
    top: 52%;
    left: clamp(-13rem, -11vw, -6rem);
    z-index: 1;
    width: clamp(440px, 46vw, 720px);
    height: auto;
    opacity: 0.17;
    filter: grayscale(1) brightness(1.15);
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateY(-50%);
    user-select: none;
}

.home-hero::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 28, 19, 0.94) 0%, rgba(4, 28, 19, 0.7) 48%, rgba(4, 28, 19, 0.22) 100%),
        linear-gradient(0deg, rgba(4, 28, 19, 0.52), transparent 42%);
    content: "";
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-block: clamp(5rem, 13vh, 9rem);
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: clamp(1.25rem, 2.5vw, 2.25rem);
    left: 0;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    pointer-events: none;
}

.js .hero-controls {
    display: flex;
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(4, 28, 19, 0.42);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.hero-dot {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    place-items: center;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.hero-dot span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    transition: width 180ms ease, background-color 180ms ease;
}

.hero-dot.is-active span {
    width: 1.15rem;
    border-radius: 999px;
    background: #9ceabc;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.16);
}

.hero-dot:focus-visible {
    outline: 3px solid #9ceabc;
    outline-offset: 3px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    color: #a8e7c3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    background: var(--brand-bright);
    content: "";
}

.home-section .eyebrow,
.main-contain .eyebrow {
    color: var(--brand-deep);
}

.home-hero h1 {
    max-width: 760px;
    margin-bottom: 1.4rem;
    color: #fff;
    text-wrap: balance;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.65;
}

@media (min-width: 1001px) {
    .hero-content {
        max-width: var(--container);
    }

    .home-hero h1 {
        max-width: 980px;
    }

    .hero-lead {
        max-width: 760px;
    }
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
    color: #062417;
    background: #83e5ad;
}

.button-primary:hover {
    color: #062417;
    background: #a2f0c3;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.home-section {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
    background: var(--surface);
}

.home-section-soft {
    padding-block: clamp(3.25rem, 5.5vw, 4.75rem);
    background: var(--surface-soft);
}

.home-section-soft .section-heading {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 1.5rem;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.home-section-soft .section-heading h2 {
    font-size: clamp(1.85rem, 3.25vw, 2.8rem);
}

.home-section-soft .section-heading p {
    max-width: 580px;
    font-size: 1rem;
    line-height: 1.6;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.products-heading {
    max-width: 790px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

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

.products-heading h2 {
    margin-bottom: 1rem;
}

.products-heading > p:last-child {
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.product-info-card {
    --product-accent: #176f78;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.product-info-card-polyamide66 {
    --product-accent: var(--brand);
}

.product-info-card-polyester {
    --product-accent: #3b4b45;
}

.product-info-header {
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    color: #fff;
    background: var(--product-accent);
}

.product-info-header img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    object-fit: cover;
}

.product-info-header h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.product-info-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
}

.product-info-body dl {
    display: grid;
    gap: 1.25rem;
    margin: 0 0 1.75rem;
}

.product-info-body dl > div + div {
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.product-info-body dt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 780;
}

.product-info-body dt::before {
    width: 0.42rem;
    height: 0.42rem;
    flex: 0 0 0.42rem;
    border-radius: 50%;
    background: var(--product-accent);
    content: "";
}

.product-info-body dd {
    margin: 0.45rem 0 0 1rem;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.product-info-link {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    color: #fff;
    background: var(--product-accent);
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
    transition: filter 160ms ease, transform 160ms ease;
}

.product-info-link:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.product-info-link span {
    font-size: 1.2rem;
}

.product-specialties {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.product-specialties > span {
    font-weight: 720;
}

.product-specialties a {
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-deep);
    background: var(--surface-soft);
    font-weight: 700;
    text-decoration: none;
}

.product-specialties a:hover {
    border-color: #a9c8b7;
    background: var(--surface-tint);
}

.markets-section {
    color: #fff;
    background: var(--brand-dark);
}

.markets-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.markets-heading .eyebrow {
    color: #a8e7c3;
}

.markets-heading h2 {
    max-width: 660px;
    margin: 0;
    color: #fff;
}

.markets-heading > p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
}

.markets-label {
    margin: 0 0 1rem;
    color: #a8e7c3;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-block: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.markets-grid > li {
    padding: clamp(1.4rem, 2.5vw, 1.9rem);
}

.markets-grid > li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.markets-grid span {
    display: block;
    margin-bottom: 1rem;
    color: #83e5ad;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.markets-grid h3 {
    min-height: 2.4em;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.markets-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.58;
}

.home-process-intro > p {
    margin-bottom: 1rem !important;
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.home-process-grid > li {
    min-height: 0;
    padding: clamp(1.25rem, 2.25vw, 1.65rem);
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-process-grid > li + li {
    border-left: 1px solid var(--line);
}

.home-process-grid span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--brand-deep);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.home-process-grid h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.home-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.home-quality-section {
    background: var(--surface-tint);
}

.home-quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.home-quality-copy {
    max-width: 610px;
}

.home-quality-copy > p:not(.eyebrow) {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-quality-panel {
    padding: clamp(1.4rem, 3vw, 2.25rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.home-quality-panel img {
    width: 100%;
    height: auto;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
}

.home-quality-panel ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.home-quality-panel li {
    position: relative;
    padding-left: 1rem;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 680;
    line-height: 1.45;
}

.home-quality-panel li::before {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--brand);
    content: "";
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}

.story-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.story-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 750;
    text-decoration: none;
}

.text-link::after {
    content: "\2192";
}

/* Inner pages */
.page-heading {
    position: relative;
    display: grid;
    min-height: clamp(250px, 36vw, 390px);
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-color: var(--brand-dark) !important;
    background-position: center !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    isolation: isolate;
}

.page-heading::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, rgba(5, 38, 25, 0.93), rgba(5, 38, 25, 0.48));
    content: "";
}

.page-heading .row {
    justify-content: center;
}

.page-heading .title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.15rem, 5vw, 4.7rem);
    text-wrap: balance;
}

.page-heading .breadcrumb {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.83rem;
    font-weight: 720;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-contain {
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.bg-white {
    background: var(--surface) !important;
}

.bg-gray {
    background: var(--surface-soft) !important;
}

.main-contain p,
.main-contain li {
    color: #405149;
}

.main-contain p {
    max-width: 78ch;
}

.main-contain strong {
    color: var(--ink);
}

.main-contain .img-responsive,
.main-contain .row > div > img {
    width: 100%;
    border-radius: var(--radius-md);
}

.main-contain .col-md-6 > img {
    box-shadow: var(--shadow-sm);
}

/* About */
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.about-story-copy h2 {
    max-width: 620px;
}

.about-story-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.about-story-copy p:last-child {
    margin-bottom: 0;
}

.about-story-image {
    position: relative;
    margin: 0;
}

.about-story-image::after {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    z-index: 0;
    width: 38%;
    height: 48%;
    border-radius: var(--radius-md);
    background: var(--surface-tint);
    content: "";
}

.about-story-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-stats-section {
    padding-block: clamp(3.25rem, 6vw, 5rem);
    color: #fff;
    background: var(--brand-dark);
}

.about-stats-heading {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.about-stats-heading .eyebrow {
    justify-content: center;
    margin-bottom: 0.8rem;
}

.about-stats-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

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

.about-stats-grid > div {
    padding: 0.25rem clamp(1rem, 4vw, 3.5rem);
    text-align: center;
}

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

.about-stats-grid dt {
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 780;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.about-stats-grid dd {
    margin: 0.75rem 0 0;
    color: #a8e7c3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-purpose-section {
    padding-block: clamp(3.25rem, 6vw, 5.5rem);
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-block: 1px solid var(--line);
}

.about-purpose-card {
    padding: clamp(2rem, 4vw, 3.25rem);
}

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

.about-purpose-card .eyebrow {
    margin-bottom: 1.25rem;
}

.about-purpose-text {
    max-width: 44ch !important;
    margin: 0;
    color: var(--ink) !important;
    font-size: clamp(1.08rem, 1.5vw, 1.25rem);
    font-weight: 520;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.about-values-section {
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.about-values-heading {
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.about-values-heading h2 {
    margin: 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.about-value-item {
    display: flex;
    grid-column: span 2;
    gap: 1rem;
    min-height: 170px;
    padding: clamp(1.35rem, 2.5vw, 1.9rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.about-value-item:nth-last-child(2) {
    grid-column: 2 / span 2;
}

.about-value-icon {
    display: inline-grid;
    width: 2.6rem;
    height: 2.6rem;
    flex: 0 0 2.6rem;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--surface-tint);
    font-size: 1.05rem;
    font-weight: 850;
}

.about-value-item h3 {
    margin: 0.15rem 0 0.45rem;
    font-size: 1.15rem;
}

.about-value-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Production process */
.production-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.production-intro-copy p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.production-intro-copy p:last-child {
    margin-bottom: 0;
}

.production-intro-image {
    margin: 0;
}

.production-intro-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.production-process-section {
    padding-block: clamp(3.75rem, 7vw, 6.5rem);
    border-top: 1px solid var(--line);
}

.production-process-heading {
    margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
    text-align: center;
}

.production-process-heading .eyebrow {
    justify-content: center;
}

.production-process-heading h2 {
    margin: 0;
}

.production-process-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.production-process-step {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 315px;
    align-items: center;
    flex-direction: column;
    padding: clamp(1.25rem, 2.2vw, 1.65rem);
    border: 1px solid #aac5b7;
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.production-process-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -1.05rem;
    z-index: 2;
    display: grid;
    width: 1.1rem;
    height: 2.25rem;
    place-items: center;
    color: var(--brand-deep);
    background: var(--surface);
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1;
    content: "\2192";
    transform: translateY(-50%);
}

.production-process-icon {
    width: 7.2rem;
    height: 6.4rem;
    flex: 0 0 6.4rem;
    margin-bottom: 1.25rem;
    object-fit: contain;
}

.production-process-step h3 {
    display: grid;
    min-height: 2.4em;
    place-items: center;
    margin-bottom: 1rem;
    font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.production-process-step ul {
    display: grid;
    width: 100%;
    gap: 0;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.production-process-step li {
    padding: 0.7rem 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 620;
    line-height: 1.4;
}

.production-process-step li + li {
    border-top: 1px solid var(--line);
}

/* Quality */
.quality-overview-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.quality-overview-copy h2 {
    max-width: 590px;
}

.quality-overview-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.quality-overview-copy p:last-child {
    margin-bottom: 0;
}

.quality-certifications-visual {
    max-width: 1080px;
    margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
    padding: clamp(1rem, 2.5vw, 1.75rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.quality-certifications-visual img {
    width: 100%;
    height: auto;
}

.quality-certifications-heading {
    max-width: 680px;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.quality-certifications-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.quality-certification-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.quality-certification-grid article {
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.quality-certification-grid article + article {
    border-left: 1px solid var(--line);
}

.quality-certification-grid span,
.quality-tests-grid span {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--brand-deep);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.quality-certification-grid h3 {
    min-height: 2.5em;
    margin-bottom: 0.75rem;
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.quality-certification-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.quality-control-section {
    color: #fff;
    background: var(--brand-dark);
}

.quality-control-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.quality-control-heading .eyebrow {
    color: #a8e7c3;
}

.quality-control-heading h2 {
    margin: 0;
    color: #fff;
}

.quality-control-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.04rem;
    line-height: 1.7;
}

.quality-tests-label {
    margin: 0 0 1rem;
    color: #a8e7c3 !important;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quality-tests-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-block: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.quality-tests-grid li {
    min-height: 165px;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.quality-tests-grid li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.quality-tests-grid span {
    color: #83e5ad;
}

.quality-tests-grid h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.35;
}

.quality-control-note {
    max-width: 820px !important;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
}

.quality-principles-section {
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.quality-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.quality-principles-grid article {
    padding: clamp(2rem, 4vw, 3.5rem);
}

.quality-principles-grid article + article {
    border-left: 1px solid var(--line);
}

.quality-principles-grid h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.quality-principles-grid p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Sustainability policy */
.sustainability-policy-intro {
    max-width: 980px;
    margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.sustainability-policy-intro h2 {
    max-width: 760px;
}

.sustainability-policy-intro p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.sustainability-policy-closing {
    margin-top: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--brand);
}

.sustainability-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}

.sustainability-policy-area {
    padding-top: 1.75rem;
    border-top: 2px solid var(--brand);
}

.sustainability-policy-area .eyebrow {
    margin-bottom: 0.8rem;
}

.sustainability-policy-area h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.sustainability-policy-area ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1.2rem;
}

.sustainability-policy-area li {
    padding-left: 0.2rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.sustainability-policy-area > p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.sustainability-policy-meta {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: clamp(3.5rem, 7vw, 6rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.sustainability-policy-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
}

.mb30 {
    margin-bottom: 1.9rem;
}

.sidebar {
    display: grid;
    gap: 0.55rem;
}

.btn-custom,
.btn-product,
.btn-large {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    color: var(--ink);
    background: var(--surface);
    font-size: 0.88rem;
    font-weight: 720;
    line-height: 1.35;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.btn-custom::after,
.btn-large::after {
    color: var(--brand);
    content: "+";
}

.btn-custom:hover,
.btn-large:hover {
    border-color: #a9c8b7;
    color: var(--brand-deep);
    background: var(--surface-tint);
}

/* Responsive data tables */
.table-block {
    margin-block: 0.5rem 2.5rem;
}

.table-hint {
    display: none;
    margin: 0 0 0.65rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    overscroll-behavior-inline: contain;
    scrollbar-color: #91b5a2 var(--surface-soft);
    scrollbar-width: thin;
}

.data-table {
    width: 100%;
    min-width: 760px;
    border: 0;
    border-spacing: 0;
    border-collapse: separate;
    color: var(--ink);
    font-size: 0.88rem;
    line-height: 1.45;
}

.data-table th,
.data-table td {
    min-width: 84px;
    padding: 0.85rem 0.75rem;
    border: 0;
    border-right: 1px solid rgba(220, 229, 223, 0.82);
    border-bottom: 1px solid rgba(220, 229, 223, 0.82);
    text-align: center;
    vertical-align: middle;
}

.data-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    color: #fff;
    background: var(--brand-deep) !important;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.data-table tbody tr:nth-child(even) td {
    background: var(--surface-soft);
}

.data-table tbody tr:hover td {
    background: var(--surface-tint);
}

.data-table tr:last-child td,
.data-table tr:last-child th {
    border-bottom: 0;
}

.data-table th:last-child,
.data-table td:last-child {
    border-right: 0;
}

/* Contact */
.contact-intro {
    max-width: 720px;
    margin-bottom: 2.25rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    min-height: 245px;
    padding: 1.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.contact-card-kicker {
    display: block;
    margin-bottom: 2.8rem;
    color: var(--brand-deep);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-card h2 {
    font-size: 1.25rem;
}

.contact-card p,
.contact-card address {
    margin: 0 0 0.8rem;
    color: var(--muted);
    font-style: normal;
}

.contact-card a {
    overflow-wrap: anywhere;
    font-weight: 700;
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.8rem);
    border-radius: var(--radius-lg);
    color: #fff;
    background: var(--brand-dark);
}

.contact-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.contact-cta .button {
    flex: 0 0 auto;
}

/* Footer */
.footer {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.7);
    background: #061d15;
}

.footer-main {
    padding-block: clamp(3.8rem, 7vw, 6rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
}

.footer-logo {
    width: 205px;
    margin-bottom: 1.5rem;
}

.footer-copy {
    max-width: 410px;
    margin: 0;
}

.footer h2 {
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.65rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer a:hover {
    color: #a2f0c3;
}

.project-programme {
    width: 100%;
    margin: 0.25rem 0 2.25rem;
    padding: clamp(1.1rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.main-contain .project-programme img {
    width: min(100%, 520px) !important;
    margin-inline: auto;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.footer-bottom {
    padding-block: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

@media (min-width: 768px) {
    .col-sm-6 {
        width: 50% !important;
    }

    .col-sm-12 {
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .col-md-3 {
        width: 25% !important;
    }

    .col-md-6 {
        width: 50% !important;
    }

    .col-md-9 {
        width: 75% !important;
    }

    .col-md-12 {
        width: 100% !important;
    }
}

@media (max-width: 1080px) {
    :root {
        --header-height: 76px;
    }

    .header-inner {
        gap: 0.75rem;
    }

    .nav-mobile {
        display: block;
        order: 4;
    }

    .rightside-icon {
        margin-left: auto;
        order: 3;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        order: 5;
        max-height: calc(100vh - var(--header-height));
        margin: 0;
        padding: 0 1rem 1rem;
        overflow-y: auto;
        background: #062219;
    }

    .js .nav-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.5rem);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    .js .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu-wrap {
        display: block;
        width: min(100%, var(--container));
        margin: 0 auto;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        background: #0a3023;
    }

    .nav-menu-wrap > li > a,
    .nav-menu-list {
        width: 100%;
        justify-content: space-between;
        padding: 0.85rem;
        font-size: 0.85rem;
    }

    .sub-menu-dropdown-list {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 0.4rem;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        transform: none;
        transition: max-height 180ms ease, padding 180ms ease;
    }

    .has-submenu.is-open .sub-menu-dropdown-list {
        max-height: 420px;
        padding-block: 0.35rem 0.6rem;
    }

    .has-submenu:hover .sub-menu-dropdown-list:not(:focus-within) {
        max-height: 0;
        padding-block: 0;
    }

    .has-submenu.is-open:hover .sub-menu-dropdown-list {
        max-height: 420px;
        padding-block: 0.35rem 0.6rem;
    }

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

@media (max-width: 800px) {
    .section-heading,
    .markets-heading,
    .story-grid,
    .about-story-grid,
    .production-intro-grid,
    .home-quality-grid,
    .quality-overview-copy,
    .quality-control-heading,
    .quality-certification-grid,
    .quality-principles-grid,
    .sustainability-policy-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-section-soft .section-heading {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        width: min(100%, 580px);
    }

    .about-story-image::after {
        right: -0.5rem;
        bottom: -0.5rem;
    }

    .about-purpose-grid {
        grid-template-columns: 1fr;
    }

    .about-purpose-card {
        padding-inline: 0.25rem;
    }

    .about-purpose-card + .about-purpose-card {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .about-value-item,
    .about-value-item:nth-last-child(2) {
        grid-column: span 3;
    }

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

    .production-process-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .production-process-step {
        display: grid;
        min-height: 0;
        grid-template-columns: 4rem minmax(0, 1fr);
        gap: 0.35rem 1rem;
        align-items: center;
        padding: 1.25rem;
        text-align: left;
    }

    .production-process-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -1.75rem;
        width: 2.25rem;
        height: 1.1rem;
        content: "\2193";
        transform: translateX(50%);
    }

    .production-process-icon {
        grid-row: 1 / span 2;
        width: 4rem;
        height: 4rem;
        margin: 0;
    }

    .production-process-step h3 {
        min-height: 0;
        place-items: initial;
        margin: 0;
    }

    .production-process-step ul {
        grid-column: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
    }

    .production-process-step li {
        padding: 0.35rem 0;
    }

    .production-process-step li + li {
        padding-left: 0.75rem;
        border-top: 0;
        border-left: 1px solid var(--line);
    }

    .quality-certification-grid article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .quality-certification-grid h3 {
        min-height: 0;
    }

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

    .quality-tests-grid li + li {
        border-left: 0;
    }

    .quality-tests-grid li:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .quality-tests-grid li:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .quality-principles-grid article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

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

    .markets-grid > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .markets-grid > li + li {
        border-left: 0;
    }

    .markets-grid > li:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .markets-grid > li:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .home-process-grid > li {
        border-bottom: 1px solid var(--line);
    }

    .home-process-grid > li + li {
        border-left: 0;
    }

    .home-process-grid > li:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .home-process-grid > li:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .home-quality-panel {
        width: min(100%, 680px);
    }

    .story-image img {
        min-height: 340px;
    }

    .table-hint {
        display: block;
    }

    .data-table th:first-child,
    .data-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
        box-shadow: 8px 0 12px rgba(8, 40, 29, 0.06);
    }

    .data-table thead th:first-child {
        z-index: 3;
        background: var(--brand-deep) !important;
    }

    .data-table tbody tr:nth-child(odd) td:first-child {
        background: #fff;
    }

    .data-table tbody tr:nth-child(even) td:first-child {
        background: var(--surface-soft);
    }

    .contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .header-logo {
        width: 158px;
    }

    .about-stats-heading {
        display: block;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid > div {
        padding-block: 1.35rem;
    }

    .about-stats-grid > div + div {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-item,
    .about-value-item:nth-last-child(2) {
        grid-column: auto;
        min-height: 0;
    }

    .language-switch {
        min-width: 44px;
        min-height: 40px;
    }

    .nav-mobile {
        width: 42px;
        height: 42px;
    }

    .home-hero {
        min-height: 670px;
    }

    .home-hero-slide:first-child {
        object-position: 68% center;
    }

    .home-hero-slide:nth-child(2) {
        object-position: 62% center;
    }

    .hero-brand-mark {
        top: 46%;
        left: -11rem;
        width: 360px;
        opacity: 0.13;
    }

    .home-hero::before {
        background: linear-gradient(90deg, rgba(4, 28, 19, 0.94), rgba(4, 28, 19, 0.62));
    }

    .hero-content {
        padding-block: 4.5rem;
    }

    .hero-controls {
        bottom: 0.8rem;
        justify-content: center;
    }

    .button-row,
    .button-row .button {
        width: 100%;
    }

    .product-specialties {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

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

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

    .markets-grid > li,
    .markets-grid > li:nth-child(even),
    .markets-grid > li:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        border-left: 0;
    }

    .markets-grid > li:last-child {
        border-bottom: 0;
    }

    .home-process-grid > li,
    .home-process-grid > li:nth-child(even),
    .home-process-grid > li:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .home-process-grid > li:last-child {
        border-bottom: 0;
    }

    .home-quality-panel ul {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .production-process-step {
        grid-template-columns: 3.5rem minmax(0, 1fr);
    }

    .production-process-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .production-process-step ul {
        grid-template-columns: 1fr;
    }

    .production-process-step li + li {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .quality-certifications-visual {
        padding: 0.6rem;
    }

    .quality-tests-grid {
        grid-template-columns: 1fr;
    }

    .quality-tests-grid li,
    .quality-tests-grid li:nth-child(even),
    .quality-tests-grid li:nth-child(-n + 2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        border-left: 0;
    }

    .quality-tests-grid li:last-child {
        border-bottom: 0;
    }

    .sustainability-policy-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

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

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

    .contact-card-kicker {
        margin-bottom: 1.7rem;
    }

    .footer-bottom-inner {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-logo,
    .footer-copy {
        margin-inline: auto;
    }

    .footer-links {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .header,
    .footer,
    .skip-link,
    .hero-controls,
    .table-hint {
        display: none !important;
    }

    .page-heading {
        min-height: 0;
        padding-block: 2rem;
        color: #000;
        background: none !important;
    }

    .page-heading::before {
        display: none;
    }

    .page-heading .title {
        color: #000;
    }

    .table-scroll {
        overflow: visible;
        box-shadow: none;
    }

    .data-table {
        min-width: 0;
        font-size: 9pt;
    }
}
