:root {
    --black: #030303;
    --white: #ffffff;
    --ink: #202020;
    --muted: #77736d;
    --paper: #f4f1ed;
    --sand: #c8baaa;
    --gray: #c8c8c3;
    --line: rgba(255,255,255,.18);
}

@font-face {
    font-family: "LesohLato";
    src: url("/assets/fonts/lato/lato-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "LesohLato";
    src: url("/assets/fonts/lato/lato-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "LesohLato";
    src: url("/assets/fonts/lato/lato-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "LesohLato", Arial, Helvetica, sans-serif;
    font-weight: 300;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
main img.lazy-image {
    filter: blur(18px);
    opacity: .72;
    transform: scale(1.045);
    transition: filter .8s ease, opacity .8s ease, transform .8s ease;
}
main img.lazy-image.is-loaded {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    min-height: 52px;
    padding: 0 22px;
    color: #fff;
    background: rgba(0,0,0,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background-color .35s ease, border-color .35s ease;
}
.site-header.is-home {
    background: transparent;
    border-bottom-color: transparent;
}
.page-home .site-header.is-home.home-scrolled {
    background: rgba(0,0,0,.9);
    border-bottom-color: rgba(255,255,255,.12);
}
.brand {
    display: block;
    width: 120px;
    line-height: 0;
}
.brand img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 2.4vw, 42px);
}
.search-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 22px;
    height: 22px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.search-link span {
    display: block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}
.search-link span:after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility 0s linear .24s;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.search-panel {
    width: min(632px, 72vw);
}
.search-input {
    display: block;
    width: 100%;
    height: 56px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.9);
    border-radius: 0;
    outline: 0;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    caret-color: #fff;
}
.search-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.search-input::placeholder {
    color: rgba(255,255,255,.55);
}
.nav-item { position: relative; padding: 20px 0; }
.nav-item > a {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}
.nav-item.active > a,
.nav-item:hover > a { color: #fff; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    gap: 14px;
    min-width: 250px;
    padding: 26px 30px;
    color: #111;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 55px rgba(0,0,0,.16);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
}
.mega-menu a { color: #4d4a46; font-size: 13px; }
.mega-menu a:hover { color: #000; }
.nav-item:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.menu-toggle {
    display: none;
    justify-self: end;
    width: 26px;
    height: 26px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.menu-icon,
.menu-icon:before,
.menu-icon:after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
}
.menu-icon {
    position: relative;
    margin: 0 auto;
}
.menu-icon:before,
.menu-icon:after {
    content: "";
    position: absolute;
    left: 0;
}
.menu-icon:before { top: -6px; }
.menu-icon:after { top: 6px; }
.nav-open .menu-icon {
    background: transparent;
}
.nav-open .menu-icon:before {
    top: 0;
    transform: rotate(45deg);
}
.nav-open .menu-icon:after {
    top: 0;
    transform: rotate(-45deg);
}

.home-hero, .page-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: #111;
}
.home-hero:after, .page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.08) 42%, rgba(0,0,0,.34));
}
.hero-copy {
    position: absolute;
    left: clamp(24px, 7vw, 118px);
    bottom: clamp(54px, 9vw, 120px);
    z-index: 2;
    max-width: 610px;
    color: #fff;
}
.kicker {
    margin: 0 0 16px;
    color: inherit;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(52px, 8vw, 128px);
    font-weight: 300;
    line-height: .95;
}
.hero-copy p:not(.kicker) {
    margin: 0 0 28px;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.6;
}
.product-detail-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 88px 24px 34px;
    color: rgba(255,255,255,.86);
    background: #050100;
    text-align: center;
}
.product-detail-intro h1 {
    margin: 0 0 23px;
    color: rgba(255,255,255,.92);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
}
.product-detail-intro p {
    width: min(675px, 92vw);
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.45;
}
.product-detail-showcase {
    color: #22262b;
    background: #fff;
}
.product-detail-heading {
    padding: 11px 16px 10px;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    color: #33373a;
    font-size: 12px;
    line-height: 1;
}
.product-detail-breadcrumb {
    display: flex;
    gap: 7px;
    padding: 13px 16px;
    color: #72777c;
    font-size: 12px;
    line-height: 1.3;
}
.product-detail-breadcrumb a {
    color: inherit;
}
.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(520px, 860px) minmax(360px, 500px);
    align-items: center;
    gap: clamp(48px, 7vw, 130px);
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding: 105px 0 110px;
}
.product-gallery {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    min-width: 0;
}
.product-gallery-thumbs {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 690px;
    overflow-y: auto;
    scrollbar-width: none;
}
.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}
.product-gallery-thumb {
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    padding: 0;
    border: 1px solid transparent;
    background: #f5f5f4;
    cursor: pointer;
    opacity: .66;
    transition: border-color .2s ease, opacity .2s ease;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
    border-color: #222;
    opacity: 1;
}
.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery-stage {
    position: relative;
    align-self: start;
    aspect-ratio: 1 / 1;
    margin-top: 0;
    min-width: 0;
    overflow: hidden;
    background: #f4f3f1;
}
.product-gallery-main {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .18s ease;
}
.product-gallery-main.is-changing {
    opacity: .25;
}
.product-gallery-nav,
.product-gallery-zoom {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #171717;
    background: rgba(255,255,255,.94);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}
