:root {
    --ink: #151712;
    --soft-ink: #33382f;
    --muted: #777d73;
    --paper: #ffffff;
    --surface: #ffffff;
    --mist: #f6f7f4;
    --line: rgba(21, 23, 18, .11);
    --line-strong: rgba(21, 23, 18, .2);
    --olive: #59624c;
    --copper: #9a634d;
    --shadow: 0 26px 70px rgba(21, 23, 18, .11);
    --soft-shadow: 0 18px 45px rgba(21, 23, 18, .07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

html,
body {
    width: 100%;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 76px;
    padding: 12px clamp(18px, 5vw, 68px);
    background: transparent;
    border-bottom: 0;
    color: #fff;
    transition: background .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
    background: rgba(18, 20, 16, .54);
    border-bottom-color: transparent;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    backdrop-filter: blur(22px) saturate(1.1);
    -webkit-backdrop-filter: blur(22px) saturate(1.1);
}

.brand {
    display: inline-flex;
    align-items: center;
    color: currentColor;
    line-height: 1;
}

.brand img {
    width: auto;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .22));
    transition: filter .35s ease, height .35s ease;
}

.site-header.is-scrolled .brand img {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .18));
}

.brand img.brand-logo-nilka,
.brand img.brand-logo-elsim {
    max-width: 210px;
}

.brand img.brand-logo-elsim,
.footer-brand img.brand-logo-elsim {
    filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(0, 0, 0, .22));
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
    color: currentColor;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.8vw, 25px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-nav > a,
.nav-item > a {
    position: relative;
    padding: 10px 0;
    color: rgba(255, 255, 255, .88);
}

.site-nav > a:after,
.nav-item > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}

.site-nav > a.active,
.site-nav > a:hover,
.nav-item.active > a,
.nav-item:hover > a,
.nav-item:focus-within > a {
    color: #fff;
}

.site-nav > a.active:after,
.site-nav > a:hover:after,
.nav-item.active > a:after,
.nav-item:hover > a:after,
.nav-item:focus-within > a:after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.submenu {
    position: absolute;
    left: 50%;
    top: calc(100% + 18px);
    z-index: 40;
    display: grid;
    min-width: 280px;
    padding: 12px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .25s ease, transform .25s ease;
    backdrop-filter: blur(18px);
}

.submenu:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.submenu a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--soft-ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, padding-left .25s ease;
}

.submenu a:last-child { border-bottom: 0; }

.submenu a:hover,
.submenu a:focus {
    background: var(--mist);
    color: var(--ink);
    padding-left: 18px;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: max-content;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.language-switch a {
    padding: 8px 6px;
}

.language-switch a.active {
    color: #fff;
}

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(28px, 6vw, 86px);
    padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 68px);
    overflow: hidden;
    background: #fff;
}

.hero:before {
    content: "";
    position: absolute;
    left: clamp(18px, 5vw, 68px);
    right: clamp(18px, 5vw, 68px);
    bottom: 34px;
    height: 1px;
    background: var(--line);
}

.hero-slider {
    position: relative;
    min-height: min(70vh, 680px);
    order: 2;
}

.hero-slider:before {
    content: "RUGS TR";
    position: absolute;
    right: 4%;
    top: 8%;
    z-index: 0;
    color: rgba(21, 23, 18, .035);
    font-size: clamp(72px, 12vw, 190px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .8s ease, transform .8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-slide img {
    position: absolute;
    object-fit: cover;
    background: var(--mist);
    filter: saturate(.92) contrast(1.02);
    box-shadow: var(--shadow);
}

.hero-slide img:first-child {
    right: 0;
    top: 0;
    width: 74%;
    height: 78%;
    animation: premiumFloat 8s ease-in-out infinite;
}

.hero-slide:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 74%;
    height: 78%;
    background: linear-gradient(180deg, rgba(21, 23, 18, 0), rgba(21, 23, 18, .38));
    pointer-events: none;
}

.slide-slogan {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: min(430px, 72%);
    padding: 24px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.slide-slogan span,
.slide-slogan strong {
    display: block;
}

.slide-slogan span {
    margin-bottom: 10px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.slide-slogan strong {
    color: var(--ink);
    font-size: clamp(24px, 3.3vw, 44px);
    line-height: .98;
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    gap: 9px;
    padding: 14px 0;
}

.hero-dots button {
    width: 34px;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(21, 23, 18, .22);
    cursor: pointer;
    transition: width .3s ease, background .3s ease;
}

.hero-dots button.is-active {
    width: 54px;
    background: var(--ink);
}

@keyframes premiumFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.eyebrow {
    display: none;
    margin: 0;
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    margin-bottom: 24px;
    font-size: clamp(52px, 8.6vw, 128px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4.4vw, 64px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.2;
}

.hero-content p {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 21px);
}

.b2b-hero .hero-content {
    max-width: 720px;
}

.b2b-hero h1 {
    font-size: clamp(46px, 6.8vw, 104px);
}

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

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .35s ease, color .35s ease, transform .35s ease;
}

.button:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}

.button:hover {
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
}

.button:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.button.primary {
    border-color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(12px);
}

.button.primary:before {
    background: var(--copper);
}

.button.ghost {
    background: #fff;
    color: var(--ink);
}

.hero-panel {
    position: absolute;
    right: clamp(18px, 5vw, 68px);
    bottom: 54px;
    z-index: 3;
    width: min(330px, calc(100% - 36px));
    padding: 20px 0 0;
    background: #fff;
    border-top: 1px solid var(--line-strong);
}

.hero-panel strong,
.hero-panel span { display: block; }

.hero-panel strong {
    margin-bottom: 5px;
    font-size: 18px;
}

.hero-panel span {
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 68px);
    background: #fff;
}

