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

body[data-page-type="design-lab-landing"] {
    overflow-x: clip;
    color: #181915;
    background: #fffef9;
}

.dll {
    --dll-ink: #181915;
    --dll-muted: #686a62;
    --dll-white: #fffef9;
    --dll-paper: #f2f0e9;
    --dll-line: #d9d6cd;
    --dll-yellow: #f6bf2f;
    --dll-yellow-pale: #fff2bd;
    --dll-container: 1320px;
    font-variant-numeric: tabular-nums;
}

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

.dll-container {
    width: min(100% - 48px, var(--dll-container));
    margin-inline: auto;
}

.dll-labbar {
    color: #3c2b00;
    background: var(--dll-yellow);
    border-bottom: 1px solid #d7a215;
    font-size: .75rem;
}

.dll-labbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dll-labbar strong {
    margin-left: auto;
}

.dll-labbar a {
    color: inherit;
    font-weight: 820;
    text-decoration: none;
}


.dll-main h1,
.dll-main h2,
.dll-main h3,
.dll-main p {
    text-wrap: balance;
}

.dll-hero {
    min-height: min(760px, calc(100svh - 120px));
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
    background: var(--dll-yellow-pale);
}

.dll-hero-media {
    min-height: 650px;
    overflow: hidden;
    background: #e7e3da;
}

.dll-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dll-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(52px, 6vw, 96px);
}

.dll-kicker {
    display: block;
    margin-bottom: 18px;
    color: #7c5a00;
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dll-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3rem, 5.8vw, 6.25rem);
    letter-spacing: -.066em;
    line-height: .9;
}

.dll-hero-copy > p {
    max-width: 600px;
    margin: clamp(26px, 4vw, 42px) 0 0;
    color: #56564f;
    font-size: clamp(.92rem, 1.25vw, 1.1rem);
    line-height: 1.68;
}

.dll-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.dll-button {
    min-height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 19px;
    color: var(--dll-ink);
    background: var(--dll-white);
    border: 1px solid #bba343;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 820;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dll-button-primary {
    background: var(--dll-yellow);
    border-color: #c48f00;
}

.dll-button:hover {
    color: var(--dll-ink);
    box-shadow: 0 10px 24px rgb(91 66 0 / 13%);
    transform: translateY(-2px);
}

.dll-button:focus-visible,
.dll-product:focus-visible {
    outline: 3px solid #a97800;
    outline-offset: 4px;
}

.dll-proof {
    background: var(--dll-white);
    border-bottom: 1px solid var(--dll-line);
}

.dll-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.dll-proof-grid > div {
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px clamp(18px, 3.4vw, 48px);
    border-left: 1px solid var(--dll-line);
}

.dll-proof-grid > div:last-child {
    border-right: 1px solid var(--dll-line);
}

.dll-proof-grid strong {
    font-size: clamp(1.35rem, 2vw, 2rem);
    letter-spacing: -.035em;
}

.dll-proof-grid span {
    margin-top: 6px;
    color: var(--dll-muted);
    font-size: .71rem;
    line-height: 1.45;
}

.dll-products,
.dll-process {
    padding-block: clamp(78px, 10vw, 150px);
}

.dll-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    gap: 50px;
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 60px);
}

.dll-section-head h2,
.dll-closing h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5.25rem);
    letter-spacing: -.065em;
    line-height: .93;
}

.dll-section-head > p {
    margin: 0;
    color: var(--dll-muted);
    font-size: .82rem;
    line-height: 1.65;
}

.dll-product-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: clamp(42px, 6vw, 76px);
}

.dll-product {
    min-width: 0;
    grid-column: span 4;
    display: grid;
    align-content: start;
    color: var(--dll-ink);
    text-decoration: none;
}

.dll-product-featured {
    grid-column: span 8;
}

.dll-product:nth-child(6) {
    grid-column: span 8;
}

.dll-product-media {
    aspect-ratio: 4 / 3;
    display: block;
    overflow: hidden;
    background: #e8e4dc;
}

.dll-product-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.dll-product-copy {
    display: grid;
    padding-top: 18px;
}