.product-gallery-nav:hover,
.product-gallery-zoom:hover {
    background: #fff;
    transform: scale(1.05);
}
.product-gallery-nav {
    top: 50%;
    transform: translateY(-50%);
}
.product-gallery-nav:hover {
    transform: translateY(-50%) scale(1.05);
}
.product-gallery-prev {
    left: 18px;
}
.product-gallery-next {
    right: 18px;
}
.product-gallery-zoom {
    right: 18px;
    bottom: 18px;
}
.product-gallery-nav svg,
.product-gallery-zoom svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}
.product-detail-info {
    position: relative;
    min-width: 0;
    padding-top: 12px;
}
.product-detail-tools {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 20px;
}
.product-detail-tools button {
    width: 24px;
    height: 24px;
    padding: 2px;
    border: 0;
    color: #25292c;
    background: transparent;
    cursor: pointer;
}
.product-detail-tools svg,
.product-spec svg,
.product-action-button svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}
.product-detail-info h2 {
    max-width: calc(100% - 95px);
    margin: 18px 0 12px;
    color: #202d3c;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}
.product-detail-subtitle {
    margin: 0;
    color: #707986;
    font-size: 14px;
}
.product-spec-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px 28px;
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
.product-spec {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}
.product-spec svg {
    width: 17px;
    height: 17px;
    color: #c82d43;
    stroke-width: 2;
}
.product-spec p {
    margin: 0;
    color: #68717c;
    font-size: 11px;
    line-height: 1.55;
}
.product-spec strong {
    color: #47515d;
    font-weight: 700;
}
.product-detail-description {
    margin-top: 25px;
    color: #34383b;
    font-size: 12px;
    line-height: 1.5;
}
.product-detail-description p {
    margin: 0 0 7px;
}
.product-color-swatches {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 17px;
}
.product-color-swatches button {
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #909090;
    border-radius: 50%;
    background: var(--swatch);
    cursor: pointer;
}
.product-color-swatches button.is-active::after {
    position: absolute;
    inset: -4px;
    border: 1px solid #1e2326;
    border-radius: 50%;
    content: "";
}
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 46px;
}
.product-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid #7d7d7d;
    border-radius: 999px;
    color: #171717;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.product-action-button:hover {
    border-color: #111;
    color: #fff;
    background: #111;
}
.product-action-button svg {
    width: 19px;
    height: 19px;
}
.product-detail-tabs {
    min-height: 430px;
    padding: 28px 24px 46px;
    color: #303234;
    background: #f7f7f7;
}
.product-tab-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 28px;
    color: #777;
}
.product-tab-list button {
    position: relative;
    padding: 0 0 8px;
    border: 0;
    color: #666;
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    transition: color .2s ease;
}
.product-tab-list button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}
.product-tab-list button:hover,
.product-tab-list button.is-active {
    color: #17191b;
}
.product-tab-list button.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}
.product-tab-content {
    width: min(1020px, 100%);
    margin: 35px auto 0;
    font-size: 14px;
    line-height: 1.45;
}
.product-tab-content > [role="tabpanel"] {
    animation: product-tab-fade .24s ease both;
}
.product-tab-content > [role="tabpanel"][hidden] {
    display: none;
}
.product-tab-content p {
    margin: 0 0 15px;
}
.product-tab-content .product-tab-lead {
    margin-bottom: 18px;
}
.product-tab-content strong {
    font-weight: 500;
}
.product-tab-credit {
    padding-top: 24px;
    color: #55595d;
}
.product-tab-specifications {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 60px;
    margin: 0;
}
.product-tab-specifications div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}
.product-tab-specifications dt {
    color: #74777a;
}
.product-tab-specifications dd {
    margin: 0;
}
.product-tab-downloads {
    border-top: 1px solid #d9d9d9;
}
.product-tab-downloads a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 4px;
    border-bottom: 1px solid #d9d9d9;
    color: #292c2f;
    transition: padding .2s ease, color .2s ease;
}
.product-tab-downloads a:hover {
    padding-right: 10px;
    padding-left: 10px;
    color: #c82d43;
}
.product-tab-downloads a span:last-child {
    color: #808386;
    font-size: 11px;
}
@keyframes product-tab-fade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-detail-visual {
    display: grid;
    gap: 12px;
    padding: 90px 24px 72px;
    background: #fff;
}
.product-detail-visual img {
    display: block;
    width: min(1000px, 100%);
    height: auto;
    margin: 0 auto;
}
.product-related {
    padding: 82px 28px 105px;
    color: #27292b;
    background: #fff;
}
.product-related h2 {
    margin: 0 0 62px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}
.product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 76px);
    width: min(1500px, 100%);
    margin: 0 auto;
}
.product-related-item {
    min-width: 0;
    padding-bottom: 18px;
    border: 1px solid transparent;
    color: inherit;
    background: #fff;
    text-align: center;
    transition: border-color .25s ease, background-color .25s ease;
}
.product-related-item figure {
    margin: 0;
    overflow: hidden;
    background: #fff;
}
.product-related-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform .35s ease;
}
.product-related-item:hover img {
    transform: scale(1.035);
}
.product-related-item:hover {
    border-color: #ededed;
    background: #f5f3f3;
}
.product-related-item h3 {
    min-height: 34px;
    margin: 0 0 8px;
    padding: 16px 12px 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}
.product-related-item p {
    margin: 0;
    color: #8a8d90;
    font-size: 12px;
}
.product-gallery-lightbox[hidden] {
    display: none;
}
.product-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: rgba(0,0,0,.88);
}
.product-gallery-lightbox img {
    display: block;
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    object-fit: contain;
}
.product-gallery-lightbox button {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
}
.product-gallery-lightbox button svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
}
.home-video-lightbox[hidden] {
    display: none;
}
.home-video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
    background: rgba(0,0,0,.88);
}
.home-video-lightbox video {
    display: block;
    width: min(1120px, 92vw);
    max-height: 82vh;
    background: #000;
    object-fit: contain;
}
.home-video-lightbox button {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.18);
    cursor: pointer;
}
.home-video-lightbox button svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
}
body.product-lightbox-open {
    overflow: hidden;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 38px;
    padding: 11px 22px;
    border: 1px solid rgba(0,0,0,.35);
    border-radius: 999px;
    color: #36322d;
    font-size: 11px;
    text-transform: uppercase;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease;
}
.btn-outline:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}
.btn-light {
    border-color: rgba(255,255,255,.58);
    color: #fff;
}

