:root {
    --green: #c5c908;
    --text: #545454;
    --muted: #747579;
    --grey: #ededed;
    --white: #fff;
    --black: #000;
    --frame: 1280px;
}

@font-face {
    font-family: "Helikon";
    src: url("../fonts/Helikon.otf") format("opentype");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Black.ttf") format("truetype");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.page-frame {
    position: relative;
    width: min(var(--frame), calc(100% - 48px));
    margin-inline: auto;
}

.button {
    display: inline-flex;
    min-width: 170px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 0;
    background: var(--green);
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, filter 160ms ease;
}

.button:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

.hero-band {
    background:
        linear-gradient(90deg, var(--white) 0 calc(50% + 10px), var(--green) calc(50% + 10px) 100%);
}

.hero {
    display: grid;
    grid-template-columns: 48.2% 51.8%;
    min-height: 760px;
    background: var(--white);
}

.hero::after {
    position: absolute;
    top: 0;
    right: calc((1280px - 100vw) / 2);
    z-index: 0;
    width: max(vw, 640px);
    height: 100%;
    background: var(--green);
    content: "";
}

.hero__left,
.hero__right {
    position: relative;
    z-index: 1;
}

.hero__left {
    min-height: 760px;
    padding: 14px 0 0 72px;
    background: var(--white);
}

.hero h1 {
    margin: 0 0 118px;
    color: var(--text);
    font-size: clamp(34px, 3.1vw, 43px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.96;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    font-family: "Helikon", Arial, sans-serif;
    font-weight: 500;
    animation: hero-title-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.hero h1 strong {
    display: block;
    color: #bec0af;
    font-family: "Gotham", Arial, sans-serif;
    font-size: 2.2vw;
    font-weight: 700;
    line-height: 0.8;
    text-transform: none;
    animation: hero-title-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) 210ms both;
}

.hero h1 em {
    display: block;
    margin-top: 10px;
    font-family: "Helikon", Arial, sans-serif;
    color: var(--text);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    animation: hero-title-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) 360ms both;
}

@keyframes hero-title-reveal {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__product {
    width: 390px;
    margin-left: 50px;
    text-align: center;
}

.hero__logo {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.hero__promise {
    margin: 34px 0 0;
    font-family: "Gotham", Arial, sans-serif;
    color: #707175;
    font-size: 3vw;
    font-weight: 500;
    line-height: 1.03;
}

.hero__promise strong {
    color: var(--text);
    font-weight: 900;
}

.hero__button {
    margin: 48px auto 0;
}

.hero__button,
.button--pulse {
    animation: hero-button-pulse 2200ms ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(197, 201, 8, 0.48);
}

.hero__button:hover,
.button--pulse:hover {
    animation-play-state: paused;
}

@keyframes hero-button-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(197, 201, 8, 0.48);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(197, 201, 8, 0);
        transform: translateY(-2px);
    }
}

.hero__right {
    width: calc(100% + 3px);
    min-height: 760px;
    padding: 20px 28px 0 0;
    background: var(--green);
    clip-path: polygon(31% 0, calc(100% + 2px) 0, calc(100% + 2px) 100%, 0 100%, 0 59%);
}

.hero__icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 360px;
    margin-left: auto;
}

.hero-icon {
    position: relative;
    display: grid;
    min-height: 72px;
    align-content: start;
    justify-items: center;
    padding: 4px 3px 7px;
    border-radius: 8px;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease;
}

.hero-icon:hover,
.hero-icon:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.hero-icon img {
    display: block;
    width: auto;
    max-width: 68px;
    height: 44px;
    filter: brightness(0) saturate(100%);
    margin-inline: auto;
    object-fit: contain;
}

.hero__claim {
    position: relative;
    z-index: 2;
    max-width: 410px;
    margin: 45px 0 0 auto;
    color: var(--white);
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 700;
    line-height: 0.93;
    text-align: right;
    text-transform: uppercase;
}

.hero__claim > span {
    font-family: "Helikon", Arial, sans-serif;
}

.hero__claim strong {
    display: block;
    color: var(--text);
    font-family: "Gotham", Arial, sans-serif;
    font-weight: 900;
    text-transform: none;
}

.hero__hand {
    --hero-hand-x: 0;
    position: absolute;
    right: -10px;
    bottom: 48px;
    width: 575px;
    height: auto;
    z-index: 1;
    animation: hero-hand-enter 850ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both,
        hero-hand-float 4200ms ease-in-out 1200ms infinite;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.12));
    transform: translateX(var(--hero-hand-x));
    transform-origin: 58% 52%;
    transition: filter 180ms ease;
}

.hero__hand:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.16));
}

