@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Variable.40505bc34ddd.woff2") format("woff2"),
         url("../fonts/Montserrat-Variable.ef2306ad45ba.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SAAS Algerian";
    src: local("Algerian"),
         url("../fonts/Algerian-Regular.837053e7dc05.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #052b3c;
    --blue: #006f9f;
    --blue-bright: #0077aa;
    --blue-soft: #dee9f0;
    --surface: #edf5fa;
    --white: #ffffff;
    --text: #052b3c;
    --muted: #55717f;
    --line: #dee9f0;
    --danger: #c84444;
    --success: #147a57;
    --shell: 1200px;
    --radius: 15px;
    --section-space: 88px;
    --layout-gap: clamp(36px, 5vw, 72px);
    --card-space: clamp(24px, 3vw, 36px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

main {
    min-height: 60vh;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: 0;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--muted);
}

::selection {
    color: var(--white);
    background: var(--blue);
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: -80px;
    left: 20px;
    padding: 11px 16px;
    color: var(--white);
    border-radius: 8px;
    background: var(--blue);
    transition: top .2s;
}

.skip-link:focus {
    top: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.section-kicker {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-heading h2 {
    font-size: clamp(30px, 3.2vw, 40px);
}

.section-heading--compact {
    max-width: 480px;
}

.button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: transform .2s, background-color .2s, border-color .2s, box-shadow .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--white);
    background: linear-gradient(105deg, var(--blue), var(--blue-bright));
}

.button--primary:hover {
    background: linear-gradient(105deg, #007fb8, var(--blue));
}

.button--wide {
    width: 100%;
}

/* Header */
.landing-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(214, 228, 236, .9);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    transition: background-color .2s;
}

.landing-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
}

.landing-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand__mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.brand__mark img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.brand__name {
    display: flex;
    align-items: baseline;
    gap: 9px;
    font-family: "SAAS Algerian", "Algerian", "Times New Roman", serif;
    line-height: 1;
    white-space: nowrap;
}

.brand__name strong,
.brand__name small {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: .12em;
}

.brand__name small {
    color: var(--muted);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.landing-nav a {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    padding: 0 3px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.landing-nav a:hover {
    color: var(--blue);
}

.landing-nav a:last-child {
    min-height: 40px;
    padding-inline: 14px;
    border-radius: 9px;
    color: var(--white);
    background: var(--blue);
}

.landing-nav a:last-child:hover {
    color: var(--white);
    background: var(--navy);
}

.landing-header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 13px;
}

.language-switch {
    flex: 0 0 auto;
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
}

.language-switch a {
    min-width: 32px;
    min-height: 30px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.language-switch a.is-active {
    color: var(--navy);
    background: #cceefa;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
}

.mobile-menu {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    background: rgba(5, 43, 60, .48);
    opacity: 0;
    transition: opacity .25s, visibility .25s;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
}

.mobile-menu__panel {
    width: min(88vw, 410px);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 26px 30px;
    color: var(--white);
    background: var(--navy);
    transform: translateX(100%);
    transition: transform .3s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: none;
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.mobile-menu__head span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.mobile-menu__head button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.mobile-nav a {
    padding: 12px 0;
    color: var(--white);
    font-size: 21px;
    font-weight: 600;
}

.mobile-nav a:last-child {
    margin-top: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    text-align: center;
    background: rgba(255, 255, 255, .08);
}

.mobile-menu__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 15px;
}

.language-switch--dark {
    margin-bottom: 12px;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
}

.language-switch--dark a {
    color: rgba(255, 255, 255, .65);
}

.language-switch--dark a.is-active {
    color: var(--navy);
    background: #8bd8f7;
}

/* Notifications */
.message-stack {
    position: fixed;
    z-index: 600;
    top: 94px;
    right: 22px;
    width: min(390px, calc(100vw - 44px));
}

.message {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #b8ddcf;
    border-radius: 10px;
    background: #effaf6;
}

.message > span {
    color: var(--success);
    font-weight: 800;
}

.message p {
    margin: 0;
    color: #14543e;
    font-size: 14px;
    font-weight: 550;
}

.message button {
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.message--error {
    border-color: #efc3c3;
    background: #fff4f4;
}

.message--error p {
    color: #842f2f;
}

/* Media carousels */
.media-carousel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.media-carousel__track {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) rgba(222, 233, 240, .75);
    cursor: grab;
}

.media-carousel__track:active {
    cursor: grabbing;
}

.media-carousel__track::-webkit-scrollbar {
    height: 6px;
}

.media-carousel__track::-webkit-scrollbar-track {
    background: rgba(222, 233, 240, .75);
}

.media-carousel__track::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--blue);
}

.media-carousel__slide {
    position: relative;
    min-width: 0;
    height: 100%;
    flex: 0 0 100%;
    overflow: hidden;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.media-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-carousel__slide figcaption {
    position: absolute;
    z-index: 2;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 126px);
    padding: 10px 12px;
    border: 1px solid rgba(222, 233, 240, .92);
    border-radius: 9px;
    color: var(--navy);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
}

.media-carousel__slide figcaption span,
.media-carousel__slide figcaption strong {
    display: block;
}

.media-carousel__slide figcaption span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.media-carousel__slide figcaption strong {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.media-carousel__controls {
    position: absolute;
    z-index: 4;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(222, 233, 240, .95);
    border-radius: 11px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
}

.media-carousel__controls button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: var(--navy);
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.media-carousel__controls button:hover {
    color: var(--white);
    background: var(--blue);
}

.media-carousel__controls button:disabled {
    opacity: .35;
    cursor: default;
}

.media-carousel__controls [data-carousel-status] {
    min-width: 48px;
    color: var(--navy);
    text-align: center;
    font-size: 12px;
    font-weight: 650;
}

.media-carousel--product .media-carousel__track::-webkit-scrollbar {
    display: none;
}

/* Hero */
.landing-hero {
    overflow: hidden;
    background: var(--surface);
}

.landing-hero__grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(36px, 4vw, 60px);
    padding-top: 48px;
    padding-bottom: 48px;
}

.landing-hero__copy {
    position: relative;
    z-index: 2;
}

.landing-hero h1 {
    max-width: 620px;
    font-size: clamp(34px, 3.1vw, 44px);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.22;
}

.landing-hero__lede {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.55;
}

.landing-hero__visual {
    position: relative;
    min-width: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--blue-soft);
}