.collection-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 46px 20px 42px;
    color: #2e2d2b;
    background: #fff;
    text-align: center;
}
.collection-intro-warm {
    background: #c7beb5;
}
.collection-intro-dark {
    background: #000;
}
.collection-intro h2 {
    margin: 0 0 25px;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 300;
    line-height: 1.1;
}
.collection-intro p {
    width: min(690px, 92vw);
    margin: 0 0 25px;
    color: #363432;
    font-size: 14px;
    line-height: 1.45;
}
.collection-intro .btn-outline {
    min-width: 266px;
    min-height: 36px;
    padding: 10px 26px;
    border-color: #555;
    color: #333;
    font-size: 12px;
}
.collection-intro-dark,
.collection-intro-dark p,
.collection-intro-dark .btn-outline {
    color: #fff;
}
.collection-intro-dark .btn-outline {
    border-color: #fff;
}
.collection-intro-dark .btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.home-duo-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.duo-image {
    display: block;
    min-width: 0;
    overflow: hidden;
}
.duo-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .55s ease;
}
.duo-image:hover img {
    transform: scale(1.025);
}

.home-flash-slider {
    position: relative;
    padding: clamp(82px, 9vw, 140px) 20px clamp(72px, 8vw, 112px);
    background: #fff;
    overflow: hidden;
}
.flash-track {
    position: relative;
    width: min(1200px, 76vw);
    min-height: 650px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}
.flash-track.dragging {
    cursor: grabbing;
}
.flash-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(70px, 9vw, 150px);
    min-height: 650px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition: opacity .42s ease, visibility 0s linear .42s;
}
.flash-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    transition: opacity .42s ease;
}
.flash-slide.leaving-left {
    opacity: 0;
    visibility: visible;
    z-index: 1;
    transition: opacity .42s ease;
}
.flash-slide.leaving-right {
    opacity: 0;
    visibility: visible;
    z-index: 1;
    transition: opacity .42s ease;
}
.flash-slide.entering-left {
    opacity: 0;
    visibility: visible;
    z-index: 2;
    transition: opacity .42s ease;
}
.flash-slide.entering-right {
    opacity: 0;
    visibility: visible;
    z-index: 2;
    transition: opacity .42s ease;
}
.flash-slide.active.entering-left,
.flash-slide.active.entering-right {
    opacity: 1;
}
.flash-media {
    display: block;
    min-width: 0;
    overflow: hidden;
}
.flash-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.flash-copy {
    max-width: 620px;
    text-align: center;
}
.flash-copy h2 {
    margin: 0 0 28px;
    color: #403d39;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 300;
    line-height: 1.15;
}
.flash-copy p {
    margin: 0 auto 62px;
    color: #47433f;
    font-size: 13px;
    line-height: 1.55;
}
.flash-copy .btn-outline {
    min-width: 266px;
    min-height: 36px;
    border-color: #555;
    color: #333;
    font-size: 12px;
}
.flash-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 54px;
}
.flash-dots button {
    width: 44px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    border-top: 3px solid #cfcfcf;
    cursor: pointer;
}
.flash-dots button.active {
    border-top-color: #252525;
}