.section.compact { padding-top: 24px; padding-bottom: 24px; }

.section-kicker {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 26px;
}

.section-kicker h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 3.2vw, 46px);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metric-row div {
    min-height: 128px;
    padding: 24px 28px;
    background: #fff;
    border-right: 1px solid var(--line);
}

.metric-row div:last-child { border-right: 0; }

.metric-row strong {
    display: block;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 42px;
    line-height: 1;
}

.metric-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: clamp(28px, 7vw, 96px);
    align-items: start;
}

.split > p,
.split > div p {
    color: var(--muted);
    font-size: 18px;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 34px;
}

.b2b-grid-section {
    padding-top: clamp(64px, 8vw, 112px);
}

.b2b-grid-section .section-heading {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.b2b-grid-section .section-heading h2 {
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.expertise-grid article {
    background: #fff;
    min-height: 100%;
}

.expertise-grid img {
    width: 100%;
    aspect-ratio: 1.12;
    object-fit: cover;
    filter: saturate(.92);
}

.expertise-grid h3,
.expertise-grid p {
    padding-left: 24px;
    padding-right: 24px;
}

.expertise-grid h3 {
    padding-top: 24px;
    font-size: 24px;
}

.expertise-grid p {
    padding-bottom: 28px;
    color: var(--muted);
}

.production-strip {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.production-strip p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
}

.process-list {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.process-list span {
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: #fff;
    color: var(--soft-ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.visual-process {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
    padding-top: 0;
}

.visual-process figure {
    position: relative;
    min-height: 360px;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.visual-process img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9);
}

.visual-process figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.private-label-band {
    background: var(--mist);
}

.private-label-band .button {
    margin-top: 18px;
}

.export-section {
    border-top: 1px solid var(--line);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.export-grid article {
    min-height: 210px;
    padding: 28px;
    background: #fff;
}

.export-grid strong,
.export-grid span {
    display: block;
}

.export-grid strong {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1;
}

.export-grid span {
    color: var(--muted);
}

.quality-control {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
    border-top: 1px solid var(--line);
}

.quote-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    background: var(--ink);
    color: #fff;
}

.quote-section .eyebrow {
    color: #d4a58f;
}

.quote-section h2 {
    max-width: 900px;
    margin-bottom: 0;
}

.quote-section .button.primary {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
}

.collection-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-auto-rows: 340px;
    gap: 18px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    background: var(--mist);
    isolation: isolate;
}

.collection-card.large { grid-row: span 2; }

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9);
    transition: transform .75s ease, filter .75s ease;
}

.collection-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.02);
}

.collection-card:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(21, 23, 18, .62));
    z-index: 1;
}

.collection-card span {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
}

.band {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.quality-list span,
.pill-list span {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
    color: var(--soft-ink);
    font-weight: 900;
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-content: end;
    padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 68px);
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.page-hero:before {
    content: "";
    position: absolute;
    right: clamp(18px, 5vw, 68px);
    top: 44px;
    bottom: 44px;
    width: min(42vw, 560px);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(.9) contrast(1.02);
    opacity: .92;
}

.page-hero:after {
    content: "";
    position: absolute;
    right: clamp(18px, 5vw, 68px);
    top: 44px;
    bottom: 44px;
    width: min(42vw, 560px);
    border: 1px solid rgba(255, 255, 255, .56);
    transform: translate(-18px, 18px);
    pointer-events: none;
}

.page-hero > * {
    position: relative;
    z-index: 1;
    max-width: min(820px, 58vw);
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 84px);
    line-height: .94;
}

.contact-hero {
    align-content: center;
    justify-items: center;
    text-align: center;
    min-height: clamp(500px, 58vw, 760px);
    color: #fff;
    background: #151613;
    border-bottom: 0;
}

.contact-hero > * {
    max-width: min(920px, 90vw);
}

.contact-hero:before {
    display: none;
}

.contact-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    width: auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .42));
    border: 0;
    transform: none;
    pointer-events: none;
}

.contact-hero > :not(.contact-hero-image) {
    z-index: 2;
}

.contact-hero h1 {
    opacity: .5;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    text-wrap: balance;
    text-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}

.contact-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border: 0;
}

.image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.image-text.reverse img { order: 2; }

.image-text img {
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
    filter: saturate(.92);
    box-shadow: var(--soft-shadow);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill-list span {
    min-height: 44px;
    border: 1px solid var(--line);
}

.cards-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.cards-three article,
.contact-card,
.contact-form {
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
}

.about-page {
    background: #fff;
}

.about-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(560px, 62vw, 820px);
    padding: clamp(112px, 14vw, 180px) clamp(18px, 5vw, 68px) clamp(72px, 9vw, 124px);
    overflow: hidden;
    background: #151613;
    border-bottom: 0;
    color: #fff;
}

.about-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .28) 58%, rgba(0, 0, 0, .18));
    pointer-events: none;
}