.landing-hero__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
}

.landing-hero__label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    text-align: center;
}

.landing-hero__label span {
    display: block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.landing-hero__label strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
}

/* Proof */
.proof-strip {
    color: var(--white);
    background: var(--navy);
}

.proof-strip__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.proof-item {
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    text-align: center;
}

.proof-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.proof-item strong {
    color: var(--white);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.2;
}

.proof-item span {
    margin-top: 6px;
    color: #b3c6d3;
    font-size: 14px;
    font-weight: 500;
}

/* Shared sections */
.landing-section,
.contact-landing {
    padding: var(--section-space) 0;
    scroll-margin-top: 76px;
}

/* Products */
.landing-products {
    background: var(--white);
}

.product-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
}

.product-tabs button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--navy);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s, border-color .2s, background-color .2s;
}

.product-tabs button:first-child {
    border-radius: 10px 0 0 10px;
}

.product-tabs button:last-child {
    margin-left: -1px;
    border-radius: 0 10px 10px 0;
}

.product-tabs button span {
    color: var(--blue);
    font-size: 12px;
}

.product-tabs button.is-active {
    color: var(--white);
    border-color: var(--blue);
    background: var(--blue);
}

.product-tabs button.is-active span {
    color: var(--white);
}

.product-panel {
    display: none;
    overflow: hidden;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.product-panel.is-active {
    display: flex;
    flex-direction: column;
}

.product-panel__image {
    min-height: 0;
}

.media-carousel--product {
    border-radius: 0;
    background: var(--surface);
}

.media-carousel--product .media-carousel__track {
    height: auto;
    gap: 12px;
    padding: 16px;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
}

.media-carousel--product .media-carousel__slide {
    height: auto;
    flex: 0 0 clamp(245px, 23.5vw, 285px);
    aspect-ratio: 1 / 1;
    border: 2px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    cursor: grab;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.media-carousel--product .media-carousel__slide:hover {
    border-color: rgba(0, 111, 159, .48);
}

.media-carousel--product .media-carousel__slide.is-selected {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 111, 159, .15);
}

.media-carousel--product .media-carousel__slide.is-selected::after {
    content: "✓";
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-size: 15px;
    font-weight: 750;
}

.media-carousel--garments .media-carousel__slide {
    flex-basis: clamp(225px, 21vw, 260px);
    aspect-ratio: 4 / 5;
}

.media-carousel--product .media-carousel__slide figcaption {
    max-width: calc(100% - 28px);
}

.media-carousel--garments .media-carousel__slide:nth-child(1) img {
    object-position: center 35%;
}

/* Company + advantages */
.company-advantages {
    background: var(--surface);
}

.company-advantages__intro {
    display: grid;
    grid-template-columns: minmax(390px, .9fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--layout-gap);
}

.company-advantages__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--line);
}