.home-split-series {
    background: #c7beb5;
}
.home-split-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 720px;
}
.split-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 7vw, 120px);
    background: #c7beb5;
    text-align: center;
}
.split-text h2 {
    margin: 0 0 28px;
    color: #302d2a;
    font-size: clamp(28px, 2.6vw, 42px);
    font-weight: 300;
    line-height: 1.15;
}
.split-text p {
    width: min(680px, 100%);
    margin: 0 0 64px;
    color: #4d4944;
    font-size: 14px;
    line-height: 1.6;
}
.split-text .btn-outline {
    min-width: 266px;
    min-height: 36px;
    border-color: #57534e;
    color: #3f3b36;
    font-size: 12px;
}
.collection-intro .btn-outline:hover,
.flash-copy .btn-outline:hover,
.split-text .btn-outline:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}
.collection-intro.collection-intro-dark .btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}
.split-image {
    display: block;
    min-width: 0;
    overflow: hidden;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.split-image:hover img {
    transform: scale(1.025);
}

.home-about-series {
    background: #c7beb5;
}
.home-about-item .split-text {
    min-height: 720px;
}
.home-about-item:first-child .about-text h2 {
    font-size: 26px;
    letter-spacing: .02em;
}
.about-story-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 720px;
}
.about-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(58px, 7vw, 120px);
    color: #302d2a;
    text-align: center;
}
.about-story-copy--sand { background: #c5b5a5; }
.about-story-copy--gray { background: #c8c7c2; }
.about-story-copy--warm { background: #c7beb5; }
.about-story-copy-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-story-copy h2 {
    margin: 0 0 28px;
    font-size: clamp(26px, 2.1vw, 36px);
    font-weight: 300;
    line-height: 1.15;
}
.about-story-copy-main p {
    width: min(680px, 100%);
    margin: 0 0 64px;
    color: #4d4944;
    font-size: 14px;
    line-height: 1.6;
}
.about-story-copy .btn-outline {
    min-width: 266px;
    min-height: 36px;
    border-color: #57534e;
    color: #3f3b36;
    font-size: 12px;
}
.about-story-copy .btn-outline:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}
.about-story-export {
    margin-top: clamp(110px, 16vh, 210px);
}
.about-story-export strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}
.about-story-badges {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 36px;
    margin-top: 30px;
    padding: 5px 15px;
    border: 1px solid #57534e;
    border-radius: 999px;
    color: #252321;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.about-story-badges b {
    font-size: 17px;
}
.about-story-image {
    min-width: 0;
    margin: 0;
    overflow: hidden;
}
.about-story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showroom-story-copy {
    background: #c7beb5;
}
.showroom-story-slogan {
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3.2vw, 42px);
    color: #fff;
}
.showroom-story-slogan p {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 72px);
    font-weight: 300;
    line-height: 1;
}
.showroom-contact-section {
    color: #f4f4f4;
    background: #000;
}
.showroom-contact-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: clamp(260px, 26vw, 330px);
    padding: clamp(62px, 7vw, 96px) 20px clamp(52px, 6vw, 78px);
    text-align: center;
}
.showroom-contact-lead {
    margin: 0 0 clamp(30px, 4vw, 48px);
    color: rgba(255,255,255,.82);
    font-size: clamp(14px, 1.45vw, 26px);
    line-height: 1.3;
}
.showroom-contact-copy h2 {
    margin: 0 0 clamp(32px, 4.5vw, 58px);
    font-size: clamp(24px, 2.55vw, 46px);
    font-weight: 300;
    line-height: 1.12;
}
.showroom-contact-copy address {
    display: grid;
    gap: 4px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(13px, 1.25vw, 24px);
    font-style: normal;
    line-height: 1.16;
}
.showroom-foot-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    background: #000;
}
.showroom-foot-gallery figure {
    min-width: 0;
    margin: 0;
    overflow: hidden;
}
.showroom-foot-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 0.655 / 1;
    height: auto;
    object-fit: cover;
}
.contact-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    padding: 110px 20px 70px;
    color: #f4f4f4;
    background: #000;
    text-align: center;
}
.contact-intro h1 {
    margin: 0 0 36px;
    font-size: clamp(38px, 2.95vw, 58px);
    font-weight: 300;
    line-height: 1.05;
}
.contact-intro p {
    width: min(790px, 100%);
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.95;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 2.4vw, 44px);
    padding: clamp(88px, 7.6vw, 128px) clamp(24px, 15vw, 310px);
    background: #fff;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    min-height: clamp(250px, 14.7vw, 280px);
    padding: clamp(36px, 3vw, 50px) 30px 34px;
    color: #111;
    border: 1px solid #8d8d8d;
    border-radius: 34px;
    text-align: center;
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 26px;
    color: #000;
    fill: currentColor;
}
.contact-card-icon path,
.contact-card-icon circle,
.contact-card-icon rect {
    stroke: currentColor;
    stroke-width: 0;
}
.contact-card:nth-child(3) .contact-card-icon {
    width: 54px;
}
.contact-card:nth-child(3) .contact-card-icon path {
    fill: none;
    stroke: #fff;
    stroke-width: 1.1;
}
.contact-card h2 {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.contact-card p {
    margin: 0 0 13px;
    color: #5f5f5f;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.18;
}
.contact-card p:last-child {
    margin-bottom: 0;
}
.contact-message {
    padding: clamp(74px, 7vw, 108px) 20px clamp(78px, 7vw, 112px);
    background: #e8e1d9;
}
.contact-message-inner {
    width: min(1110px, 100%);
    margin: 0 auto;
}
.contact-message-head {
    margin-bottom: clamp(58px, 5vw, 78px);
    text-align: center;
}
.contact-message-head h2 {
    margin: 0 0 20px;
    color: #050505;
    font-size: clamp(32px, 2.15vw, 42px);
    font-weight: 700;
    line-height: 1.15;
}
.contact-message-head p {
    margin: 0;
    color: #5f5f5f;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}
.contact-message-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
}
.contact-field {
    position: relative;
    min-width: 0;
}
.contact-field-wide,
.contact-submit,
.contact-form-status {
    grid-column: 1 / -1;
}
.contact-field label {
    display: block;
    margin: 0 0 14px;
    color: #595959;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 0 0 12px;
    color: #111;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.22);
    border-radius: 0;
    outline: 0;
    font: inherit;
    font-size: 17px;
    font-weight: 400;
    transition: border-color .22s ease;
}
.contact-field select {
    padding-right: 28px;
    color: #111;
    font-weight: 700;
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #9c9a96 50%) right 6px top 16px / 7px 7px no-repeat,
        linear-gradient(135deg, #9c9a96 50%, transparent 50%) right 1px top 16px / 7px 7px no-repeat;
}
.contact-field textarea {
    min-height: 146px;
    resize: vertical;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-bottom-color: rgba(0,0,0,.7);
}
.contact-field.is-invalid input,
.contact-field.is-invalid select,
.contact-field.is-invalid textarea {
    border-bottom-color: #9d2f20;
}
.contact-error {
    display: block;
    min-height: 16px;
    margin-top: 6px;
    color: #9d2f20;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    margin-top: 4px;
    padding: 15px 28px;
    color: #050505;
    background: transparent;
    border: 1px solid rgba(0,0,0,.22);
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.contact-submit:hover,
.contact-submit:focus-visible {
    color: #fff;
    background: #000;
    border-color: #000;
}
.contact-submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-form-status {
    min-height: 20px;
    margin: -18px 0 0;
    color: #335b37;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.contact-form-status.is-error {
    color: #9d2f20;
}
.case-gallery-section {
    padding-top: 0;
}
.case-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 4vw, 60px) clamp(14px, 2vw, 22px);
}
.case-gallery-grid article {
    min-width: 0;
}
.case-gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.36 / 1;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.case-gallery-grid p {
    margin: 14px 0 0 12px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
}
.case-list-section {
    padding: 14px 0 clamp(64px, 7vw, 104px);
    background: #fff;
}
.case-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.case-list-item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
}
.case-list-item[hidden] {
    display: none;
}
.case-list-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    height: auto;
    object-fit: cover;
    transition: transform .45s ease;
}
.case-list-item:hover img {
    transform: scale(1.025);
}
.case-pagination {
    margin-top: 46px;
}
.news-section {
    padding: clamp(58px, 6.2vw, 86px) clamp(22px, 8vw, 150px) clamp(72px, 8vw, 120px);
    background: #fff;
}
.news-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 34px;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding-bottom: 54px;
    border-bottom: 1px solid #dedede;
}
.news-heading h1 {
    margin: 0;
    color: #4a4744;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.05;
}
.news-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: clamp(22px, 3vw, 52px);
    padding-top: 15px;
}
.news-categories button {
    position: relative;
    padding: 0 0 10px;
    color: #77716b;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}
.news-categories button:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}
.news-categories button.active,
.news-categories button:hover {
    color: #24211f;
}
.news-categories button.active:after {
    transform: scaleX(1);
}
.news-list {
    width: min(1200px, 100%);
    margin: 0 auto;
}
.news-item {
    display: grid;
    grid-template-columns: minmax(130px, .58fr) minmax(0, 1.62fr) minmax(220px, .8fr);
    align-items: start;
    gap: clamp(36px, 5vw, 92px);
    padding: 46px 0 52px;
    border-bottom: 1px solid #dedede;
}
.news-item[hidden] {
    display: none;
}
.news-item time {
    color: #34312e;
    font-size: 15px;
    line-height: 1.4;
}
.news-copy {
    display: block;
    min-width: 0;
}
.news-copy h2 {
    margin: 0 0 28px;
    color: #34312e;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 400;
    line-height: 1.22;
}
.news-copy p {
    margin: 0;
    color: #56514c;
    font-size: 14px;
    line-height: 1.9;
}
.news-thumb {
    display: block;
    align-self: center;
    min-width: 0;
    overflow: hidden;
}
.news-thumb img {
    aspect-ratio: 1.68 / 1;
    height: auto;
    object-fit: cover;
    transition: transform .45s ease;
}
.news-thumb:hover img {
    transform: scale(1.035);
}
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}
.news-pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    color: #5f5a54;
    background: transparent;
    border: 1px solid #d5d1cc;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: color .24s ease, background-color .24s ease, border-color .24s ease;
}
.news-pagination button:hover,
.news-pagination button.active {
    color: #fff;
    background: #000;
    border-color: #000;
}
.downloads-page {
    min-height: 100vh;
    padding: clamp(94px, 9vw, 140px) clamp(22px, 7vw, 118px) clamp(72px, 8vw, 118px);
    color: #080808;
    background: #e8e1d9;
    text-align: center;
}
.downloads-intro {
    width: min(820px, 100%);
    margin: 0 auto clamp(58px, 7vw, 96px);
}
.downloads-kicker {
    margin: 0 0 12px;
    font-size: 15px;
    text-transform: uppercase;
}
.downloads-intro h1 {
    margin: 0 0 36px;
    font-size: clamp(42px, 4.6vw, 70px);
    font-weight: 300;
    line-height: 1.05;
}
.downloads-subtitle {
    margin: 0 0 46px;
    font-size: 15px;
}
.downloads-intro h2 {
    margin: 0 auto 70px;
    max-width: 760px;
    font-size: clamp(31px, 3.2vw, 52px);
    font-weight: 300;
    line-height: 1.2;
}
.downloads-copy {
    max-width: 660px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
}
.downloads-list-section {
    width: min(790px, 100%);
    margin: 0 auto clamp(82px, 8vw, 124px);
}
.downloads-list-section h2 {
    margin: 0 0 clamp(44px, 5vw, 68px);
    font-size: clamp(38px, 4.6vw, 66px);
    font-weight: 300;
    line-height: 1.05;
}
.downloads-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(52px, 6vw, 80px) clamp(76px, 9vw, 130px);
    text-align: left;
}
.download-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    min-width: 0;
}
.download-item[hidden] {
    display: none;
}
.download-item img {
    width: 84px;
    height: auto;
    object-fit: contain;
}
.download-item h3 {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
}
.download-item a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #161616;
    font-size: 8px;
    font-weight: 700;
}
.download-item a:before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background:
        linear-gradient(currentColor, currentColor) center 1px / 1px 8px no-repeat,
        linear-gradient(135deg, transparent 45%, currentColor 46% 54%, transparent 55%) center 5px / 7px 7px no-repeat,
        linear-gradient(currentColor, currentColor) center bottom / 8px 1px no-repeat;
    opacity: .62;
}
.download-item a:hover {
    color: #000;
}
.downloads-pagination {
    margin-top: 54px;
}
.downloads-partners {
    width: min(620px, 100%);
    margin: 0 auto;
}
.downloads-partners p {
    margin: 0 0 26px;
    font-size: clamp(20px, 2.1vw, 30px);
    line-height: 1.2;
}
.downloads-partners h2 {
    margin: 0;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 700;
    line-height: 1.28;
}
.news-detail {
    padding: clamp(58px, 6.5vw, 96px) clamp(22px, 8vw, 150px) clamp(74px, 8vw, 126px);
    background: #fff;
}
.news-detail-head,
.news-detail-figure,
.news-detail-body,
.news-detail-footer {
    width: min(920px, 100%);
    margin: 0 auto;
}
.news-back {
    display: inline-flex;
    margin-bottom: 40px;
    color: #5d5751;
    font-size: 13px;
    text-transform: uppercase;
}
.news-back:hover {
    color: #000;
}
.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
    color: #716b65;
    font-size: 14px;
}
.news-detail-meta span:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 14px 3px 0;
    background: currentColor;
    border-radius: 50%;
}
.news-detail-head h1 {
    margin: 0 0 26px;
    color: #302d2a;
    font-size: clamp(38px, 4.6vw, 72px);
    font-weight: 300;
    line-height: 1.08;
}
.news-detail-head p {
    max-width: 760px;
    margin: 0;
    color: #514c47;
    font-size: 17px;
    line-height: 1.75;
}
.news-detail-figure {
    margin: clamp(46px, 5vw, 72px) auto;
    overflow: hidden;
}
.news-detail-figure img {
    aspect-ratio: 1.8 / 1;
    height: auto;
    object-fit: cover;
}
.news-detail-body {
    color: #4f4944;
    font-size: 15px;
    line-height: 1.9;
}
.news-detail-body p {
    margin: 0 0 26px;
}
.news-detail-body h2 {
    margin: 42px 0 16px;
    color: #302d2a;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}
.news-detail-body blockquote {
    margin: 46px 0;
    padding: 30px clamp(26px, 4vw, 54px);
    color: #2f2b28;
    background: #c7beb5;
    border: 0;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 300;
    line-height: 1.45;
}
.news-detail-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(54px, 6vw, 84px);
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.news-detail-footer a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 128px;
    padding: 26px 28px;
    color: #37322d;
    font-size: 17px;
    line-height: 1.45;
}
.news-detail-footer a + a {
    border-left: 1px solid #dedede;
    text-align: right;
}
.news-detail-footer span {
    margin-bottom: 10px;
    color: #817b74;
    font-size: 12px;
    text-transform: uppercase;
}
.news-detail-footer a:hover {
    background: #f4f1ed;
}
.home-split-series .split-text h2,
.home-about-series .split-text h2 {
    font-size: 26px;
}
.video-image {
    position: relative;
}
.watch-video {
    position: absolute;
    left: 50%;
    top: 52%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 34px;
    padding: 9px 16px;
    color: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(3px);
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    transform: translate(-50%, -50%);
    transition: background .25s ease, border-color .25s ease;
}
.watch-video:hover {
    border-color: rgba(255,255,255,.78);
    background: rgba(0,0,0,.3);
}
.watch-video:after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.feature-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
    background: #111;
}
.feature-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    color: #fff;
}
.feature-card.large { min-height: 620px; }
.feature-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.58));
}
.feature-card span,
.feature-card strong {
    position: absolute;
    z-index: 1;
    left: 28px;
    right: 28px;
}
.feature-card span {
    bottom: 76px;
    font-size: 12px;
    text-transform: uppercase;
}
.feature-card strong {
    bottom: 30px;
    max-width: 420px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
}