@keyframes hero-hand-enter {
    0% {
        opacity: 0;
        transform: translateX(var(--hero-hand-x)) translate(26px, 18px) rotate(3deg) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateX(var(--hero-hand-x)) translate(0, 0) rotate(0) scale(1);
    }
}

@keyframes hero-hand-float {
    0%,
    100% {
        transform: translateX(var(--hero-hand-x)) translateY(0) rotate(0);
    }

    50% {
        transform: translateX(var(--hero-hand-x)) translateY(-10px) rotate(-1.4deg);
    }
}

.gecko {
    position: absolute;
    color: #4f5052;
    display: block;
    height: auto;
    pointer-events: none;
    transform-origin: 50% 50%;
}

.gecko--hero-a {
    top: 250px;
    left: -100px;
    width: 200px;
}

.intro-band {
    background: var(--white);
}

.how-video {
    padding: 58px 0 116px;
    background: var(--white);
}

.how h2,
.video-panel h2,
.uses-title-band h2,
.advice h2,
.footer h2 {
    margin: 0;
    font-family: "Gotham", Arial, sans-serif;
    color: var(--text);
    font-size: 5vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.96;
}

.how h2 {
    padding-left: 58px;
}

.how__grid {
    display: grid;
    grid-template-columns: 57% 43%;
    gap: 0;
    align-items: start;
    margin-top: 90px;
}

.how__visuals {
    padding-left: 48px;
}

.steps-strip {
    width: 604px;
    height: auto;
}

.cut-hand {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 16px;
    margin: 48px auto 0;
}

.cut-hand img {
    width: 110px;
    height: 110px;
    border: 6px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
}

.cut-hand span {
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.how__text {
    max-width: 390px;
    padding-top: 6px;
    font-family: Arial, sans-serif;
    color: #401804;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.34;
}

.how__text p {
    margin: 0 0 30px;
}

.video-panel {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 430px)
        clamp(42px, 8vw, 112px)
        minmax(220px, 320px)
        minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
    margin-top: 16px;
    padding: 0;
}

.video-panel__title {
    grid-column: 1 / -1;
    width: 100%;
    padding-left: 58px;
    margin-top: 1em;
}

.video-panel h2 {
    font-size: clamp(50px, 5vw, 76px);
}

.video-panel__title p {
    margin: 0;
    font-family: "Gotham", Arial, sans-serif;
    color: #b8b9b1;
    font-size: clamp(42px, 4.6vw, 70px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
}

.video-panel__media {
    grid-column: 2;
    grid-row: 2;
    width: min(360px, 100%);
    aspect-ratio: 9 / 16;
    margin: 54px auto 0;
    border-radius: 28px;
    background: var(--black);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
    object-fit: contain;
}

.video-panel__link {
    grid-column: 4;
    grid-row: 2;
    align-self: start;
    justify-self: center;
    min-width: 176px;
    margin: 200px 0 0;
    font-size: 13px;
}

.gecko--video {
    position: static;
    grid-column: 4;
    grid-row: 2;
    align-self: start;
    justify-self: center;
    width: 190px;
    margin: 250px 0 0;
    transform: scaleX(-1);
}

.uses-title-band {
    min-height: 772px;
    background: var(--green);
}

.uses-title-band__inner {
    min-height: 772px;
    display: grid;
    place-items: center;
}

.uses-title-band h2 {
    padding: 28px 52px 36px;
    background: var(--white);
    font-size: clamp(58px, 6.2vw, 88px);
}

.gallery-band {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 58px;
    max-width: 1120px;
    padding: 34px 0 74px;
}

.gallery-grid figure {
    position: relative;
    margin: 0;
    scroll-margin-top: 24px;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42) 100%);
    content: "";
    opacity: 0;
    transition: opacity 180ms ease;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 385 / 255;
    object-fit: cover;
    transition: filter 220ms ease, transform 220ms ease;
}

.gallery-card__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--green);
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card:hover {
    outline: 0;
}

.gallery-card:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after,
.gallery-card:hover .gallery-card__zoom,
.gallery-card:focus-visible .gallery-card__zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.045);
}

.gallery-grid figcaption {
    margin-top: 2px;
    font-family: Arial, sans-serif;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
}

.gallery-lightbox {
    width: min(1040px, calc(100% - 36px));
    max-height: calc(100dvh - 36px);
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    color: var(--white);
}

.gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(4px);
}

.gallery-lightbox[open] {
    animation: gallery-lightbox-in 180ms ease both;
}

.gallery-lightbox__figure {
    margin: 0;
}