.about-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.about-hero h1,
.about-section h2,
.about-vision h2,
.about-cta h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.about-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.04;
}

.about-hero p:not(.eyebrow) {
    max-width: 610px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.72;
}

.about-hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    overflow: hidden;
    background: #151613;
}

.about-hero-visual:before {
    display: none;
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.88) contrast(1.02);
}

.about-section {
    padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 68px);
    background: #fff;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(260px, .58fr) minmax(420px, 1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
    padding-top: clamp(46px, 6vw, 74px);
    padding-bottom: clamp(46px, 6vw, 74px);
    background: #f7f7f3;
    border-bottom: 1px solid var(--line);
}

.about-intro > div:first-child {
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--line);
}

.about-section h2 {
    max-width: 680px;
    margin-bottom: 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.12;
}

.about-text-stack {
    max-width: 760px;
    display: grid;
    gap: 0;
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--line);
}

.about-text-stack p {
    margin: 0;
    padding: 0 0 24px;
    color: var(--soft-ink);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.72;
}

.about-text-stack p + p {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.about-text-stack p:last-child {
    padding-bottom: 0;
}

.global-block p,
.about-vision p,
.about-cta p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.about-process {
    background: #f7f7f3;
}

.about-section-head {
    max-width: 760px;
    margin-bottom: clamp(26px, 4vw, 42px);
}

.about-section-head > p:last-child {
    color: var(--muted);
    font-size: 17px;
}

.process-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line);
}

.process-columns article {
    min-height: 210px;
    padding: 26px clamp(18px, 2vw, 28px) 28px;
    border-right: 1px solid var(--line);
}

.process-columns article:last-child {
    border-right: 0;
}

.process-columns span {
    display: inline-block;
    margin-bottom: 26px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.process-columns h3 {
    max-width: 230px;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 18px;
}

.process-columns p {
    max-width: 250px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.global-block {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, .86fr);
    gap: clamp(32px, 6vw, 82px);
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.global-block figure {
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.global-block img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
    filter: saturate(.9) contrast(1.01);
}

.global-block > div {
    max-width: 620px;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.market-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border: 1px solid var(--line);
    color: var(--soft-ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-vision {
    padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 68px);
    background: var(--ink);
    color: #fff;
}

.about-vision > div {
    max-width: 980px;
}

.about-vision .eyebrow {
    color: #d4a58f;
}

.about-vision h2 {
    max-width: 850px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.08;
}

.about-vision p {
    max-width: 760px;
    color: rgba(255, 255, 255, .72);
}

.about-vision strong {
    display: block;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.about-cta > div:first-child {
    max-width: 760px;
}

.about-cta h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 3.4vw, 50px);
    line-height: 1.1;
}

.about-cta p {
    max-width: 600px;
    margin-bottom: 0;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.about-cta .button.primary {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    backdrop-filter: none;
}

.about-cta .button.ghost {
    border-color: var(--line-strong);
}

.cards-three p { color: var(--muted); }

.collections-page {
    background: #fff;
}

.collections-hero {
    min-height: 0;
    display: grid;
    gap: clamp(26px, 4vw, 44px);
    padding: clamp(112px, 12vw, 150px) clamp(18px, 5vw, 68px) clamp(54px, 7vw, 82px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.collections-hero > div:first-child {
    max-width: 760px;
}

.collections-hero h1,
.collection-copy h2,
.texture-head h2,
.collections-cta h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.collections-hero h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(38px, 4.6vw, 66px);
    line-height: 1.04;
}

.collections-hero p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.72;
}

.collections-hero-board {
    width: min(100%, 1380px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 22px);
}

.hero-board-item {
    position: relative;
    overflow: hidden;
    background: var(--mist);
    aspect-ratio: 4 / 3;
}

.hero-board-item.large {
    grid-row: auto;
}

.hero-board-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
    transition: transform .7s ease, filter .7s ease;
}

.hero-board-item:hover img {
    transform: scale(1.025);
    filter: saturate(.98) contrast(1.04);
}

.hero-board-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 36px);
    padding: 9px 12px;
    background: rgba(255, 255, 255, .86);
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.collection-editorial {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1.12fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: center;
    padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.collection-editorial.reverse {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr);
}

.collection-editorial.reverse .collection-copy {
    order: 2;
}

.collection-editorial.warm {
    background: #fbf7f2;
}

.collection-copy {
    max-width: 560px;
}

.collection-number {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2em;
}

.collection-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(40px, 4.2vw, 64px);
    line-height: 1.02;
}

.collection-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.collection-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0 30px;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.collection-features li {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--soft-ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.collection-features li:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.collection-link:after {
    content: "";
    width: 46px;
    height: 1px;
    background: currentColor;
    transition: width .25s ease;
}

.collection-link:hover:after {
    width: 68px;
}

.collections-page .collection-link {
    min-height: 48px;
    padding: 0 22px;
    background: var(--ink);
    color: #fff;
}

.collections-page .collection-link:after {
    display: none;
}

.collections-page .collection-link:hover {
    background: var(--copper);
}

.collection-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.collection-visual:before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.64);
    pointer-events: none;
}

.collection-visual img {
    width: 100%;
    aspect-ratio: 1.32;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
    transition: transform .7s ease, filter .7s ease;
}