.editorial-section,
.split-page {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    min-height: 650px;
}
.section-copy,
.copy-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
    background: var(--sand);
    text-align: center;
}
.section-copy h2,
.section-head h2,
.copy-panel h2 {
    margin: 0 0 18px;
    color: #55504a;
    font-size: clamp(28px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.05;
}
.section-copy p:not(.kicker),
.copy-panel p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: #68635d;
    font-size: 14px;
    line-height: 1.9;
}
.image-strip {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1px;
    background: #111;
}

.products-finish-hero {
    padding-top: 52px;
    color: #f2f2f2;
    background: #070504;
    text-align: center;
}
.products-finish-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 198px;
    padding: clamp(50px, 4.1vw, 76px) 20px 36px;
}
.products-finish-intro h1 {
    margin: 0 0 22px;
    font-size: clamp(30px, 2.25vw, 42px);
    font-weight: 300;
    line-height: 1.05;
}
.products-finish-intro p {
    width: min(780px, 92vw);
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: clamp(13px, .98vw, 16px);
    font-weight: 300;
    line-height: 1.55;
}
.products-finish-picker {
    min-height: 180px;
    padding: 34px 20px 44px;
    border-top: 1px solid #6d645f;
}
.products-finish-picker p {
    margin: 0 0 34px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.2;
}
.finish-swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3.8vw, 56px);
}
.finish-swatch {
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 32px;
    padding: 0;
    background: var(--swatch-color);
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.16);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.finish-swatch:hover,
.finish-swatch:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.8);
    outline: 0;
}
.finish-swatch.is-active {
    border-color: #fff;
    box-shadow: 0 0 0 3px #070504, 0 0 0 4px #fff, inset 0 0 0 1px rgba(0,0,0,.2);
}
.finish-swatch-half {
    overflow: hidden;
}
.finish-swatch-half:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: #070504;
}
.product-list-section {
    padding-bottom: clamp(58px, 6vw, 86px);
    color: #1d1d1d;
    background: #fff;
}
.product-list-top {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 clamp(20px, 1.6vw, 28px);
    border-top: 1px solid #111;
    border-bottom: 1px solid #9c9c9c;
}
.product-list-top h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}
.product-list-breadcrumb {
    margin: 16px clamp(20px, 1.6vw, 28px) 18px;
    color: #777;
    font-size: 12px;
    line-height: 1.3;
}
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 13px;
    padding: 0 clamp(20px, 1.6vw, 28px);
}
.product-list-item {
    min-width: 0;
}
.product-list-item[hidden] {
    display: none;
}
.product-list-item a {
    display: block;
}
.product-list-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1.01 / 1;
    height: auto;
    object-fit: cover;
    transition: transform .35s ease;
}
.product-list-item a:hover img {
    transform: scale(1.018);
}
.product-list-item span,
.product-list-item small,
.product-list-item b {
    display: block;
    margin-left: 4px;
    color: #1f1f1f;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}
.product-list-item span {
    margin-top: 16px;
}
.product-list-item small {
    margin-top: 10px;
}
.product-list-item b {
    margin-top: 12px;
}
.product-pagination {
    margin-top: clamp(44px, 5vw, 70px);
}

.resource-preview,
.dark-section {
    padding: clamp(70px, 9vw, 130px) clamp(18px, 4vw, 70px);
    color: #fff;
    background: #000;
}
.section-head {
    width: min(760px, 92vw);
    margin: 0 auto 48px;
    text-align: center;
}
.three-cards,
.product-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(18px, 2vw, 32px);
}
.three-cards a,
.product-grid a,
.gallery-grid article {
    display: block;
    min-width: 0;
}
.three-cards img,
.product-grid img,
.gallery-grid img {
    aspect-ratio: 1.36 / 1;
    height: auto;
    border-radius: 8px;
}
.three-cards span,
.product-grid span,
.gallery-grid p {
    display: block;
    margin-top: 14px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
}