.dll-product-copy small {
    margin-bottom: 8px;
    color: #8a6500;
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dll-product-copy > strong {
    font-size: clamp(1.35rem, 2.4vw, 2.25rem);
    letter-spacing: -.045em;
    line-height: 1;
}

.dll-product-copy > span {
    display: -webkit-box;
    max-width: 640px;
    margin-top: 10px;
    overflow: hidden;
    color: var(--dll-muted);
    font-size: .73rem;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dll-product-copy > b {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--dll-line);
    font-size: .69rem;
}

.dll-product-copy i {
    font-size: 1rem;
    font-style: normal;
    transition: transform .18s ease;
}

.dll-product:hover {
    color: var(--dll-ink);
}

.dll-product:hover img {
    transform: scale(1.025);
}

.dll-product:hover i {
    transform: translate(3px, -3px);
}

.dll-process {
    background: var(--dll-paper);
    border-block: 1px solid var(--dll-line);
}

.dll-process .dll-section-head {
    grid-template-columns: 1fr;
}

.dll-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #bdb9ae;
}

.dll-process-grid article {
    min-height: 285px;
    padding: 28px 34px 34px 0;
    border-right: 1px solid #cbc7bc;
}

.dll-process-grid article:not(:first-child) {
    padding-left: 34px;
}

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

.dll-process-grid article > span {
    color: #8a6500;
    font-size: .68rem;
    font-weight: 850;
}

.dll-process-grid h3 {
    margin: 64px 0 0;
    font-size: clamp(1.35rem, 2.2vw, 2.15rem);
    letter-spacing: -.045em;
    line-height: 1;
}

.dll-process-grid p {
    margin: 15px 0 0;
    color: var(--dll-muted);
    font-size: .76rem;
    line-height: 1.6;
}

.dll-closing {
    padding-block: clamp(82px, 11vw, 160px);
    background: var(--dll-yellow-pale);
}

.dll-closing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(48px, 9vw, 130px);
    align-items: start;
}

.dll-closing p {
    margin: 0 0 24px;
    color: #55554d;
    font-size: .88rem;
    line-height: 1.7;
}

.dll-contact-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.dll-contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 16px;
    color: var(--dll-ink);
    background: var(--dll-white);
    border: 1px solid #bba343;
    text-decoration: none;
    font-size: .76rem;
    font-weight: 780;
    transition: transform .18s ease, box-shadow .18s ease;
}

.dll-contact-icon svg {
    width: 18px;
    height: 18px;
    fill: #a97800;
    flex-shrink: 0;
}

.dll-contact-icon:hover {
    box-shadow: 0 10px 24px rgb(91 66 0 / 13%);
    transform: translateY(-2px);
}

.dll-contact-icon:focus-visible {
    outline: 3px solid #a97800;
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .dll-hero {
        grid-template-columns: 1fr 1fr;
    }

    .dll-hero-copy {
        padding: 44px 32px;
    }

    .dll-product,
    .dll-product-featured,
    .dll-product:nth-child(6) {
        grid-column: span 6;
    }
}

@media (max-width: 720px) {
    html {
        scroll-behavior: auto;
    }

    .dll-container {
        width: min(100% - 28px, var(--dll-container));
    }

    .dll-labbar-inner {
        gap: 8px;
    }

    .dll-labbar strong {
        margin-left: auto;
        font-size: .68rem;
    }

    .dll-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .dll-hero-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .dll-hero-copy {
        padding: 50px 22px 58px;
    }

    .dll-hero h1 {
        font-size: clamp(3.1rem, 15vw, 5.2rem);
    }

    .dll-actions,
    .dll-button {
        width: 100%;
    }

    .dll-proof {
        overflow: hidden;
    }

    .dll-proof-grid {
        width: 100%;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .dll-proof-grid > div {
        min-width: 78vw;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-left: 0;
        border-right: 1px solid var(--dll-line);
    }

    .dll-section-head,
    .dll-closing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dll-product-grid {
        display: flex;
        gap: 14px;
        margin-right: -14px;
        padding-right: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .dll-product {
        min-width: min(82vw, 420px);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

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

    .dll-process-grid article,
    .dll-process-grid article:not(:first-child) {
        min-height: 0;
        padding: 24px 0 30px;
        border-right: 0;
        border-bottom: 1px solid #cbc7bc;
    }

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

    .dll-process-grid h3 {
        margin-top: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dll-button,
    .dll-product-media img,
    .dll-product-copy i {
        transition: none;
    }
}
