.stk-animate-lamp {
    --lamp-intensity: 72;
    --lamp-intensity-decimal: calc(var(--lamp-intensity) / 100);
    --lamp-surface: #f6f7ed;
    --lamp-surface-dark: #1d1d1d;
    --lamp-text: #222222;
    --lamp-text-inverse: #f5f2ea;
    --lamp-accent: #f2b632;
    --lamp-line: rgba(34, 34, 34, 0.12);
    --lamp-line-dark: rgba(255, 255, 255, 0.24);
    background: var(--lamp-surface);
    color: var(--lamp-text);
    overflow: hidden;
    position: relative;
    transition:
        background-color 0.5s ease,
        color 0.45s ease;
}

.stk-animate-lamp.is-dark {
    background: var(--lamp-surface-dark);
    color: var(--lamp-text-inverse);
}

.stk-animate-lamp__inner {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.95fr) 92px minmax(320px, 1.15fr);
    min-height: 760px;
    padding: 84px 24px;
    position: relative;
}

.stk-animate-lamp__content {
    max-width: 420px;
    position: relative;
    z-index: 3;
}

.stk-animate-lamp__eyebrow {
    font-family: "The Seasons";
    font-size: 20px;
    letter-spacing: 0.34rem;
    margin: 0 0 1.75rem;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 20%;
    font-size: 1.2rem;
    letter-spacing: 0.34rem;
    margin: 0 0 1.75rem;
    text-transform: uppercase;
}

.stk-animate-lamp__title {
    color: inherit;
    font-weight: 300;
    margin: 0 0 2.2rem;
    font-family: "Strawford";
    font-weight: 400;
    font-size: 72px;
    line-height: 88px;
    letter-spacing: 0%;
}