.collection-editorial:hover .collection-visual img {
    transform: scale(1.025);
    filter: saturate(.98) contrast(1.03);
}

.texture-section {
    padding: clamp(62px, 8vw, 106px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.texture-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.texture-head h2 {
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.08;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.texture-grid figure {
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.texture-grid img {
    width: 100%;
    aspect-ratio: .92;
    object-fit: cover;
    filter: saturate(.88) contrast(1.04);
    transition: transform .6s ease;
}

.texture-grid figure:hover img {
    transform: scale(1.035);
}

.collections-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(56px, 7vw, 90px) clamp(18px, 5vw, 68px);
    background: var(--ink);
    color: #fff;
}

.collections-cta .eyebrow {
    color: #d4a58f;
}

.collections-cta > div:first-child {
    max-width: 790px;
}

.collections-cta h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 1.1;
}

.collections-cta p {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
}

.collections-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.collections-cta .button.primary {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
    backdrop-filter: none;
}

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

.detail-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(560px, 62vw, 820px);
    padding: clamp(112px, 14vw, 180px) clamp(18px, 5vw, 68px) clamp(72px, 9vw, 124px);
    overflow: hidden;
    background: #151613;
    border-bottom: 0;
    color: #fff;
}

.detail-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .26) 56%, rgba(0, 0, 0, .18));
    pointer-events: none;
}

.detail-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 610px;
}

.detail-hero h1,
.detail-section-head h2,
.full-collection-access h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.detail-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
}

.detail-hero p:not(.eyebrow),
.full-collection-access p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.detail-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, .82);
}

.detail-hero figure {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    overflow: hidden;
    background: #151613;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
}

.selected-designs,
.archive-panel {
    padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.detail-section-head {
    max-width: 720px;
    margin-bottom: 30px;
}

.detail-section-head h2 {
    font-size: clamp(32px, 3.8vw, 56px);
    line-height: 1.08;
}

.design-gallery,
.full-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 28px);
}

.design-gallery article,
.full-collection-grid article {
    min-width: 0;
}

.design-gallery img,
.full-collection-grid img {
    width: 100%;
    aspect-ratio: .92;
    object-fit: cover;
    background: var(--mist);
    filter: saturate(.9) contrast(1.02);
}

.design-gallery span,
.full-collection-grid span,
.full-collection-grid small {
    display: block;
    padding-top: 12px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.full-collection-grid small {
    padding-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.full-collection-access {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 68px);
    background: #f7f7f3;
    border-bottom: 1px solid var(--line);
}

.full-collection-access > div {
    max-width: 760px;
}

.full-collection-access h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 3.4vw, 50px);
    line-height: 1.1;
}

.full-collection-access .button.primary {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    backdrop-filter: none;
}

.access-dialog {
    width: min(500px, calc(100% - 32px));
    border: 0;
    padding: 0;
    background: transparent;
}

.access-dialog::backdrop {
    background: rgba(12, 13, 10, .52);
    backdrop-filter: blur(10px);
}

.access-dialog-panel {
    position: relative;
    display: grid;
    gap: 16px;
    padding: clamp(26px, 4vw, 42px);
    background: #fff;
}

.access-dialog h2 {
    margin-bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.08;
}

.access-dialog p:not(.eyebrow),
.access-dialog small {
    margin: 0;
    color: var(--muted);
}

.access-dialog label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.access-dialog input {
    width: 100%;
    border: 1px solid var(--line);
    padding: 14px 15px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.access-dialog small a {
    color: var(--ink);
    font-weight: 900;
}

.production-page {
    background: #fff;
}

.production-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(560px, 62vw, 820px);
    padding: clamp(112px, 14vw, 180px) clamp(18px, 5vw, 68px) clamp(72px, 9vw, 124px);
    overflow: hidden;
    background: #151613;
    border-bottom: 0;
    color: #fff;
}

.production-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .26) 56%, rgba(0, 0, 0, .18));
    pointer-events: none;
}

.production-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.production-hero h1,
.production-section-head h2,
.production-split h2,
.technology-section h2,
.production-timeline-section h2,
.quality-section h2,
.responsible-section h2,
.packing-section h2,
.production-final-cta h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.production-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
}

.production-hero p:not(.eyebrow),
.production-section-head p,
.production-split p,
.technology-section p,
.quality-section p,
.responsible-section p,
.packing-section p,
.production-final-cta p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.production-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, .82);
}

.production-hero figure,
.production-split figure,
.technology-section figure,
.quality-section figure,
.packing-section figure {
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.production-hero figure {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #151613;
}

.production-hero img,
.production-split img,
.technology-section img,
.quality-section img,
.packing-section img {
    width: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
}

.production-hero img {
    height: 100%;
}

.production-metrics,
.production-timeline-section,
.capability-section,
.certificate-section,
.private-production-section {
    padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.production-section-head {
    max-width: 820px;
    margin-bottom: 34px;
}

.production-section-head h2,
.production-split h2,
.technology-section h2,
.quality-section h2,
.responsible-section h2,
.packing-section h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 3.8vw, 58px);
    line-height: 1.08;
}

.production-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line);
}

.production-metric-grid div {
    min-height: 150px;
    padding: 26px clamp(18px, 2.5vw, 34px);
    border-right: 1px solid var(--line);
}

.production-metric-grid div:last-child {
    border-right: 0;
}