.company-advantages__copy h2 {
    max-width: 640px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 40px);
}

.company-advantages__copy > p:not(.section-kicker) {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.advantages-block {
    margin-top: var(--section-space);
}

.advantages-block .section-heading {
    margin-inline: auto;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantages-grid article {
    min-height: 0;
    padding: 0;
    text-align: center;
}

.advantages-grid .advantage-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 2px solid var(--line);
    border-radius: 10px;
    color: var(--blue);
    background: var(--white);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.advantages-grid h3 {
    color: var(--navy);
    font-size: 20px;
}

.advantages-grid p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Production */
.production-section {
    background: var(--white);
}

.production-layout {
    display: grid;
    grid-template-columns: minmax(480px, 1fr) minmax(0, .82fr);
    align-items: center;
    gap: var(--layout-gap);
}

.production-gallery {
    height: 560px;
    border: 2px solid var(--line);
    background: var(--surface);
}

.media-carousel--production .media-carousel__track {
    overflow-x: hidden;
    touch-action: pan-y;
    scrollbar-width: none;
    cursor: default;
}

.media-carousel--production .media-carousel__track:active {
    cursor: default;
}

.media-carousel--production .media-carousel__track::-webkit-scrollbar {
    display: none;
}

.media-carousel--production .media-carousel__slide:nth-child(2) img {
    object-position: center;
}

.media-carousel--production .media-carousel__slide:nth-child(3) img {
    object-position: center 66%;
}

.media-carousel--production .media-carousel__slide:nth-child(4) img {
    object-position: 35% center;
}

.media-carousel--production .media-carousel__slide:nth-child(6) img {
    object-fit: contain;
    padding: clamp(18px, 3vw, 34px);
    background: var(--white);
}

.production-content h2 {
    font-size: clamp(30px, 3.2vw, 40px);
}

.production-list {
    margin-top: 26px;
    border-top: 1px solid var(--line);
}

.production-list__item {
    width: 100%;
    min-height: 66px;
    display: grid;
    grid-template-columns: 36px minmax(118px, .62fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 11px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color .2s, background-color .2s, box-shadow .2s;
}

.production-list__item:hover,
.production-list__item.is-active {
    background: var(--surface);
    box-shadow: inset 3px 0 0 var(--blue);
}

.production-list__item:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid rgba(47, 149, 213, .3);
    outline-offset: -3px;
}

.production-list__number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.production-list strong {
    color: var(--navy);
    font-size: 15px;
    line-height: 1.35;
}

.production-list__item.is-active strong {
    color: var(--blue);
}

.production-list__text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    background: var(--surface);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
    align-items: start;
    gap: var(--layout-gap);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 74px;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    cursor: pointer;
    font-size: 17px;
    font-weight: 650;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary > span {
    color: var(--blue);
    font-size: 12px;
}

.faq-list summary i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-soft);
    font-size: 20px;
    font-style: normal;
    font-weight: 450;
    transition: transform .2s;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details > p {
    max-width: 700px;
    margin: -3px 44px 24px 48px;
    font-size: 15px;
    line-height: 1.7;
}

/* Contact */
.contact-landing {
    color: var(--navy);
    background: var(--surface);
}

.contact-landing__grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(500px, 1fr);
    align-items: start;
    gap: var(--layout-gap);
}