.stk-animate-lamp__description {
    font-size: 1.55rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 38rem;
    opacity: 0.86;
}
.stk-animate-lamp__description p {
    font-family: Strawford;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.stk-animate-lamp__description p {
    margin: 0;
}

.stk-animate-lamp__price {
    margin-bottom: 2.4rem;
    font-family: Strawford;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.stk-animate-lamp__cta {
    appearance: none;
    background: #222121;
    border: 1px solid #222121;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    min-width: 170px;
    padding: 1.35rem 2.2rem;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    font-family: Strawford;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 5%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.stk-animate-lamp__cta:hover,
.stk-animate-lamp__cta:focus {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
}

.stk-animate-lamp.is-dark .stk-animate-lamp__cta {
    background: #f7f3eb;
    border-color: #f7f3eb;
    color: #181716;
}

.stk-animate-lamp__dimmer {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    justify-self: center;
    position: relative;
    z-index: 3;
}

.stk-animate-lamp__dimmer-icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
}

.stk-animate-lamp__dimmer-icon--top {
    transition: opacity 0.35s ease;
}

.stk-animate-lamp__icon-image {
    -webkit-mask-image: var(--stk-icon-url);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background-color: currentColor;
    display: block;
    height: auto;
    mask-image: var(--stk-icon-url);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    width: auto;
}

.stk-animate-lamp__icon-image--sunny {
    height: 42px;
    color: #ffbf36;
    width: 42px;
}

.stk-animate-lamp__icon-image--sunset {
    height: 42px;
    color: #000000;
    width: 42px;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__icon-image--sunny {
    color: #ffffff;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__icon-image--sunset {
    color: #ffbf36;
}

.stk-animate-lamp__range-wrap {
    align-items: center;
    display: flex;
    height: 360px;
    justify-content: center;
    position: relative;
    width: 52px;
}

.stk-animate-lamp__range-wrap::before {
    background: var(--lamp-line);
    bottom: 8px;
    content: "";
    left: 50%;
    position: absolute;
    top: 8px;
    transform: translateX(-50%);
    transition: background-color 0.35s ease;
    width: 1px;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__range-wrap::before {
    background: var(--lamp-line-dark);
}

.stk-animate-lamp__range {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    flex: 0 0 320px;
    height: 46px;
    margin: 0;
    max-width: 320px;
    min-width: 320px;
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: center;
    width: 320px !important;
    z-index: 2;
}

.stk-animate-lamp__range:disabled {
    cursor: default;
    opacity: 0.62;
}

.stk-animate-lamp__range::-webkit-slider-runnable-track {
    background: transparent;
    height: 1px;
}

.stk-animate-lamp__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #111317;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='white'/%3E%3Cpath d='M4.8 8L7.6 5.2V10.8L4.8 8Z' fill='%23111317'/%3E%3Cpath d='M11.2 8L8.4 10.8V5.2L11.2 8Z' fill='%23111317'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    cursor: pointer;
    height: 40px;
    margin-top: -19px;
    width: 40px;
}

.stk-animate-lamp__range::-moz-range-track {
    background: transparent;
    border: 0;
    height: 1px;
}

.stk-animate-lamp__range::-moz-range-thumb {
    background-color: #111317;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='white'/%3E%3Cpath d='M4.8 8L7.6 5.2V10.8L4.8 8Z' fill='%23111317'/%3E%3Cpath d='M11.2 8L8.4 10.8V5.2L11.2 8Z' fill='%23111317'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    cursor: pointer;
    height: 40px;
    width: 40px;
}

.stk-animate-lamp__range::-moz-range-progress {
    background: transparent;
}

.stk-animate-lamp__mode-switch {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    padding: 0;
    position: relative;
    transition: transform 0.28s ease;
}

.stk-animate-lamp__mode-switch:hover,
.stk-animate-lamp__mode-switch:focus {
    transform: translateY(-2px);
}

.stk-animate-lamp__mode-switch.is-animating {
    animation: stkLampPulse 0.45s ease;
}

.stk-animate-lamp__visual {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 600px;
    position: relative;
}

.stk-animate-lamp__visual-link {
    display: block;
    max-width: min(100%, 620px);
    position: relative;
    z-index: 3;
}

.stk-animate-lamp__ambient {
    background: radial-gradient(
        circle,
        rgba(255, 251, 242, calc(var(--lamp-intensity-decimal) * 0.9)) 0,
        rgba(255, 251, 242, calc(var(--lamp-intensity-decimal) * 0.45)) 26%,
        rgba(255, 251, 242, calc(var(--lamp-intensity-decimal) * 0.14)) 44%,
        rgba(255, 251, 242, 0) 70%
    );
    filter: blur(18px);
    height: min(76vw, 680px);
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 42%;
    transform: translate(-50%, -50%);
    transition: opacity 0.45s ease;
    width: min(76vw, 760px);
    z-index: 1;
}

.stk-animate-lamp__glow {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, calc(var(--lamp-intensity-decimal) * 0.75)) 0,
        rgba(255, 255, 255, calc(var(--lamp-intensity-decimal) * 0.34)) 28%,
        rgba(255, 255, 255, 0) 62%
    );
    filter: blur(48px);
    height: min(58vw, 420px);
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 28%;
    transform: translate(-50%, -50%);
    transition: opacity 0.45s ease;
    width: min(58vw, 420px);
    z-index: 2;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__ambient,
.stk-animate-lamp.is-dark .stk-animate-lamp__glow {
    opacity: 1;
}

.stk-animate-lamp__light-panel,
.stk-animate-lamp__light-core {
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 31%;
    transform: translate(-50%, -50%);
    transition:
        opacity 0.45s ease,
        filter 0.45s ease;
}

.stk-animate-lamp__light-panel {
    background: rgba(255, 255, 255, calc(var(--lamp-intensity-decimal) * 0.58));
    border-radius: 26%;
    filter: blur(calc(32px + var(--lamp-intensity-decimal) * 46px));
    height: min(56vw, 360px);
    mix-blend-mode: screen;
    width: min(74vw, 720px);
    z-index: 4;
}

.stk-animate-lamp__light-core {
    background: rgba(255, 253, 247, calc(var(--lamp-intensity-decimal) * 0.42));
    border-radius: 28%;
    filter: blur(calc(16px + var(--lamp-intensity-decimal) * 18px));
    height: min(30vw, 200px);
    width: min(32vw, 230px);
    z-index: 2;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__light-panel,
.stk-animate-lamp.is-dark .stk-animate-lamp__light-core {
    opacity: 1;
}

.stk-animate-lamp__image {
    display: block;
    max-height: 700px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0;
    position: relative;
    transition:
        filter 0.45s ease,
        opacity 0.4s ease;
    z-index: 3;
}

.stk-animate-lamp__image--light {
    opacity: 1;
}

.stk-animate-lamp__image--dark {
    left: 0;
    position: absolute;
    top: 0;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__image--light {
    opacity: 0;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__image--dark {
    opacity: 1;
}

.stk-animate-lamp.is-dark .stk-animate-lamp__image--dark {
    filter: brightness(calc(0.86 + var(--lamp-intensity-decimal) * 0.24))
        contrast(calc(1 + var(--lamp-intensity-decimal) * 0.16))
        drop-shadow(
            0 0 42px
                rgba(255, 249, 234, calc(var(--lamp-intensity-decimal) * 0.18))
        )
        drop-shadow(0 28px 36px rgba(0, 0, 0, 0.48));
}

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

@keyframes stkLampPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .stk-animate-lamp__inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .stk-animate-lamp__content {
        max-width: 100%;
    }

    .stk-animate-lamp__eyebrow {
        margin-bottom: 1.8rem;
        font-family: The Seasons;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 20%;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
    }

    .stk-animate-lamp__title {
        margin-bottom: 1.8rem;
        font-family: Strawford;
        font-weight: 400;
        font-style: Regular;
        font-size: 32px;
        line-height: 48px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
    }

    .stk-animate-lamp__description {
        margin: 0 auto 1.8rem;
        max-width: 31rem;
        font-family: Strawford;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
    }

    .stk-animate-lamp__inner {
        gap: 2.2rem;
        padding: 34px 16px 44px;
    }

    .stk-animate-lamp__visual {
        margin: 0 auto;
        width: min(100%, 240px);
    }

    .stk-animate-lamp__visual-link {
        max-width: 100%;
    }

    .stk-animate-lamp__image {
        margin: 0 auto;
        max-height: 300px;
    }

    .stk-animate-lamp__ambient {
        height: 320px;
        top: 40%;
        width: 320px;
    }

    .stk-animate-lamp__glow {
        height: 220px;
        top: 26%;
        width: 220px;
    }

    .stk-animate-lamp__light-panel {
        height: 185px;
        top: 31%;
        width: 300px;
    }

    .stk-animate-lamp__light-core {
        height: 118px;
        top: 31%;
        width: 138px;
    }

    .stk-animate-lamp__dimmer {
        display: grid;
        gap: 1.2rem;
        grid-template-columns: 32px minmax(0, 1fr) 32px;
        width: min(100%, 320px);
    }

    .stk-animate-lamp__range-wrap {
        height: 52px;
        width: 100%;
    }

    .stk-animate-lamp__range-wrap::before {
        bottom: auto;
        height: 1px;
        left: 12px;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    .stk-animate-lamp__range {
        flex-basis: 100%;
        height: 46px;
        max-width: 100%;
        min-width: 100%;
        position: relative;
        transform: none;
        width: 100% !important;
    }

    .stk-animate-lamp__icon-image--sunny {
        height: 42px;
        width: 42px;
    }

    .stk-animate-lamp__icon-image--sunset {
        height: 42px;
        width: 42px;
    }

    .stk-animate-lamp__price {
        margin-bottom: 2rem;
        font-family: Strawford;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
    }

    .stk-animate-lamp__cta {
        min-width: 208px;
        padding: 1.45rem 2.4rem;
        font-family: Strawford;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 5%;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
    }

    .stk-animate-lamp__inner {
        min-height: 0;
        padding: 64px 20px;
    }

    .stk-animate-lamp__content {
        margin: 0 auto;
        max-width: 640px;
        text-align: center;
    }

    .stk-animate-lamp__dimmer {
        order: 2;
    }

    .stk-animate-lamp__visual {
        min-height: 0;
        order: 1;
    }

    .stk-animate-lamp__content {
        order: 3;
    }
}