.production-metric-grid strong {
    display: block;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: .96;
}

.production-metric-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.production-split,
.packing-section {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
    padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.production-split > div,
.packing-section > div {
    max-width: 650px;
}

.production-split img,
.packing-section img {
    aspect-ratio: 1.18;
}

.technology-section {
    padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 68px);
    background: #f7f7f3;
    border-bottom: 1px solid var(--line);
}

.technology-section figure {
    margin-top: 22px;
}

.technology-section img {
    aspect-ratio: 2.18;
}

.technology-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    border-top: 1px solid var(--line-strong);
}

.technology-facts div {
    padding: 24px 28px 0 0;
    border-right: 1px solid var(--line);
}

.technology-facts div:last-child {
    border-right: 0;
    padding-left: 28px;
}

.technology-facts strong {
    display: block;
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1;
}

.technology-facts span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.production-timeline {
    display: grid;
    grid-template-columns: repeat(7, minmax(170px, 1fr));
    gap: 1px;
    overflow-x: auto;
    border: 1px solid var(--line);
    background: var(--line);
}

.production-timeline article {
    min-height: 280px;
    min-width: 170px;
    background: #fff;
}

.production-timeline img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: saturate(.88) contrast(1.02);
}

.production-timeline span,
.capability-grid span {
    display: block;
    padding: 18px 18px 8px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
}

.production-timeline strong {
    display: block;
    padding: 0 18px 22px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.capability-grid article {
    background: #fff;
}

.capability-grid img {
    width: 100%;
    aspect-ratio: 1.05;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
}

.capability-grid h3 {
    padding: 0 22px 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 800;
}

.quality-section {
    display: grid;
    grid-template-columns: minmax(280px, .76fr) minmax(240px, .52fr) minmax(0, .88fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 68px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.quality-flow {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line);
}

.quality-flow span {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quality-flow span:not(:last-child):after {
    content: "↓";
    margin-left: auto;
    color: var(--copper);
}

.quality-flow span:last-child {
    border-bottom: 0;
}

.quality-section img {
    aspect-ratio: 1.05;
}

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

.certificate-grid article {
    padding: clamp(16px, 2.2vw, 26px);
    background: #fff;
}

.certificate-preview {
    height: clamp(420px, 42vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
}

.certificate-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease, opacity .35s ease;
}

.certificate-preview:hover img {
    opacity: .94;
    transform: scale(1.01);
}

.certificate-grid h3 {
    margin-bottom: 4px;
    font-size: 18px;
}

.certificate-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.responsible-section {
    padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 68px);
    background: var(--ink);
    color: #fff;
}

.responsible-section > div {
    max-width: 900px;
}

.responsible-section .eyebrow {
    color: #d4a58f;
}

.responsible-section p {
    max-width: 760px;
    color: rgba(255,255,255,.72);
}

.responsible-section span {
    display: block;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.private-production-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line);
}

.private-production-list span {
    min-height: 84px;
    display: flex;
    align-items: center;
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.private-production-list span:nth-child(3n) {
    border-right: 0;
}

.private-production-list span:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.production-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 68px);
    background: var(--ink);
    color: #fff;
}

.production-final-cta .eyebrow {
    color: #d4a58f;
}

.production-final-cta h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 1.05;
}

.production-final-cta p {
    max-width: 680px;
    color: rgba(255,255,255,.72);
}

.production-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.production-final-cta .button.primary {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
    backdrop-filter: none;
}

.collection-section {
    border-bottom: 1px solid var(--line);
}

.collection-intro {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 520px);
    gap: 36px;
    align-items: end;
    margin-bottom: 28px;
}

.collection-intro p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.showcase-slider {
    position: relative;
    height: clamp(340px, 52vw, 600px);
    overflow: hidden;
    background: var(--mist);
}

.showcase-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: saturate(.9);
    animation: galleryFade 15s infinite;
}

.showcase-slider img:nth-child(2) { animation-delay: 5s; }
.showcase-slider img:nth-child(3) { animation-delay: 10s; }

@keyframes galleryFade {
    0%, 28% { opacity: 1; transform: scale(1); }
    34%, 100% { opacity: 0; transform: scale(1.035); }
}

.model-grid,
.locked-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 18px;
    background: var(--line);
    border: 1px solid var(--line);
}

.locked-gallery { padding-top: 0; }
.locked-gallery[hidden] { display: none; }

.model-card,
.more-card {
    min-height: 304px;
    background: #fff;
    transition: transform .38s ease, box-shadow .38s ease;
}

.model-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-6px);
    box-shadow: var(--soft-shadow);
}

.model-card img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: contain;
    padding: 16px;
    background: #f8f8f6;
    transition: transform .45s ease;
}

.model-card:hover img { transform: scale(1.025); }

.model-card strong,
.model-card span {
    display: block;
    padding: 0 18px;
}

.model-card strong {
    padding-top: 18px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.2;
}