.contact-landing__copy {
    position: sticky;
    top: 120px;
}

.contact-landing__copy h2 {
    color: var(--navy);
    font-size: clamp(30px, 3.2vw, 40px);
}

.contact-landing__copy > p:not(.section-kicker) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.contact-lines {
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.contact-lines > * {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.contact-address {
    border: 0;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.contact-address:hover strong {
    color: var(--blue);
}

.contact-lines span {
    display: block;
    color: var(--blue);
    font-size: 13px;
}

.contact-lines strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
}

.contact-card {
    padding: var(--card-space);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
}

.contact-card__head h3 {
    font-size: 26px;
}

.contact-card__head p {
    margin: 9px 0 0;
    font-size: 14px;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 650;
}

.form-field label span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 2px solid var(--blue-soft) !important;
    border-radius: 10px !important;
    color: var(--navy);
    background: var(--white);
    outline: none;
    box-shadow: none !important;
    transition: border-color .2s, box-shadow .2s;
}

.form-field input {
    height: 54px;
    padding: 0 15px !important;
}

.form-field textarea {
    min-height: 125px;
    padding: 13px 15px !important;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 143, 207, .10) !important;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted);
    opacity: .9;
}

.captcha-field {
    overflow: hidden;
    padding: 12px;
    border-radius: 10px;
    background: var(--surface);
}

.field-error {
    margin: 6px 0 0;
    color: var(--danger);
    font-size: 12px;
    font-weight: 550;
}

.form-error-summary {
    padding: 13px 15px;
    border: 1px solid #dc9d9d;
    border-radius: 9px;
    color: #842f2f;
    background: #fff4f4;
    font-size: 13px;
}

.form-error-summary strong {
    display: block;
}

.form-error-summary ul {
    margin: 6px 0 0;
    padding-left: 19px;
}

.form-error-summary a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-note {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.privacy-note summary {
    padding: 11px 0;
    color: var(--navy);
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
}

.privacy-note p {
    margin: -2px 0 12px;
    font-size: 12px;
    line-height: 1.6;
}

.form-disclaimer {
    margin: -3px 0 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
}

.button__loading {
    display: none;
}

.button--wide.is-loading .button__default {
    display: none;
}

.button--wide.is-loading .button__loading {
    display: inline;
}

.button--wide:disabled {
    cursor: wait;
    opacity: .76;
}

/* Footer */
.landing-footer {
    padding: 56px 0 24px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: var(--navy);
}

.landing-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .65fr .85fr;
    align-items: start;
    gap: 70px;
    padding-bottom: 45px;
}

.brand--light .brand__name strong {
    color: var(--white);
}

.brand--light .brand__name small {
    color: #b3c6d3;
}

.landing-footer__grid > div > p {
    max-width: 420px;
    margin: 16px 0 0;
    color: #b3c6d3;
    font-size: 14px;
}

.landing-footer__grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-footer__grid > div:not(:first-child) > span {
    margin-bottom: 5px;
    color: #87cfe9;
    font-size: 12px;
    font-weight: 650;
    text-transform: uppercase;
}