.page-band {
    padding: clamp(72px, 9vw, 140px) clamp(20px, 5vw, 88px);
    background: var(--paper);
}
.page-band.center { text-align: center; }
.page-band h2 {
    margin: 0 0 22px;
    font-size: clamp(34px, 5vw, 70px);
    font-weight: 300;
}
.page-band p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}
.split-page.reverse .copy-panel { order: 2; background: var(--gray); }
.split-page figure { margin: 0; min-height: 620px; }

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding: 56px clamp(22px, 6vw, 92px);
    color: #fff;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.12);
}
.site-footer strong {
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 9px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    line-height: 1.55;
}
.site-footer .social-links {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    color: #000;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}
.site-footer .social-links a:hover {
    background: #fff;
}

@media (max-width: 980px) {
    .site-header { grid-template-columns: auto 1fr auto; }
    .menu-toggle { display: block; }
    .search-link { grid-column: 3; }
    .brand { width: 104px; }
    .site-nav {
        position: fixed;
        inset: 52px 0 auto 0;
        display: none;
        padding: 24px;
        background: #000;
    }
    .nav-open .site-nav { display: grid; gap: 8px; }
    .nav-item { padding: 9px 0; }
    .mega-menu {
        position: static;
        display: grid;
        margin-top: 12px;
        padding: 0 0 0 18px;
        color: #fff;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .mega-menu a { color: rgba(255,255,255,.62); }
    .feature-grid,
    .home-duo-showcase,
    .editorial-section,
    .split-page,
    .three-cards,
    .product-grid,
    .gallery-grid,
    .case-gallery-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }
    .home-hero, .page-hero { min-height: 560px; }
    .product-detail-intro {
        min-height: 210px;
        padding: 92px 22px 38px;
    }
    .product-detail-intro h1 {
        margin-bottom: 18px;
        font-size: 26px;
    }
    .product-detail-intro p {
        width: min(620px, 100%);
        font-size: 12px;
        line-height: 1.55;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 56px;
        width: min(760px, calc(100% - 40px));
        padding: 58px 0 72px;
    }
    .product-gallery {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px;
    }
    .product-gallery-thumb {
        width: 78px;
        height: 78px;
    }
    .product-detail-info {
        padding-top: 0;
    }
    .product-detail-tools {
        top: -3px;
    }
    .feature-card, .feature-card.large { min-height: 420px; }
    .split-page.reverse .copy-panel { order: 0; }
    .split-page figure { min-height: 430px; }
    .home-flash-slider {
        padding: 58px 20px 64px;
    }
    .flash-track {
        width: min(620px, 100%);
        min-height: 0;
    }
    .flash-slide {
        position: absolute;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 0;
    }
    .flash-slide.active {
        display: grid;
    }
    .flash-copy {
        max-width: none;
    }
    .flash-copy h2 {
        margin-bottom: 18px;
        font-size: 28px;
    }
    .flash-copy p {
        margin-bottom: 28px;
        font-size: 13px;
    }
    .flash-dots {
        gap: 14px;
        margin-top: 36px;
    }
    .flash-dots button {
        width: 34px;
    }
    .home-split-item {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .home-split-item.image-first .split-image {
        order: 2;
    }
    .home-split-item.image-first .split-text {
        order: 1;
    }
    .split-text {
        padding: 58px 22px;
    }
    .split-text h2 {
        margin-bottom: 18px;
        font-size: 26px;
    }
    .split-text p {
        margin-bottom: 30px;
        font-size: 13px;
    }
    .split-image img {
        height: auto;
        object-fit: contain;
    }
    .home-about-item .split-text {
        min-height: 0;
    }
    .products-finish-hero {
        padding-top: 52px;
    }
    .products-finish-intro {
        min-height: 0;
        padding: 46px 22px 32px;
    }
    .products-finish-intro h1 {
        margin-bottom: 18px;
        font-size: 28px;
    }
    .products-finish-intro p {
        font-size: 12px;
        line-height: 1.55;
    }
    .products-finish-picker {
        min-height: 0;
        padding: 28px 22px 36px;
    }
    .products-finish-picker p {
        margin-bottom: 26px;
        font-size: 14px;
    }
    .finish-swatches {
        gap: 18px 24px;
    }
    .finish-swatch {
        width: 24px;
        height: 24px;
    }
    .finish-swatch.is-active {
        box-shadow: 0 0 0 2px #070504, 0 0 0 4px #fff, inset 0 0 0 1px rgba(0,0,0,.2);
    }
    .product-list-top {
        padding: 0 22px;
    }
    .product-list-breadcrumb {
        margin: 14px 22px 16px;
        font-size: 11px;
    }
    .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 12px;
        padding: 0 22px;
    }
    .about-story-item {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .about-story-item--image-first .about-story-image {
        order: 2;
    }
    .about-story-item--image-first .about-story-copy {
        order: 1;
    }
    .about-story-copy {
        min-height: 580px;
        padding: 58px 22px;
    }
    .about-story-copy-main p {
        margin-bottom: 36px;
        font-size: 13px;
    }
    .about-story-export {
        margin-top: 100px;
    }
    .about-story-image img {
        height: auto;
    }
    .contact-intro {
        min-height: 360px;
        padding: 92px 22px 58px;
    }
    .contact-intro h1 {
        margin-bottom: 28px;
        font-size: 38px;
    }
    .contact-intro p {
        font-size: 12px;
        line-height: 1.75;
    }
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 58px 22px;
    }
    .contact-card {
        min-height: 230px;
        padding: 34px 20px 30px;
        border-radius: 24px;
    }
    .contact-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 22px;
    }
    .contact-card h2 {
        margin-bottom: 18px;
        font-size: 16px;
    }
    .contact-card p {
        font-size: 15px;
    }
    .contact-message {
        padding: 58px 22px 64px;
    }
    .contact-message-head {
        margin-bottom: 42px;
    }
    .contact-message-head h2 {
        margin-bottom: 14px;
        font-size: 30px;
    }
    .contact-message-head p {
        font-size: 15px;
    }
    .contact-message-form {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contact-field label {
        margin-bottom: 10px;
        font-size: 15px;
    }
    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        font-size: 15px;
    }
    .contact-field textarea {
        min-height: 120px;
    }
    .contact-submit {
        min-height: 54px;
        margin-top: 0;
        font-size: 16px;
    }
    .contact-form-status {
        margin-top: -10px;
    }
    .case-list-section {
        padding-top: 10px;
    }
    .case-list-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .case-list-item img {
        aspect-ratio: 1.18 / 1;
    }
    .news-section {
        padding: 48px 22px 72px;
    }
    .news-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 34px;
    }
    .news-heading h1 {
        font-size: 38px;
    }
    .news-categories {
        justify-content: flex-start;
        gap: 16px 24px;
        padding-top: 0;
    }
    .news-categories button {
        font-size: 13px;
    }
    .news-item {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 34px 0 40px;
    }
    .news-item time {
        font-size: 14px;
    }
    .news-copy h2 {
        margin-bottom: 16px;
        font-size: 24px;
    }
    .news-thumb {
        width: 100%;
    }
    .downloads-page {
        padding: 86px 22px 72px;
    }
    .downloads-intro {
        margin-bottom: 58px;
    }
    .downloads-intro h1 {
        margin-bottom: 28px;
        font-size: 42px;
    }
    .downloads-subtitle {
        margin-bottom: 34px;
    }
    .downloads-intro h2 {
        margin-bottom: 42px;
        font-size: 32px;
    }
    .downloads-copy {
        font-size: 14px;
    }
    .downloads-list-section h2 {
        font-size: 42px;
    }
    .downloads-list {
        grid-template-columns: 1fr;
        gap: 34px;
        width: min(320px, 100%);
        margin: 0 auto;
    }
    .download-item {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 18px;
    }
    .download-item img {
        width: 74px;
    }
    .download-item h3 {
        margin-bottom: 18px;
        font-size: 17px;
    }
    .downloads-partners p {
        font-size: 22px;
    }
    .downloads-partners h2 {
        font-size: 30px;
    }
    .news-detail {
        padding: 48px 22px 76px;
    }
    .news-back {
        margin-bottom: 28px;
    }
    .news-detail-head h1 {
        font-size: 36px;
    }
    .news-detail-head p,
    .news-detail-body {
        font-size: 14px;
    }
    .news-detail-figure {
        margin: 38px auto;
    }
    .news-detail-figure img {
        aspect-ratio: 1.25 / 1;
    }
    .news-detail-body blockquote {
        margin: 34px 0;
        padding: 24px;
        font-size: 22px;
    }
    .news-detail-footer {
        grid-template-columns: 1fr;
    }
    .news-detail-footer a + a {
        border-top: 1px solid #dedede;
        border-left: 0;
        text-align: left;
    }
    .watch-video {
        min-width: 96px;
        min-height: 32px;
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 620px) {
    .product-detail-heading {
        padding-inline: 20px;
    }
    .product-detail-breadcrumb {
        flex-wrap: wrap;
        padding: 12px 20px;
        font-size: 11px;
    }
    .product-detail-layout {
        gap: 44px;
        width: calc(100% - 32px);
        padding: 40px 0 58px;
    }
    .product-gallery {
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
    }
    .product-gallery-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .product-gallery-thumb {
        width: 64px;
        height: 64px;
    }
    .product-gallery-nav,
    .product-gallery-zoom {
        width: 38px;
        height: 38px;
    }
    .product-gallery-prev {
        left: 12px;
    }
    .product-gallery-next,
    .product-gallery-zoom {
        right: 12px;
    }
    .product-gallery-zoom {
        bottom: 12px;
    }
    .product-detail-info h2 {
        margin-top: 6px;
        font-size: 19px;
    }
    .product-spec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .product-detail-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 36px;
    }
    .product-action-button {
        width: 100%;
    }
    .product-gallery-lightbox {
        padding: 18px;
    }
    .product-detail-visual {
        padding: 48px 16px 38px;
    }
    .product-related {
        padding: 56px 20px 68px;
    }
    .product-related h2 {
        margin-bottom: 38px;
    }
    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 16px;
    }
    .product-related-item figure {
        margin-bottom: 0;
    }
    .product-related-item h3 {
        font-size: 12px;
    }
    .product-detail-tabs {
        min-height: 0;
        padding: 26px 20px 44px;
    }
    .product-tab-list {
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .product-tab-list::-webkit-scrollbar {
        display: none;
    }
    .product-tab-list button {
        flex: 0 0 auto;
        font-size: 12px;
    }
    .product-tab-list > span {
        flex: 0 0 auto;
    }
    .product-tab-content {
        margin-top: 28px;
        font-size: 13px;
        line-height: 1.55;
    }
    .product-tab-specifications {
        grid-template-columns: 1fr;
    }
    .product-tab-specifications div {
        grid-template-columns: 115px minmax(0, 1fr);
        gap: 12px;
    }
}