.gallery-lightbox__figure img {
    width: 100%;
    max-height: calc(100dvh - 120px);
    object-fit: contain;
    background: var(--black);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox__figure figcaption {
    padding: 12px 48px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    color: var(--text);
    font-family: Arial, sans-serif;
    font-weight: 900;
    cursor: pointer;
    transition: filter 160ms ease, transform 160ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    filter: brightness(0.94);
    transform: scale(1.06);
}

.gallery-lightbox__close {
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    font-size: 22px;
}

.gallery-lightbox__nav {
    top: 50%;
    width: 46px;
    height: 46px;
    font-size: 34px;
    transform: translateY(-50%);
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox__nav--prev {
    left: -62px;
}

.gallery-lightbox__nav--next {
    right: -62px;
}

@keyframes gallery-lightbox-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.advice-band {
    background: var(--grey);
}

.advice {
    display: grid;
    grid-template-columns: minmax(0, 64%) minmax(0, 36%);
    min-height: 768px;
    padding: 60px 0 48px 58px;
}

.advice h2 {
    color: var(--green);
    font-size: clamp(46px, 4.5vw, 70px);
    line-height: 0.98;
}

.advice dl {
    max-width: 615px;
    margin: 48px 0 0;
    font-family: Arial, sans-serif;
    color: #401804;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.27;
}

.advice dl div {
    margin-bottom: 28px;
}

.advice dt {
    margin-bottom: 5px;
    font-weight: 900;
    text-transform: uppercase;
}

.advice dd {
    margin: 0;
}

.advice__side {
    position: relative;
}

.advice__side img {
    width: 380px;
    height: auto;
    margin: -34px 0 0 auto;
    mix-blend-mode: multiply;
}

.advice__side .button {
    position: absolute;
    right: 96px;
    bottom: 78px;
    min-width: 220px;
    min-height: 50px;
}

.brand-texture-band {
    min-height: 420px;
    background: url("../img/reference/brand-texture.jpg") center / cover no-repeat #969b88;
}

.footer-band {
    background: var(--grey);
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 71%) auto;
    min-height: 155px;
    align-items: start;
    gap: 20px;
    padding: 9px 0 10px clamp(23px, 3.8vw, 58px);
}

.footer h2 {
    color: var(--green);
    font-size: clamp(44px, 5.9vw, 72px);
    line-height: 0.92;
}

.footer__details {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 26px;
    margin-top: 6px;
}

.footer address {
    margin: 0;
}

.footer address,
.footer__links,
.footer-menu {
    font-family: Arial, sans-serif;
}

.footer address,
.footer__links {
    padding: 0;
    color: #585858;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.22;
    list-style: none;
}

.footer strong {
    font-family: "Arial Black", Arial, sans-serif;
    color: #4d4d4d;
    font-weight: 900;
}

.footer__links {
    margin: 0;
}

.footer__links li {
    margin-bottom: 2px;
}

.footer__links a {
    display: inline-flex;
    align-items: center;
    color: #585858;
    font-weight: 500;
    line-height: 1.08;
}

.footer__icon {
    display: inline-grid;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    place-items: center;
    margin-right: 4px;
    border-radius: 50%;
    background: #585858;
    color: var(--white);
}

.footer__icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.footer__site {
    padding-left: 22px;
}

.footer__logo {
    width: clamp(116px, 15vw, 190px);
    height: auto;
    margin: 4px 0 0;
    mix-blend-mode: multiply;
}

.footer-menu {
    display: flex;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 24px;
    background: var(--white);
    color: #333;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.footer-menu a:first-child {
    text-decoration: none;
}

.footer-menu a:nth-child(n + 3)::before {
    margin-right: 5px;
    content: "|";
}

@media (max-width: 1180px) {
    .page-frame {
        width: min(100% - 36px, var(--frame));
    }

    .hero,
    .hero__left,
    .hero__right {
        min-height: 680px;
    }

    .hero__left {
        padding-left: 28px;
    }

    .hero__product {
        width: 315px;
        margin-left: 36px;
    }

    .hero__icons {
        width: 300px;
        gap: 16px;
    }

    .hero__hand {
        width: 480px;
    }

    .how h2,
    .video-panel__title {
        padding-left: 24px;
    }

    .how__visuals {
        padding-left: 18px;
    }

    .video-panel__media {
        width: min(340px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .hero-band {
        background: var(--white);
    }

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

    .hero::after {
        display: none;
    }

    .hero__left {
        min-height: auto;
        padding: 24px 24px 42px;
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .hero h1 {
        width: min(100%, 620px);
        margin-bottom: 48px;
    }

    .hero__product {
        width: min(390px, 100%);
        margin-left: 0;
    }

    .hero__right {
        min-height: 720px;
        padding: 78px 20px 22px;
        clip-path: polygon(0 10%, calc(100% + 2px) 0, calc(100% + 2px) 100%, 0 100%);
    }

    .hero__icons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: min(100%, 520px);
        gap: 10px;
        margin-inline: auto;
    }

    .hero-icon {
        animation: none;
        opacity: 1;
    }

    .hero__claim {
        margin: 72px auto 0;
        text-align: center;
    }

    .gecko {
        display: none;
    }

    .hero__hand {
        --hero-hand-x: 50%;
        right: 50%;
        bottom: 24px;
        width: min(500px, 88%);
    }

    .how-video {
        padding: 42px 0 72px;
    }

    .how h2 {
        padding-left: 0;
    }

    .how__grid {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .how__visuals {
        padding-left: 0;
    }

    .steps-strip {
        width: 100%;
    }

    .cut-hand {
        margin: 28px auto 0;
    }

    .how__text {
        max-width: none;
        margin-top: 36px;
    }

    .video-panel {
        display: block;
        min-height: 0;
        padding-left: 0;
    }

    .video-panel__title {
        padding-left: 0;
    }

    .video-panel__media {
        width: min(330px, 82vw);
        margin: 56px auto 0;
    }

    .video-panel__link {
        display: flex;
        width: fit-content;
        margin: 28px auto 0;
    }

    .gecko--video {
        right: 20px;
        bottom: 84px;
        width: 72px;
    }

    .uses-title-band,
    .uses-title-band__inner {
        min-height: 430px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-lightbox__nav--prev {
        left: 10px;
    }

    .gallery-lightbox__nav--next {
        right: 10px;
    }

    .advice {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 46px 0 70px;
    }

    .advice dl {
        max-width: none;
    }

    .advice__side {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: center;
    }

    .advice__side img {
        margin: 20px auto 0;
    }

    .advice__side .button {
        position: static;
        margin-top: 28px;
        transform: none;
    }

    .footer {
        grid-template-columns: minmax(0, 71%) auto;
    }

    .footer__logo {
        margin-top: 4px;
    }
}

@media (max-width: 560px) {
    .page-frame {
        width: min(100% - 24px, var(--frame));
    }

    .button {
        min-width: 156px;
        padding-inline: 14px;
    }

    .hero__left {
        padding-inline: 12px;
    }

    .hero h1 {
        width: min(100%, 430px);
    }

    .hero h1 strong {
        font-size: 5.2vw;
    }

    .hero__product {
        width: min(330px, 100%);
    }

    .hero__promise {
        font-size: 6vw;
    }

    .hero__icons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        gap: 4px;
    }

    .hero__right {
        min-height: 690px;
        padding-top: 84px;
    }

    .hero__claim {
        max-width: 330px;
        margin-top: 66px;
        font-size: 28px;
        text-align: center;
    }

    .hero-icon {
        min-height: 62px;
        padding-inline: 1px;
        font-size: 6px;
    }

    .hero-icon img {
        max-width: 48px;
        height: 34px;
    }

    .hero-icon small {
        max-width: 120px;
        overflow-wrap: anywhere;
    }

    .how h2,
    .video-panel h2,
    .uses-title-band h2,
    .advice h2,
    .footer h2 {
        font-size: 41px;
    }

    .video-panel__title p {
        font-size: 36px;
    }

    .video-panel__media {
        width: min(300px, 84vw);
        margin-top: 44px;
        border-radius: 22px;
    }

    .gecko--video {
        display: none;
    }

    .uses-title-band h2 {
        padding: 20px 24px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 385px;
    }

    .gallery-lightbox {
        width: min(100% - 20px, 1040px);
    }

    .gallery-lightbox__nav {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .gallery-lightbox__close {
        top: -42px;
    }

    .advice__side img {
        width: min(420px, 100%);
    }

    .brand-texture-band {
        min-height: 220px;
        background: url("../img/reference/brand-texture.jpg") center / cover no-repeat #969b88;
    }

    .footer {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding: 26px 0 28px;
        text-align: center;
    }

    .footer__content {
        width: min(100%, 360px);
    }

    .footer h2 {
        margin-bottom: 18px;
    }

    .footer__details {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
    }

    .footer__links {
        margin-top: 0;
    }

    .footer__links a {
        justify-content: center;
    }

    .footer__site {
        padding-left: 0;
    }

    .footer__logo {
        justify-self: center;
        margin-top: 0;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 6px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
    font-family: "Arial Rounded MT Bold", "Arial Black", Arial, sans-serif;
    font-family: "Arial Rounded MT Bold", "Arial Black", Arial, sans-serif;