.landing-footer__grid a {
    font-size: 14px;
}

.landing-footer__grid .footer-office > span {
    margin-bottom: 0;
}

.footer-address {
    width: fit-content;
    max-width: 360px;
    margin: 0;
    padding: 0;
    border: 0;
    color: #b3c6d3;
    background: transparent;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    transition: color .2s;
}

.footer-address:hover {
    color: var(--white);
}

/* Location chooser */
.location-modal[hidden] {
    display: none;
}

.location-modal {
    position: fixed;
    z-index: 900;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.location-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 43, 60, .7);
    backdrop-filter: blur(7px);
}

.location-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(5, 43, 60, .22);
}

.location-modal__dialog h2 {
    padding-right: 44px;
    font-size: 30px;
}

.location-modal__dialog > p:not(.section-kicker) {
    max-width: 500px;
    margin: 12px 0 0;
    font-size: 15px;
}

.location-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    background: var(--surface);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.location-modal__address {
    display: block;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--navy);
    background: var(--surface);
    font-size: 14px;
    line-height: 1.5;
}

.location-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.location-options a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--navy);
    background: var(--white);
    font-size: 14px;
    font-weight: 650;
    transition: border-color .2s, background-color .2s;
}

.location-options a:hover {
    border-color: var(--blue);
    background: var(--surface);
}

.location-options i {
    color: var(--blue);
    font-style: normal;
}

.landing-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.landing-footer__bottom p {
    margin: 0;
    color: #91aab7;
    font-size: 13px;
}

/* Minimal fallback styling for dynamic detail/error pages */
.error-page,
.detail-hero,
.article-header,
.page-hero {
    padding: var(--section-space) 0;
    color: var(--white);
    background: var(--navy);
}

.error-page__inner,
.detail-hero__title,
.article-header__inner,
.page-hero__copy {
    max-width: 850px;
}

.error-page h1,
.detail-hero h1,
.article-header h1,
.page-hero h1 {
    color: var(--white);
    font-size: 40px;
}

.error-page p,
.article-header time,
.back-link {
    color: #b3c6d3;
}

.error-page__code {
    color: #87d9fa;
    font-size: 20px;
}

.section,
.article-body,
.facility-detail {
    padding: var(--section-space) 0;
}

.rich-text {
    max-width: 780px;
}

@media (min-width: 1100px) {
    .landing-products .section-heading,
    .advantages-block .section-heading {
        max-width: none;
    }

    .landing-products .section-heading h2,
    .advantages-block .section-heading h2 {
        white-space: nowrap;
    }
}

/* Responsive */
@media (max-width: 1160px) {
    .landing-nav {
        gap: 19px;
    }
}

@media (max-width: 1100px) {
    .landing-nav {
        display: none;
    }

    .landing-header__actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .landing-header__inner {
        min-height: 80px;
    }
}