.model-card span {
    padding-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.more-card {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 20px;
    padding: 26px;
    background: var(--ink);
    color: #fff;
}

.more-card span {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 0;
    align-items: stretch;
    background: var(--line);
    border: 1px solid var(--line);
}

.contact-card,
.contact-form {
    border: 0;
    box-shadow: none;
}

.contact-card {
    display: grid;
    align-content: start;
    border-right: 1px solid var(--line);
}

.contact-card h2,
.contact-form h2 {
    margin-bottom: 26px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.contact-info-list {
    display: grid;
    gap: 12px;
}

.contact-info-list article,
.contact-info-list a {
    display: grid;
    gap: 7px;
    min-height: 98px;
    padding: 18px 20px;
    background: transparent;
    border: 1px solid var(--line);
}

.contact-info-list span {
    color: var(--copper);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-info-list p,
.contact-info-list strong {
    margin: 0;
    color: var(--soft-ink);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.55;
}

.contact-info-list strong {
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form-head {
    max-width: 680px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.password-dialog input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 15px 16px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.contact-form input {
    min-height: 54px;
}

.contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.password-dialog input:focus {
    outline: 1px solid var(--ink);
    outline-offset: 0;
}

.contact-form .button.primary {
    width: fit-content;
    min-width: 140px;
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    backdrop-filter: none;
}

@media (max-width: 980px) {
    .contact-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

.map-section iframe {
    width: 100%;
    height: 440px;
}

.password-dialog {
    width: min(440px, calc(100% - 32px));
    border: 0;
    padding: 0;
    background: #fff;
    box-shadow: var(--shadow);
}

.password-dialog::backdrop { background: rgba(21, 23, 18, .54); }

.password-dialog form {
    position: relative;
    padding: 32px;
}

.dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.dialog-error {
    margin: 8px 0 0;
    color: #a33223;
    font-weight: 900;
}

.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 68px) 24px;
    background: rgba(18, 20, 16, .58);
    color: rgba(255, 255, 255, .82);
    border-top: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(22px) saturate(1.1);
    -webkit-backdrop-filter: blur(22px) saturate(1.1);
}

main:not(:has(.b2b-hero)) + .footer-slider + .site-footer {
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1fr 1.1fr;
    gap: 32px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: #fff;
}

.footer-brand img {
    width: auto;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 5px 18px rgba(0, 0, 0, .24));
}

.footer-brand img.brand-logo-nilka,
.footer-brand img.brand-logo-elsim {
    max-width: 190px;
}

.footer-partner-brands {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.footer-partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.footer-partner-logos img {
    width: auto;
    max-width: 150px;
    height: 46px;
    object-fit: contain;
}

.footer-partner-logos img.is-elsim {
    filter: brightness(0) invert(1);
}

.footer-partner-brands p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.5;
}

.site-footer h3 {
    color: #fff;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 7px 0;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: 13px;
}

.footer-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    background: #11130f;
    border-top: 1px solid var(--line);
}

.footer-slider-track {
    display: flex;
    width: max-content;
    animation: footerSlide 42s linear infinite;
}

.footer-slider img {
    width: clamp(260px, 26vw, 460px);
    height: clamp(260px, 24vw, 420px);
    flex: 0 0 auto;
    object-fit: cover;
    filter: saturate(.85) contrast(1.04) brightness(.82);
}

.footer-slider:hover .footer-slider-track {
    animation-play-state: paused;
}

@keyframes footerSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Reference-inspired full-screen B2B home hero */
.b2b-hero {
    min-height: 100vh;
    display: block;
    padding: 0;
    background: #11130f;
    color: #fff;
}

.b2b-hero:before {
    display: none;
}

.b2b-hero .hero-slider {
    position: absolute;
    inset: 0;
    min-height: 0;
    order: initial;
}

.b2b-hero .hero-slider:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(15, 17, 13, .78), rgba(15, 17, 13, .44) 46%, rgba(15, 17, 13, .08)),
        linear-gradient(180deg, rgba(15, 17, 13, .1), rgba(15, 17, 13, .58));
}

.b2b-hero .hero-slide {
    inset: 0;
    min-height: 100%;
    transform: none;
}

.b2b-hero .hero-slide img,
.b2b-hero .hero-slide img:first-child {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    box-shadow: none;
    animation: none;
    filter: saturate(.9) contrast(1.04);
}

.b2b-hero .hero-slide:after {
    display: none;
}

.slide-copy {
    position: absolute;
    left: clamp(18px, 7vw, 96px);
    bottom: clamp(96px, 14vh, 150px);
    z-index: 4;
    max-width: min(850px, 76vw);
}