@media (max-width: 960px) {
    :root {
        --section-space: 72px;
        --layout-gap: 44px;
    }

    .landing-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: var(--layout-gap);
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .landing-hero__copy {
        max-width: 720px;
    }

    .landing-hero h1 {
        font-size: 35px;
    }

    .landing-hero__lede {
        font-size: 19px;
    }

    .landing-hero__visual {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .proof-strip__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-item:nth-child(n+4) {
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .proof-item:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, .14);
    }

    .production-gallery {
        height: 480px;
    }

    .company-advantages__intro,
    .production-layout,
    .faq-layout,
    .contact-landing__grid {
        grid-template-columns: 1fr;
        gap: var(--layout-gap);
    }

    .company-advantages__copy {
        max-width: 740px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .production-content {
        max-width: 760px;
    }

    .faq-layout .section-heading {
        margin-bottom: 0;
    }

    .contact-landing__copy {
        position: static;
        max-width: 700px;
    }

    .contact-card {
        max-width: 760px;
    }
}

@media (max-width: 720px) {
    :root {
        --section-space: 56px;
        --layout-gap: 36px;
    }

    html {
        scroll-padding-top: 70px;
    }

    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .landing-header__inner {
        min-height: 70px;
    }

    .brand__mark {
        width: 39px;
        height: 39px;
    }

    .brand__mark img {
        width: 39px;
        height: 39px;
    }

    .brand__name strong,
    .brand__name small {
        font-size: 18px;
    }

    .landing-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--layout-gap);
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .landing-hero h1 {
        font-size: 30px;
        line-height: 1.35;
    }

    .landing-hero__lede {
        font-size: 18px;
    }

    .landing-hero__visual {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .proof-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-item {
        min-height: 100px;
        padding: 18px;
        border-top: 1px solid rgba(255, 255, 255, .14);
        border-left: 1px solid rgba(255, 255, 255, .14);
    }

    .proof-item:nth-child(-n+2) {
        border-top: 0;
    }

    .proof-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .proof-item strong {
        font-size: 23px;
    }

.advantages-grid .advantage-icon svg {
    width: 24px;
    height: 24px;
}

.media-carousel--product .media-carousel__slide {
    cursor: pointer;
}

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .company-advantages__copy h2,
    .production-content h2,
    .contact-landing__copy h2 {
        font-size: 30px;
    }

    .company-advantages__copy > p:not(.section-kicker),
    .contact-landing__copy > p:not(.section-kicker) {
        font-size: 16px;
    }

    .product-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-tabs button {
        justify-content: center;
        padding-inline: 10px;
        font-size: 13px;
    }

    .media-carousel--product .media-carousel__slide {
        flex-basis: min(78vw, 300px);
    }

    .company-advantages__image img {
        height: 410px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .advantages-grid .advantage-icon {
        margin-bottom: 14px;
    }

    .production-gallery {
        height: 430px;
    }

    .production-list__item {
        grid-template-columns: 34px 1fr;
        padding: 12px 10px;
    }

    .production-list__text {
        grid-column: 2;
    }

    .faq-list summary {
        min-height: 70px;
        font-size: 15px;
    }

    .faq-list details > p {
        margin-right: 20px;
        margin-left: 48px;
    }

    .landing-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .landing-footer__grid > div:first-child {
        grid-column: 1 / -1;
    }

    .landing-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .location-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .landing-header__actions > .language-switch {
        display: none;
    }

    .landing-header__inner {
        min-height: 65px;
    }

    .landing-hero h1 {
        font-size: 28px;
    }

    .landing-hero__visual {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .landing-hero__label {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .proof-item strong {
        font-size: 20px;
    }

    .proof-item span {
        font-size: 13px;
    }

    .product-tabs button span {
        display: none;
    }

    .section-heading h2,
    .company-advantages__copy h2,
    .production-content h2,
    .contact-landing__copy h2 {
        font-size: 24px;
    }

    .company-advantages__image img {
        height: 350px;
    }

    .production-gallery {
        height: 360px;
    }

    .faq-list summary {
        grid-template-columns: 28px 1fr auto;
        gap: 8px;
    }

    .faq-list summary i {
        width: 28px;
        height: 28px;
    }

    .faq-list details > p {
        margin-left: 36px;
    }

    .landing-footer__grid {
        grid-template-columns: 1fr;
    }

    .landing-footer__grid > div:first-child {
        grid-column: auto;
    }

    .location-modal {
        align-items: end;
        padding: 12px;
    }

    .location-modal__dialog {
        padding: 30px 22px 22px;
        border-radius: 15px;
    }

    .location-modal__dialog h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .landing-header__inner {
        gap: 10px;
    }

    .brand {
        gap: 7px;
    }

    .brand__mark,
    .brand__mark img {
        width: 34px;
        height: 34px;
    }

    .brand__name {
        gap: 5px;
    }

    .brand__name strong,
    .brand__name small {
        font-size: 15px;
        letter-spacing: .08em;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