.b2b-hero .slide-slogan {
    position: absolute;
    left: clamp(18px, 7vw, 96px);
    bottom: clamp(96px, 14vh, 150px);
    z-index: 4;
    width: auto;
    max-width: min(850px, 76vw);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.slide-copy h1,
.b2b-hero .slide-slogan h1 {
    max-width: 840px;
    margin-bottom: 18px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.01;
    font-weight: 900;
    letter-spacing: -.02em;
}

.slide-copy p,
.b2b-hero .slide-slogan p {
    max-width: 690px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.58;
}

.slide-copy .button.primary,
.b2b-hero .slide-slogan .button.primary {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
}

.b2b-hero .hero-dots {
    left: clamp(18px, 7vw, 96px);
    right: auto;
    bottom: clamp(28px, 5vh, 54px);
    z-index: 5;
}

.b2b-hero .hero-dots button {
    background: rgba(255, 255, 255, .36);
}

.b2b-hero .hero-dots button.is-active {
    background: #fff;
}

.b2b-hero + .section.compact {
    padding-top: clamp(42px, 6vw, 76px);
}

@media (max-width: 980px) {
    .b2b-hero {
        min-height: 760px;
    }

    .slide-copy,
    .b2b-hero .slide-slogan {
        max-width: calc(100% - 36px);
        bottom: 150px;
    }

}

@media (max-width: 560px) {
    .b2b-hero {
        min-height: 680px;
        padding: 0;
    }

    .slide-copy,
    .b2b-hero .slide-slogan {
        left: 16px;
        bottom: 154px;
        max-width: calc(100% - 32px);
    }

    .slide-copy h1,
    .b2b-hero .slide-slogan h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 50px);
        line-height: 1.03;
    }

    .slide-copy p,
    .b2b-hero .slide-slogan p {
        max-width: 100%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *:before,
    *:after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        position: sticky;
        min-height: 72px;
        background: rgba(18, 20, 16, .72);
        backdrop-filter: blur(22px) saturate(1.1);
        -webkit-backdrop-filter: blur(22px) saturate(1.1);
    }

    .brand {
        grid-column: 1;
    }

    .brand img {
        height: 40px;
        max-width: 190px;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
    }

    .site-nav {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 8px 0 12px;
        overflow: visible;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .site-header.is-menu-open .site-nav {
        display: flex;
    }

    .site-nav > a,
    .nav-item > a {
        padding: 12px 0;
        width: 100%;
    }

    .nav-item {
        align-items: flex-start;
        flex-direction: column;
        min-width: 0;
    }

    .submenu {
        position: static;
        min-width: 0;
        padding: 2px 0 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        backdrop-filter: none;
    }

    .submenu:before { display: none; }

    .submenu a {
        padding: 4px 0;
        border-bottom: 0;
        color: var(--muted);
        font-size: 10px;
        letter-spacing: .06em;
    }

    .submenu a:hover,
    .submenu a:focus {
        padding-left: 0;
        background: transparent;
    }

    .header-actions {
        grid-column: 3;
        justify-content: flex-start;
    }

    .language-switch {
        gap: 12px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 50px;
        padding-bottom: 110px;
    }

    .hero-slider {
        min-height: 520px;
        order: 0;
    }

    .hero-panel {
        left: 18px;
        right: 18px;
        bottom: 30px;
    }

    .metric-row,
    .section-kicker,
    .expertise-grid,
    .production-strip,
    .visual-process,
    .export-grid,
    .quality-control,
    .quote-section,
    .collection-grid,
    .band,
    .image-text,
    .cards-three,
    .about-hero,
    .about-intro,
    .process-columns,
    .global-block,
    .about-cta,
    .collection-editorial,
    .collection-editorial.reverse,
    .collections-hero-board,
    .detail-hero,
    .production-hero,
    .production-split,
    .quality-section,
    .packing-section,
    .production-final-cta,
    .design-gallery,
    .full-collection-access,
    .full-collection-grid,
    .texture-grid,
    .collections-cta,
    .collection-intro,
    .model-grid,
    .locked-gallery,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .visual-process figure {
        min-height: 300px;
    }

    .metric-row div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .metric-row div:last-child { border-bottom: 0; }
    .collection-card.large { grid-row: auto; }
    .image-text.reverse img { order: 0; }

    .page-hero > * {
        max-width: 100%;
    }

    .page-hero:before,
    .page-hero:after {
        opacity: .16;
        width: auto;
        left: 18px;
    }

    .about-hero {
        padding-top: 104px;
        min-height: 640px;
    }

    .contact-hero,
    .detail-hero,
    .production-hero {
        min-height: 640px;
        padding-top: 104px;
    }

    .about-hero-copy,
    .global-block > div,
    .about-cta > div:first-child {
        max-width: 100%;
    }

    .about-hero-visual img,
    .global-block img {
        aspect-ratio: 1.22;
    }

    .process-columns article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .process-columns article:last-child {
        border-bottom: 0;
    }

    .about-cta {
        align-items: start;
    }

    .about-cta-actions {
        justify-content: flex-start;
    }

    .collections-hero-board { min-height: auto; }
    .hero-board-item.large { grid-row: auto; }
    .hero-board-item { min-height: 280px; }

    .collection-editorial.reverse .collection-copy {
        order: 0;
    }

    .collection-visual img {
        aspect-ratio: 1.08;
    }

    .collections-cta {
        align-items: start;
    }

    .collections-cta-actions {
        justify-content: flex-start;
    }

    .detail-hero {
        align-items: start;
    }

    .detail-hero img {
        aspect-ratio: 1.16;
    }

    .full-collection-access {
        align-items: start;
    }

    .production-metric-grid,
    .capability-grid,
    .certificate-grid,
    .private-production-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .production-metric-grid div:nth-child(2n),
    .private-production-list span:nth-child(2n) {
        border-right: 0;
    }

    .production-metric-grid div:nth-child(-n + 2),
    .private-production-list span:nth-child(-n + 4) {
        border-bottom: 1px solid var(--line);
    }

    .technology-section img {
        aspect-ratio: 1.28;
    }

    .technology-facts,
    .production-final-cta {
        grid-template-columns: 1fr;
    }

    .technology-facts div,
    .technology-facts div:last-child {
        padding-left: 0;
        border-right: 0;
    }

    .production-cta-actions {
        justify-content: flex-start;
    }

    .production-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-x: visible;
    }

    .production-timeline article {
        min-width: 0;
    }

    .contact-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 64px;
        padding: 10px 16px;
    }

    .brand img {
        height: 34px;
        max-width: 150px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .site-nav {
        font-size: 11px;
        letter-spacing: .1em;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .header-actions {
        min-width: 54px;
    }

    .language-switch {
        gap: 10px;
        font-size: 11px;
        letter-spacing: .08em;
    }

    .section { padding-left: 16px; padding-right: 16px; }
    .hero { padding-left: 16px; padding-right: 16px; }
    .hero-slider { min-height: 470px; }
    .hero-slide img:first-child,
    .hero-slide:after {
        width: 100%;
        height: 76%;
    }
    .slide-slogan {
        width: calc(100% - 20px);
        padding: 18px;
    }

    .b2b-hero .slide-slogan {
        width: auto;
        padding: 0;
    }

    .b2b-hero .slide-slogan .button.primary,
    .slide-copy .button.primary {
        min-height: 44px;
        padding: 0 18px;
        font-size: 11px;
    }

    .quality-list { grid-template-columns: 1fr; }
    .page-hero { min-height: 520px; }
    .model-card, .more-card { min-height: 260px; }
    .about-section,
    .about-vision,
    .about-cta {
        padding-left: 16px;
        padding-right: 16px;
    }
    .about-hero {
        padding-left: 16px;
        padding-right: 16px;
        min-height: 560px;
    }
    .about-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.02;
    }
    .about-hero p:not(.eyebrow),
    .contact-hero h1 {
        max-width: 100%;
    }
    .about-section h2,
    .about-vision h2,
    .about-cta h2 {
        font-size: 28px;
    }
    .about-text-stack p,
    .global-block p,
    .about-vision p,
    .about-cta p,
    .collection-copy p,
    .collections-cta p {
        font-size: 16px;
    }
    .collections-hero,
    .collection-editorial,
    .detail-hero,
    .production-hero,
    .production-metrics,
    .production-split,
    .technology-section,
    .production-timeline-section,
    .capability-section,
    .quality-section,
    .certificate-section,
    .responsible-section,
    .private-production-section,
    .packing-section,
    .production-final-cta,
    .selected-designs,
    .archive-panel,
    .full-collection-access,
    .texture-section,
    .collections-cta {
        padding-left: 16px;
        padding-right: 16px;
    }
    .collections-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .detail-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .production-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .contact-hero,
    .detail-hero,
    .production-hero {
        min-height: 560px;
        padding-top: 94px;
        padding-bottom: 72px;
    }
    .collection-copy h2,
    .detail-section-head h2,
    .full-collection-access h2,
    .production-section-head h2,
    .production-split h2,
    .technology-section h2,
    .production-timeline-section h2,
    .quality-section h2,
    .responsible-section h2,
    .packing-section h2,
    .production-final-cta h2,
    .texture-head h2,
    .collections-cta h2 {
        font-size: 31px;
    }
    .collection-features {
        grid-template-columns: 1fr;
    }
    .collection-features li:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
    .collection-features li:last-child {
        border-bottom: 0;
    }
    .texture-grid img {
        aspect-ratio: 1.12;
    }
    .hero-board-item {
        min-height: 230px;
    }
    .design-gallery,
    .full-collection-grid {
        grid-template-columns: 1fr;
    }
    .production-metric-grid,
    .capability-grid,
    .certificate-grid,
    .private-production-list {
        grid-template-columns: 1fr;
    }
    .production-metric-grid div,
    .private-production-list span,
    .private-production-list span:nth-child(2n),
    .private-production-list span:nth-child(3n) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .production-metric-grid div:last-child,
    .private-production-list span:last-child {
        border-bottom: 0;
    }
    .technology-facts {
        grid-template-columns: 1fr;
    }
    .technology-facts div:last-child {
        padding-left: 0;
    }

    .production-timeline {
        grid-template-columns: 1fr;
    }

    .production-timeline article {
        min-height: auto;
    }

    .production-timeline img {
        aspect-ratio: 1.45;
    }

    .contact-card,
    .contact-form {
        padding: 22px 18px;
    }

    .contact-card h2,
    .contact-form h2 {
        font-size: 32px;
    }

    .contact-info-list article,
    .contact-info-list a {
        padding: 16px;
    }

    .footer-slider-track {
        gap: 12px;
        padding: 16px;
    }

    .footer-slider-track img {
        width: 220px;
        height: 120px;
    }

    .site-footer {
        padding: 34px 16px 20px;
    }

    .footer-brand img {
        height: 46px;
    }

    .footer-partner-logos {
        gap: 12px;
    }

    .footer-partner-logos img {
        height: 38px;
        max-width: 128px;
    }

    .footer-bottom {
        margin-top: 28px;
        font-size: 12px;
    }

    .access-dialog {
        width: calc(100% - 24px);
    }

    .access-dialog form {
        padding: 24px 18px;
    }
}

@media (min-width: 561px) and (max-width: 980px) {
    .design-gallery,
    .full-collection-grid,
    .texture-grid,
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .b2b-hero {
        min-height: 760px;
        padding: 0;
    }
}

@media (max-width: 560px) {
    .b2b-hero {
        min-height: 680px;
        padding: 0;
    }
}
