* {
    font-family: "Space Grotesk", sans-serif;
}
.scroll-progress {
    position: fixed;
    top: 10px;
    left: 24px;
    right: 24px;
    width: auto;
    height: 1px;
    background: rgba(248, 247, 247);
    z-index: 9999;
}
.scroll-progress__line {
    display: block;
    width: 0;
    height: 100%;
    background: #0d0d0d;
    transition: width .1s linear;
}
html {
    scrollbar-color: #111 transparent;
    scrollbar-width: thin;
    
}
::-webkit-scrollbar {
    width: 1px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 1px;
}
h2 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #040404;
    color: #fff;
    font-family: Arial, sans-serif;
}
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo-mark {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 20px;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.header__logo-mark img {
    display: block;
    width: 72%;
    height: 72%;
    object-fit: contain;
}

html.is-language-scroll-restoring body {
    visibility: hidden;
}

.header__logo:hover .header__logo-mark {
    transform: rotate(45deg);
    background: #fff;
    color: #000;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 400;
}

.header__logo-text strong {
    margin-top: 4px;
    font-size: 15px;
    letter-spacing: 5px;
    opacity: 0.45;
    font-weight: 400;
    text-align: center;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 45px);
}

.header__link {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: clamp(16px, 1.3vw, 24px);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.4s ease;
}

.header__link:hover {
    color: #fff;
}

.header__link:hover::after {
    width: 100%;
}

.header__button {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.header__button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.header__button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.header__button:hover .header__button-arrow {
    transform: translate(3px, -3px);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    letter-spacing: 1px;
}

.language-switcher__link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.language-switcher__link:hover,
.language-switcher__link.is-active {
    color: #fff;
}

@media (min-width: 769px) {
    .visual-card[data-visual-clone] {
        display: none;
    }
}

.header__burger {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.header__burger span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: #fff;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* HERO */

.hero {
    height: 500vh;
}

.hero__inner {
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(320px, 45vw);
    height: min(430px, 60vh);
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 24px;
    opacity: 0;
    z-index: 2;
    will-change: transform, opacity, width, height, border-radius;
}

.hero-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.hero-video__overlay h2 {
    width: 1000px;
    margin: 0;
    font-size: 50px;
    line-height: 0.85;
    font-weight: 500;
    color: #fff;
}

.hero-video__overlay span {
    margin-top: 4px;
    font-size: 22px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.6);
}

/* PROJECTS */
.projects {
    height: 400vh;
}

.projects__inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.project {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 8vw;
    opacity: 0;
}

.project-2,
.project-4 {
    flex-direction: row-reverse;
}

.project__text span {
    display: block;
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 4px;
    color: #777;
}

.project__text h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 79px);
    line-height: 0.8;
    letter-spacing: -5px;
    text-align: center;
    font-weight: 500;
}

.project__text p {
    max-width: 740px;
    margin-top: 15px;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    color: #777;
}

.project__video {
    width: 48%;
    height: 65vh;
    overflow: hidden;
    border-radius: 20px;
}

.project__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects,
.projects *,
.projects *::before,
.projects *::after {
    box-sizing: border-box;
}

/* WHY US */
.why-us {
    width: 100%;
    padding: 10px 5vw;
    background: #040404;
    color: #fff;
}

.why-us__top {
    display: grid;
    gap: 40px;
    margin-bottom: 30px;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.why-us__label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.why-us__label span {
    color: #fff;
}

.why-us__intro {
    max-width: 900px;
}

.why-us__intro h2 {
    margin: 0 0 35px;
    font-size: clamp(50px, 7vw, 110px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.why-us__intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
}

.why-us__list {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-us__item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 30px;
    min-height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        padding 0.5s ease,
        background 0.5s ease;
}

.why-us__number {
    align-self: flex-start;
    padding-top: 35px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.why-us__content {
    padding: 35px 0;
}

.why-us__content h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.03em;
    transition: transform 0.5s ease;
}

.why-us__content p {
    max-width: 600px;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        transform 0.5s ease,
        margin 0.5s ease;
}

.why-us__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition:
        transform 0.5s ease,
        background 0.5s ease,
        color 0.5s ease;
}

.why-us__item:hover {
    padding-left: 25px;
    padding-right: 25px;
    background: #111;
}

.why-us__item:hover .why-us__content h3 {
    transform: translateX(10px);
}

.why-us__item:hover .why-us__content p {
    max-height: 100px;
    margin-top: 18px;
    opacity: 1;
    transform: translateY(0);
}

.why-us__item:hover .why-us__arrow {
    transform: rotate(45deg);
    background: #fff;
    color: #000;
}

/* SERVICES */
.services {
    position: relative;
    height: 600vh;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.services__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.services__top {
    position: absolute;
    top: 35px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.services__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
}

.services__counter {
    font-size: 11px;
    letter-spacing: 0.12em;
    opacity: 0.5;
}

.services__current {
    color: #fff;
    opacity: 1;
}

.services__slash {
    margin: 0 5px;
    opacity: 0.3;
}

.services__bg-number {
    position: absolute;
    left: -7vw;
    bottom: -18vw;
    font-size: 55vw;
    line-height: 0.7;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
}

.services__content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns:
        minmax(250px, 1fr)
        minmax(300px, 1.2fr)
        minmax(220px, 0.7fr);
    align-items: center;
    padding: 100px 40px 80px;
}

.services__info {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.services__number {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.15em;
    opacity: 0.45;
}

.services__category {
    margin-bottom: 15px;
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.45;
}

.services__title {
    margin: 0;
    font-size: clamp(60px, 8vw, 150px);
    line-height: 0.8;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.services__description {
    max-width: 330px;
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.services__visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__orb {
    position: relative;
    width: min(32vw, 420px);
    height: min(32vw, 420px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__orb::before {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.services__orb::after {
    content: "";
    position: absolute;
    inset: 27%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.services__orb-inner {
    width: 38%;
    height: 38%;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        border-radius 0.5s ease,
        transform 0.5s ease;
}

.services__orb-text {
    font-size: 9px;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.services__line {
    position: absolute;
    width: 1px;
    height: 70%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
}

.services__line--1 {
    left: 20%;
    transform: rotate(25deg);
}

.services__line--2 {
    right: 20%;
    transform: rotate(-25deg);
}

.services__line--3 {
    transform: rotate(90deg);
    width: 70%;
    height: 1px;
}

.services__dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.services__dot--1 {
    top: 25%;
    left: 25%;
}

.services__dot--2 {
    right: 22%;
    bottom: 27%;
}

.services__dot--3 {
    top: 35%;
    right: 15%;
}

.services__list {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.services__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    cursor: default;
    opacity: 0.25;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.services__item span {
    font-size: 10px;
    letter-spacing: 0.1em;
}

.services__item strong {
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.services__item.is-active {
    opacity: 1;
    transform: translateX(12px);
}

.services__item.is-active::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 1px;
    margin-left: -40px;
    background: #fff;
}

.services__bottom {
    position: absolute;
    bottom: 35px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.services__bottom span:first-child {
    font-size: 9px;
    letter-spacing: 0.18em;
    opacity: 0.35;
}

.services__arrow {
    font-size: 20px;
    opacity: 0.5;
}

.services__statement {
    position: absolute;
    right: 40px;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
    opacity: 0.25;
}

.services__statement span:last-child {
    opacity: 0.5;
}
/*uslig*/
.uslig {
    position: relative;
    width: 100%;
    height: 400vh;
    background: #000;
    color: #fff;
}

.uslig__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 35px 5vw;
}

.uslig__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.uslig__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.7);
    filter: grayscale(1);
    opacity: 0.35;
    border-radius: 30px;
}

.uslig__visual video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
    transform: scale(0.7);
    filter: grayscale(1);
    opacity: 0.48;
    border-radius: 30px;
}

.uslig__overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to bottom, rgb(7 5 5 / 75%), rgba(17, 17, 17, 0.2) 45%, rgba(0, 0, 0, 0.85));
}

.uslig__top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.uslig__label {
    color: #fff;
}

.uslig__hint {
    color: rgba(255, 255, 255, 0.45);
}

.uslig__center {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.uslig__title {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(60px, 9vw, 150px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.07em;
}

.uslig__title span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.uslig__services {
    position: absolute;
    z-index: 3;
    left: 5vw;
    right: 5vw;
    bottom: 110px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.uslig__service {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.35;
    transform: translateY(40px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.uslig__service span {
    display: block;
    margin-bottom: 25px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.uslig__service h3 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 400;
}

.uslig__service p {
    max-width: 230px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.uslig__bottom {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.uslig__bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
}

.uslig__bottom a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.uslig__bottom a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.uslig__bottom a:hover span {
    transform: rotate(45deg);
    background: #fff;
    color: #000;
}



/* CONTACT */
.contact {
    position: relative;
    min-height: 50vh;
    padding: 92px 7vw;
    overflow: hidden;
}

.contact__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(400px, 520px);
    gap: 60px;
    align-items: center;
}

.contact__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact__content .contact__title,
.contact__content .contact__label,
.contact__content .contact__description {
    margin-right: auto;
    margin-left: auto;
}

.contact__content .contact__decor {
    justify-content: center;
}

.contact__glow {
    position: absolute;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.35;
}

.contact__glow--1 {
    top: 190px;
    left: 150px;
    background: #5d2cff;
}

.contact__glow--2 {
    right: 100px;
    bottom: 190px;
    background: #5d2cff;
}

.contact__label {
    display: inline-block;
    margin-bottom: 35px;
    font-size: 12px;
    letter-spacing: 4px;
    color: #888;
}

.contact__title {
    max-width: 800px;
    margin: 0;
    font-size: clamp(55px, 7vw, 110px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 700;
}

/* Заголовок «Давайте начнем сейчас» всегда остаётся одной строкой. */
.contact__title {
    max-width: none;
    white-space: nowrap;
    /* The title shares a column with the form on desktop, so 48px is
       the largest safe size before it can overlap the form. */
    font-size: clamp(18px, 3vw, 48px);
}

.contact__title br {
    display: none;
}

.contact__title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.contact__description {
max-width: 450px;
    margin-top: -84px;
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

.contact__decor {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
    color: #666;
    font-size: 12px;
    letter-spacing: 2px;
}

.contact__circle {
    position: relative;
    width: 45px;
    height: 45px;
    border: 1px solid #555;
    border-radius: 50%;
}

.contact__circle::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
}

.contact__form-wrapper {
    position: relative;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.contact__field {
    margin-bottom: 30px;
}

.contact__field label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #777;
    letter-spacing: 1px;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    resize: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 17px;
    transition: border-color 0.3s ease;
}

.contact__field input:focus,
.contact__field textarea:focus {
    border-color: #fff;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #555;
}

.contact__button {
    width: 100%;
    margin-top: 15px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contact__button:hover {
    transform: scale(1.03);
    background: #ff1764;
    color: #fff;
}

.contact__arrow {
    font-size: 25px;
    transition: transform 0.3s ease;
}

.contact__button:hover .contact__arrow {
    transform: translateX(8px);
}

.contact__privacy {
    margin-top: 20px;
    color: #555;
    font-size: 11px;
    line-height: 1.5;
}




/* =========================================================
   TITLE
========================================================= */

.title {
    position: absolute;
    max-width: 90vw;

    font-size: clamp(42px, 7vw, 90px);
    line-height: 0.9;
    letter-spacing: clamp(-2px, -0.4vw, -5px);
    font-weight: 500;
    text-align: center;

    white-space: nowrap;
    opacity: 0;
}


/* =========================================================
   SCROLL HINT
========================================================= */

.scroll-hint {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    transform: translateX(-50%);
    text-align: center;

    pointer-events: none;
}

.scroll-hint span {
    font-size: 16px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    font-size: 38px;
    line-height: 1;
    color: #fff;

    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


/* =========================================================
   MEDIA CONTAINER
========================================================= */

.media-container {
    position: absolute;

    width: 500px;
    height: 300px;

    overflow: hidden;

    opacity: 0;
    border-radius: 20px;
    background: #040404;
}

.video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    color: #fff;
    text-align: center;

    background: rgba(0, 0, 0, 0.25);

    opacity: 0;
    pointer-events: none;
}

.video-overlay__label {
    margin-bottom: 15px;

    font-size: 37px;
    letter-spacing: 5px;

    color: rgba(255, 255, 255, 0.6);
}

.video-overlay h2 {
    margin: 0;

    font-size: clamp(45px, 7vw, 75px);
    line-height: 0.85;
    letter-spacing: -4px;
    font-weight: 600;
}

.video-overlay p {
    max-width: 808px;
    margin-top: 18px;

    font-size: 23px;
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   NEXT / GALLERY
========================================================= */

.next {
    min-height: 50vh;
    padding: 10px 0;
    overflow: visible;
}

.next__header {
    padding: 0 7vw;
    margin-bottom: 19px;
    margin-top: -48px;
}

.next__label {
    display: block;

    margin-bottom: 25px;

    font-size: 12px;
    letter-spacing: 4px;

    color: #777;
}

.next__header h2 {
    font-size: clamp(50px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 500;
    text-align: center;
}

.next__header p {
    margin-top: 30px;

    font-size: 18px;
    color: #777;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.gallery__track {
    display: flex;

    width: max-content;
    gap: 30px;

    padding-left: 7vw;

    --marquee-drag-offset: 0px;
    --gallery-loop-distance: 2250px;
    animation: galleryMarquee 35s linear infinite;

    will-change: transform;
    cursor: grab;
    touch-action: pan-y;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gallery__track.is-dragging {
    cursor: grabbing;
}

.gallery__item {
    position: relative;

    flex: 0 0 auto;

    width: 420px;
    height: 520px;

    overflow: hidden;

    background: #151515;

    cursor: pointer;
    user-select: none;
}

.gallery__item img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    cursor: zoom-in;
    -webkit-user-drag: none;
    user-select: none;

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.gallery__item::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 50%
        );
}

.gallery__item span {
    position: absolute;
    left: 25px;
    bottom: 1px;
    z-index: 3;

    font-size: 12px;
    letter-spacing: 2px;

    color: #fff;
}

.gallery__item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery__track.is-dragging {
    animation-play-state: paused;
}

@keyframes galleryMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(
            calc(-5 * 420px - 4 * 30px),
            0,
            0
        );
    }
}


/* =========================================================
   SPLIT
========================================================= */

.split-inner {
    position: sticky;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100vh;

    overflow: hidden;
}

.split-text {
    position: absolute;
    z-index: 1;

    width: min(600px, 80vw);

    text-align: center;
}

.split-text span {
    display: block;

    margin-bottom: 8px;

    font-size: clamp(18px, 2.2vw, 33px);
    letter-spacing: clamp(2px, 0.35vw, 5px);

    color: #777;
}

.split-text h2 {
    margin: 0;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.9;
    letter-spacing: clamp(-3px, -0.35vw, -5px);
    font-weight: 500;
}

.split-text p {
    width: 100%;
    max-width: 400px;

    margin: clamp(20px, 3vw, 30px) auto 0;

    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.5;

    color: #777;
}

.split-cube {
    position: absolute;
    z-index: 2;

    width: clamp(180px, 30vw, 400px);
    height: clamp(180px, 30vw, 400px);
}


/* =========================================================
   IMAGE VIEWER
========================================================= */

.image-viewer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.95);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-viewer__image {
    display: block;

    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;

    transform: scale(0.95);

    transition: transform 0.3s ease;
}

.image-viewer.active .image-viewer__image {
    transform: scale(1);
}

.image-viewer__close {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 2;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.image-viewer__close:hover {
    background: #fff;
    color: #000;
}


/* =========================================================
   STORY
========================================================= */

.story {
    position: relative;

    height: 200vh;

    background: #040404;
}

.story__inner {
    position: sticky;
    top: 0;

    height: 100vh;

    overflow: hidden;
}

.story__video-wrapper {
    position: absolute;

    top: 57%;
    left: 54%;

    width: 82vw;
    max-width: 546px;
    height: 78vh;

    transform: translate(-50%, -50%);

    overflow: hidden;

    border-radius: 30px;
}

.story__video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: opacity .28s ease, transform .35s ease;
}

.story__video.is-changing {
    opacity: 0;
    transform: scale(1.03);
}

.story__video-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0.65)
        );
}

.story__content {
    position: absolute;
    inset: 0;

    padding: 70px 7vw;

    opacity: 0;
    pointer-events: none;
}

.story__heading {
    position: absolute;

    top: 122px;
    left: 7vw;

    max-width: 800px;
}

.story__label {
    display: block;

    font-size: 12px;
    letter-spacing: 4px;

    color: rgba(255, 255, 255, 0.5);
}

.story__heading h2 {
    margin: 0;

    font-size: clamp(70px, 9vw, 101px);
    line-height: 0.82;
    letter-spacing: -8px;
    font-weight: 500;
}

.story__heading h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.story__heading p {
    max-width: 550px;

    margin-top: 35px;

    font-size: 20px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.6);
}

.story__heading p span {
    display: block;
}

.story__heading p span + span {
    margin-top: 20px;
}

.story__text[hidden] {
    display: none;
}

.story__cards {
    position: absolute;

    left: 7vw;
    bottom: 60px;

    display: flex;
    gap: 15px;
    pointer-events: auto;
}

.story__card {
    width: 190px;
    min-height: 150px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(15px);
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.story__card:hover,
.story__card:focus-visible,
.story__card.is-active {
border-color: rgba(255, 255, 255, .8);
    background: rgb(80 80 80 / 18%);
    outline: none;
}

.story__card:hover {
    transform: translateY(-5px);
}

.story__card-number {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    letter-spacing: 2px;

    color: #777;
}

.story__card h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 400;
}

.story__card p {
    margin-top: 10px;

    font-size: 13px;
    line-height: 1.4;

    color: #777;
}

.story__cta {
    position: absolute;

    right: 7vw;
    bottom: 60px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;

    pointer-events: auto;
}

.story__cta > span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.story__cta a {
    display: flex;
    align-items: center;
    gap: 30px;

    padding: 18px 25px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;

    color: #fff;
    text-decoration: none;
    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.story__cta a strong {
    font-size: 20px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

.story__cta a:hover {
    background: #fff;
    color: #000;

    transform: translateY(-3px);
}

.story__cta a:hover strong {
    transform: translate(4px, -4px);
}


/* =========================================================
   FEEDBACK POPUP
========================================================= */

.feedback-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.feedback-popup.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.feedback-popup__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feedback-popup__window {
    position: relative;
    z-index: 1;

    width: min(560px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    padding: 50px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;

    background: #111;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5);

    transform: translateY(30px) scale(0.96);

    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-popup.active .feedback-popup__window {
    transform: translateY(0) scale(1);
}

.feedback-popup__close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    background: transparent;

    color: #fff;
    font-size: 28px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.feedback-popup__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.feedback-popup__label {
    display: block;

    margin-bottom: 16px;

    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.5;
}

.feedback-popup__content h2 {
    margin: 0 0 20px;

    font-size: clamp(32px, 5vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.feedback-popup__content h2 span {
    display: block;
    opacity: 0.45;
}

.feedback-popup__description {
    max-width: 440px;

    margin: 0 0 35px;

    font-size: 16px;
    line-height: 1.5;

    opacity: 0.65;
}

.feedback-popup__form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feedback-popup__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-popup__field label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    opacity: 0.5;
}

.feedback-popup__field input,
.feedback-popup__field textarea {
    box-sizing: border-box;

    width: 100%;

    padding: 15px 0;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    outline: none;

    background: transparent;

    color: #fff;

    font-family: inherit;
    font-size: 16px;

    resize: vertical;

    transition: border-color 0.3s ease;
}

.feedback-popup__field input:focus,
.feedback-popup__field textarea:focus {
    border-bottom-color: #fff;
}

.feedback-popup__field input::placeholder,
.feedback-popup__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.feedback-popup__button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 8px;
    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;

    background: #fff;
    color: #000;

    font-family: inherit;
    font-size: 15px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.feedback-popup__button:hover {
    transform: translateY(-2px);
    background: #e8e8e8;
}

.feedback-popup__privacy {
    margin: 0;

    font-size: 11px;
    line-height: 1.4;

    opacity: 0.4;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    position: relative;

    height: 500vh;

    background: #050505;
}

.process__sticky {
    position: sticky;
    top: 0;

    height: 100vh;

    overflow: hidden;
}

.process__timeline {
    position: absolute;

    top: 15%;
    left: 50%;

    width: 2px;
    height: 70%;

    transform: translateX(-50%);
}

.process__line {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.12);
}

.process__line-progress {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 0%;

    background: #fff;

    transform-origin: top;
}

.process__point {
    position: absolute;
    left: 50%;

    width: 10px;
    height: 10px;

    transform: translateX(-50%);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    background: #050505;
}

.process__point--1 {
    top: 0;
}

.process__point--2 {
    top: 33.33%;
}

.process__point--3 {
    top: 66.66%;
}

.process__point--4 {
    top: 100%;
}


/* =========================================================
   SAFE AREA
========================================================= */

@supports (padding: env(safe-area-inset-bottom)) {
    .header__inner {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(25px, env(safe-area-inset-bottom));
    }
}


/* =========================================================
   VISUAL SECTION — TOP
========================================================= */

.visual-section__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-bottom: 20px;

    color: #fff;
}

.visual-section__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;

    color: rgba(255, 255, 255, 0.45);
}

.visual-section__hint {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.5);
}

.visual-section__hint span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.8);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.visual-section__hint:hover span {
    transform: translateY(3px);

    border-color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   VISUAL SECTION
========================================================= */

.visual-section__visual {
    position: relative;

    width: 100%;
    height: 1100px;

    margin-top: 0;

    overflow: hidden;

    background: #080808;

    border: 1px solid rgba(255, 255, 255, 0.08);

    isolation: isolate;

    transition:
        width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        height 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        margin 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 0.4s ease;
}

.visual-section__media {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;
}

.visual-section__media img,
.visual-section__media video,
.visual-media,
.visual-video {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    filter:
        brightness(0.68)
        contrast(1.08)
        saturate(0.85);

    transition:
        opacity 0.55s ease,
        transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.5s ease;
}

.visual-media,
.visual-video {
    z-index: 1;

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-video {
    pointer-events: none;
}

.visual-video--01 {
    z-index: 2;
}

.visual-video--02 {
    z-index: 3;
}

.visual-section__media img.is-visible,
.visual-section__media video.is-visible,
.visual-media.is-visible,
.visual-video.is-visible {
    opacity: 1;
}

.visual-section__visual:hover
.visual-section__media img.is-visible,
.visual-section__visual:hover
.visual-section__media video.is-visible {
    transform: scale(1.06);
}

.visual-section__visual::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.28) 42%,
            rgba(0, 0, 0, 0.5) 100%
        );
}

.visual-section__visual::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.08) 48%,
            rgba(0, 0, 0, 0.15) 100%
        );
}

.visual-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            transparent 15%,
            rgba(0, 0, 0, 0.12) 100%
        );
}


/* =========================================================
   VISUAL CONTENT
========================================================= */

.visual-section__content {
    position: absolute;
    inset: 0;
    z-index: 5;

    pointer-events: none;
}

.visual-section__side-text,
.visual-section__center-text {
    position: absolute;

    max-width: 40%;
    width: max-content;

    color: #fff;

    transition:
        top 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        right 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s ease;
}
/*
.visual-section__side-text {
  /  width: 300px;
}
*/
.visual-section__side-text.is-changing,
.visual-section__center-text.is-changing {
    opacity: 0;

    transform: translateY(12px);
}

.visual-section__side-number {
    position: relative;
    
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: none;
    color: rgba(255, 255, 255, 0.55);
}

.visual-section__side-number::before {
    content: "";
    
    width: 28px;
    height: 1px;

    background: rgba(255, 255, 255, 0.5);
}

.visual-section__side-text h2 {
    margin: 0 0 15px;

    font-size: clamp(38px, 4vw, 68px);
    line-height: 0.88;
    letter-spacing: -0.055em;
    font-weight: 400;

    color: #fff;

    text-wrap: balance;
}

.visual-section__side-text p {
    max-width: 350px;

    margin: 0;

    font-size: 20px;


    color: rgba(255, 255, 255, 0.62);
}

.visual-section__center-text {
    width: 420px;

    text-align: center;
}

.visual-section__center-text span {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.5);
}

.visual-section__center-text h2 {
    margin: 0;

    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 300;

    text-wrap: balance;
}


/* =========================================================
   VISUAL — FULLSCREEN
========================================================= */

.visual-section__visual.visual--fullscreen {
    width: 100vw;
    height: 90vh;

    margin-left: calc(51% - 51vw);
    margin-top: 0;

    border-left: 0;
    border-right: 0;
}

.visual-section__visual.visual--fullscreen
.visual-section__media img.is-visible,
.visual-section__visual.visual--fullscreen
.visual-section__media video.is-visible {
    filter:
        brightness(0.62)
        contrast(1.1)
        saturate(0.85);
}


/* =========================================================
   VISUAL LAYOUTS
========================================================= */

/* Layout 01 */

.visual-layout--01 .visual-section__side-text {
    left: 6%;
    top: 50%;

    transform: translateY(-50%);

    text-align: left;
}

.visual-layout--01 .visual-section__center-text {
    right: 5%;
    top: 82%;

    text-align: right;
}


/* Layout 02 */

.visual-layout--02 .visual-section__side-text {
    right: 6%;
    bottom: 12%;
    left: auto;
    top: auto;

    transform: none;

    text-align: right;
}

.visual-layout--02 .visual-section__center-text {
    left: 7%;
    top: 18%;

    right: auto;

    text-align: left;
}


/* Layout 03 */

.visual-layout--03 .visual-section__side-text {
    left: 50%;
    top: 13%;

    transform: translateX(-50%);

    text-align: center;
}

.visual-layout--03 .visual-section__center-text {
    left: 50%;
    bottom: 4%;
    top: auto;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
}


/* Layout 04 */

.visual-layout--04 .visual-section__side-text {
    left: 7%;
    bottom: 12%;

    top: auto;
    right: auto;

    transform: none;

    text-align: left;
}

.visual-layout--04 .visual-section__center-text {
    right: 7%;
    top: 16%;

    left: auto;

    text-align: right;
}


/* Layout 05 */

.visual-layout--05 .visual-section__side-text {
    left: 50%;
    top: 17%;
    display: none;
    transform: translate(-50%, -50%);

    text-align: center;
}

.visual-layout--05 .visual-section__center-text {
    left: 50%;
    top: 50%;

    right: auto;
    bottom: auto;

    transform: translate(-50%, -50%);

    text-align: center;
}


/* =========================================================
   VISUAL NAVIGATION / CARDS
========================================================= */

.visual-section__navigation {
    position: relative;
    z-index: 6;

    width: 100%;
}

.visual-section__cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 11px;
}

.visual-card {
    position: relative;

    display: block;

    width: 180px;
    min-height: 115px;

    padding: 16px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    color: #fff;
    text-align: left;

    cursor: pointer;

    transition:
        transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease;
}

.visual-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-7px);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );

    border-color: rgba(255, 255, 255, 0.28);
}

.visual-card.is-active {
    transform: translateY(-7px);



}

.visual-card.is-active::before {
    opacity: 1;
}

.visual-card__number {
    display: block;

    margin-bottom: 12px;

    font-size: 9px;
    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.4);
}

.visual-card h3 {
    margin: 0 0 7px;

    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.visual-card p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   TRANSFORMATION
========================================================= */

.transformation {
    position: relative;

    width: 100%;

    padding: 60px 0;

    overflow: hidden;
}

.transformation__inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.transformation__visual {
    position: relative;

    width: min(760px, 70vw);
}

.transformation__media {
    position: relative;

    width: 100%;
    aspect-ratio: 7 / 5;

    overflow: hidden;
}

.transformation__image {
    position: relative;

    width: 100%;
    aspect-ratio: 7 / 5;

    overflow: hidden;
    cursor: zoom-in;
}

.transformation__img,
.transformation__video {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.5s ease,
        visibility 0.35s ease,
        transform 0.8s ease;

    pointer-events: none;
}

.transformation__img.active,
.transformation__video.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.transformation__image.is-site-preview .transformation__img {
    padding: clamp(8px, 1.2vw, 14px);
    border-radius: inherit;
    object-fit: cover;
    object-position: center top;
    animation: gallerySiteScroll 24s cubic-bezier(.45, .05, .35, 1) infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .transformation__image.is-site-preview .transformation__img {
        animation: none;
    }
}

.transformation__video {
    z-index: 2;
}

.transformation__expand {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 100px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.transformation__expand b {
    font-size: 17px;
    font-weight: 400;
}

.transformation-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, .9);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.transformation-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.transformation-modal__content {
    width: min(1200px, 100%);
    max-height: 100%;
}

.transformation-modal__content img,
.transformation-modal__content video {
    display: block;
    width: 100%;
    max-height: calc(100vh - 60px);
    object-fit: contain;
}

.transformation-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 600px) {
    .transformation__expand {
        display: none;
    }

    .transformation-modal {
        padding: 16px;
    }
}

.transformation__content {
    position: relative;
    padding: 0 0 20px;
}

.transformation__number {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;
    letter-spacing: 0.12em;

    opacity: 0.4;
}

.transformation__title {
    margin: 0 0 10px;

    text-align: center;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.transformation__title.active {
    opacity: 1;
    transform: translateY(0);
}

.transformation__text {
    margin: 0;

    text-align: center;
    line-height: 1.6;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.transformation__text.active {
    opacity: 0.6;
    transform: translateY(0);
}


/* =========================================================
   TRANSFORMATION DOTS
========================================================= */

.transformation__dots {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    margin-bottom: 0;
    z-index: 10;
}

.transformation__inner {
    padding-bottom: 48px;
}

.transformation__dot {
    width: 12px;
    height: 12px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    opacity: 0.2;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.transformation__dot:hover {
    opacity: 0.6;

    transform: scale(1.3);
}

.transformation__dot.active {
    opacity: 1;

    transform: scale(1.4);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    width: 100%;

    padding: 10px 0;

    overflow: hidden;
}

.reviews__top {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    margin-bottom: 10px;
}

.reviews__label {
    font-size: 13px;
}

.reviews__hint {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 14px;
}

.reviews__hint span:last-child {
    font-size: 20px;
}

.reviews__layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(500px, 1.2fr);

    gap: 100px;

    align-items: center;

    max-width: 1250px;

    margin: 0 auto;
}

.reviews__intro {
    display: flex;
    flex-direction: column;

    min-height: 620px;

    justify-content: center;

    overflow: hidden;
}

.reviews__eyebrow {
    display: inline-block;
    width: fit-content;
    margin-bottom: 28px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:white;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews__intro h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.92;
    letter-spacing: -4px;
    font-weight: 500;
}

.reviews__title {
    overflow: hidden;
}

.reviews__title-line {
    display: block;

    opacity: 0;

    transform: translateY(110%);

    transition:
        opacity 0.9s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews__intro.is-visible .reviews__eyebrow {
    opacity: 1;

    transform: translateY(0);
}

.reviews__intro.is-visible .reviews__title-line {
    opacity: 1;

    transform: translateY(0);
}

.reviews__intro.is-visible
.reviews__title-line:nth-child(1) {
    transition-delay: 0.42s;
}

.reviews__intro.is-visible
.reviews__title-line:nth-child(2) {
    transition-delay: 0.55s;
}

.reviews__intro > p {
    max-width: 390px;

    margin: 35px 0 0;

    font-size: 17px;
    line-height: 1.55;

    color: #777;

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.4s;
}

.reviews__intro.is-visible > p {
    opacity: 1;

    transform: translateY(0);
}

.reviews__intro-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 1s;
}

.reviews__intro.is-visible
.reviews__intro-bottom {
    opacity: 1;

    transform: translateY(0);
}

.reviews__small {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reviews__arrow {
    display: inline-block;

    font-size: 18px;

    opacity: 0;

    transform:
        translate(-20px, -20px)
        rotate(-20deg);

    transition:
        opacity 0.5s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.75s;
}

.reviews__intro.is-visible
.reviews__arrow {
    opacity: 1;

    transform: translate(-2px, -2px) rotate(287deg);
}


/* =========================================================
   REVIEWS CHAT
========================================================= */

.reviews__chat {
    width: 100%;
    min-width: 0;
}

.reviews__slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    touch-action: pan-y;
}

.reviews__track {
    display: flex;

    width: 100%;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}

.telegram {
    position: relative;

    flex: 0 0 100%;

    width: 100%;
    min-height: 620px;

    overflow: hidden;

    border-radius: 20px;

    color: #000;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.1);
}

.telegram__header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    height: 72px;

    padding: 0 20px;

    background: #212121;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.telegram__avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #777;

    color: #fff;

    font-size: 17px;
}

.telegram__user {
    display: flex;
    flex-direction: column;
    gap: 4px;

    line-height: 1;
}

.telegram__user strong {
    font-size: 14px;
    color: #f5f1f1;
}

.telegram__user span {
    font-size: 11px;
    color: #8b8b8b;
}

.telegram__dots {
    margin-left: auto;

    font-size: 17px;
    letter-spacing: 2px;

    color: #888;

    transform: rotate(90deg);
}

.telegram__body {
    position: relative;

    min-height: calc(620px - 72px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    gap: 12px;

    padding: 35px 25px;

    background-image:
        radial-gradient(
            rgba(0, 0, 0, 0.035) 1px,
            transparent 1px
        ),
        url("../images/telegram-bg.webp");

    background-size:
        16px 16px,
        cover;

    background-position:
        center,
        center;

    background-repeat:
        repeat,
        no-repeat;
}

.telegram__date {
    align-self: center;

    margin-bottom: 12px;

    padding: 6px 12px;

    border-radius: 12px;

    background: rgba(80, 80, 80, 0.45);

    color: #fff;

    font-size: 10px;

    backdrop-filter: blur(5px);
}

.telegram__message {
    position: relative;

    max-width: 68%;

    padding: 12px 12px 8px;

    border-radius: 11px;

    color: #fff;

    font-size: 15px;
    line-height: 1.4;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.08);

    opacity: 0;

    transform:
        translateY(14px)
        scale(0.96);

    transform-origin: bottom;

    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.telegram__message p {
    margin: 0;

    padding-right: 40px;
}

.telegram__message.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

.telegram__message_client {
    align-self: flex-start;

    background: #212121;

    border-bottom-left-radius: 3px;
}

.telegram__message_studio {
    align-self: flex-end;

    background: #7964dd;

    border-bottom-right-radius: 3px;
}

.telegram__message_studio::after {
    content: "";

    position: absolute;

    right: -7px;
    bottom: 0;

    width: 11px;
    height: 11px;

    background: #7964dd;

    clip-path:
        polygon(
            0 0,
            100% 100%,
            0 100%
        );
}

.telegram__time {
    position: absolute;

    right: 9px;
    bottom: 5px;

    font-size: 9px;

    color: #8a8a8a;

    white-space: nowrap;
}

.telegram__time b {
    margin-left: 2px;

    font-size: 10px;
    font-weight: 400;

    color: #42a5f5;
}


/* =========================================================
   TELEGRAM TYPING
========================================================= */

.telegram__status {
    transition: opacity 0.2s ease;
}

.telegram__status.is-typing {
    color: #3390ec;
}

.telegram__typing {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.telegram__typing span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #3390ec;

    animation:
        telegramTyping 1s infinite ease-in-out;
}

.telegram__typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.telegram__typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes telegramTyping {
    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-2px);
    }
}


/* =========================================================
   REVIEWS BOTTOM
========================================================= */

.reviews__bottom {
    max-width: 760px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 22px auto 0;
}

.reviews__counter {
    display: flex;
    gap: 5px;

    font-size: 13px;
}

.reviews__next {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;

    background: transparent;

    color: #000;

    font-size: 21px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.reviews__next:hover {
    background: #111;
    color: #fff;

    transform: translate(3px, -3px);
}


/* =========================================================
   POLICY
========================================================= */

.POLICY {
    color: #fff;
}


/* FOOTER */
.footer {
    position: relative;
    overflow: hidden;
    padding: 30px 6vw 30px;
    color: #fff;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer__brand {
    max-width: 650px;
}
.footer__label {
    display: block;
    margin-bottom: 35px;
    font-size: 11px;
    letter-spacing: 0.25em;
    opacity: 0.45;
}

.footer__brand h2 {
    margin: 0;
    font-size: clamp(45px, 6vw, 69px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.05em;
}
.footer__brand h2 span {
    display: inline-block;
    font-style: italic;
    opacity: 0.5;
}
.footer__navigation {
    display: flex;
    gap: 80px;
    padding-top: 10px;
}
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 130px;
}
.footer__title {

    font-size: 10px;
    letter-spacing: 0.2em;
    opacity: 0.35;
}
.footer__column a,
.footer__column span {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.footer__column a {
    opacity: 0.65;
    transition: opacity 0.3s ease;
}
.footer__column a:hover {
    opacity: 1;
}
.footer__marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 150px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__marquee-track {
    display: flex;
    width: max-content;
    animation: footerMarquee 20s linear infinite;
}
.footer__marquee-track span {
    flex-shrink: 0;
    padding: 35px 40px;
    font-size: clamp(45px, 7vw, 110px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.05em;
}
@keyframes footerMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}
.footer__bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1400px;
    margin: 72px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 0.4;
}
.footer__bottom a {
    color: #fff;
    text-decoration: none;
}
.footer__bottom span > a + a {
    margin-left: clamp(12px, 2vw, 28px);
}
@media (max-width: 560px) {
    .footer__bottom span > a + a {
        display: block;
        margin: 10px 0 0;
    }
}
.footer__up {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}
.footer__up:hover {
    opacity: 1;
    transform: translateY(-5px);
}
/* ==================================================
   RESPONSIVE
================================================== */


/* ==================================================
   CONTAINER
================================================== */

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* ==================================================
   MAX-WIDTH: 1920px
================================================== */

@media (max-width: 1920px) {

    .visual-section__visual.visual--fullscreen {
        width: 100vw;
        height: 100svh;
        min-height: 560px;
        margin-left: calc(50% - 50vw);
        margin-top: 0;
    }

}


/* ==================================================
   MAX-WIDTH: 1500px
================================================== */

@media (max-width: 1500px) {
    .contact__description  {
        display: none;
    }
    .reviews__layout {
        gap: 50px;
    }

}


/* ==================================================
   MAX-WIDTH: 1376px
================================================== */

@media (max-width: 1376px) {

    .story__cta > span {
        display: none;
    }

}


/* ==================================================
   MAX-WIDTH: 1300px
================================================== */

@media (max-width: 1300px) {

    .reviews__layout {
        gap: 50px;
        max-width: 1000px;
    }

    .story__cta {
        display: none;
    }

}



/* ==================================================
   MAX-WIDTH: 1200px
   ================================================== */

@media (max-width: 1200px) {

    /* ----------------------------------------------
       PROJECT
    ---------------------------------------------- */

    .project {
        gap: 50px;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .project__text {
        flex: 1;
        min-width: 0;
    }

    .project__video {
        width: 45%;
        height: 58vh;
        flex-shrink: 0;
    }

    .project__text h2 {
        font-size: clamp(45px, 6vw, 70px);
        letter-spacing: -4px;
    }

    .project__text p {
        max-width: 600px;
        font-size: 16px;
    }


    /* ----------------------------------------------
       SERVICES
    ---------------------------------------------- */

    .services__content {
        padding-left: 30px;
        padding-right: 30px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story__video-wrapper {
        width: 50vw;
        max-width: 520px;
        height: 70vh;
    }

    .story__heading {
        left: 5vw;
    }

    .story__cards {
        left: 5vw;
    }

    .story__cta {
        right: 5vw;
    }
}


/* ==================================================
   MAX-WIDTH: 1100px
   ================================================== */

@media (max-width: 1100px) {

    /* ----------------------------------------------
       HEADER
    ---------------------------------------------- */

    .header {
        height: 80px;
    }

    .header__nav {
        gap: 22px;
    }

    .header__link {
        font-size: 17px;
    }

    .header__button {
        margin-left: 10px;
        padding: 10px 15px;
        font-size: 14px;
        
    }


    /* ----------------------------------------------
       HERO
    ---------------------------------------------- */

    .hero__inner {
        top: 80px;
        height: calc(100vh - 80px);
    }


    /* ----------------------------------------------
       VISUAL SECTION
    ---------------------------------------------- */

    .visual-section__content {
        padding: 45px;
    }

    .visual-section__side-text {
        width: 240px;
    }

    .visual-section__center-text {
        width: 350px;
    }

    .visual-card {
        width: 160px;
    }


    /* ----------------------------------------------
       HERO / TITLE
    ---------------------------------------------- */

    .title {
        font-size: clamp(50px, 8vw, 75px);
        max-width: 92vw;
    }

    .split-text {
        width: min(600px, 82vw);
    }

    .split-cube {
        width: clamp(200px, 38vw, 330px);
        height: clamp(200px, 38vw, 330px);
    }
}


/* ==================================================
   MAX-WIDTH: 1000px
   ================================================== */

@media (max-width: 1000px) {

    .headr {    margin-top: 24px;}
    .header__button {
    display: none;;
        
    }

    .header__actions {
        margin-left: auto;
        margin-right: 14px;
    }

    /* ----------------------------------------------
       CONTACT
    ---------------------------------------------- */

    .contact {
        padding: 1px 25px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .contact__content {
        text-align: center;
    }

    .contact__title {
        max-width: 100%;
        letter-spacing: -3px;
        margin-left: 130px;
        margin-top: -63px;
        font-size: clamp(55px, 5vw, 110px);
    }

    .contact__description {
        max-width: 100%;
        font-size: 16px;
    }

    .contact__decor {
        margin-top: 20px;
    }

    .contact__form-wrapper {
        padding: 30px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story {
        height: 300vh;
    }


    /* ----------------------------------------------
       REVIEWS
    ---------------------------------------------- */

    .reviews {
        padding: 1px 0;
    }

    .reviews__layout {
        grid-template-columns: 1fr 1.2fr;
        margin: 22px;
        gap: 10px;
    }

    .reviews__intro h2 {
        font-size: clamp(38px, 5vw, 60px);
        letter-spacing: -3px;
    }

    .reviews__intro p {
        font-size: 14px;
    }

    .telegram {
        min-height: 560px;
    }

    .telegram__body {
        min-height: calc(560px - 72px);
    }
    .disp {
        display: none;
    }
    .next {

    padding: 10px 0;

}
.next__header {
    margin-top: 1px;
}

}




/* ==================================================
   MAX-WIDTH: 901px
   ================================================== */

@media (max-width: 901px) {



        .contact__title {
        font-size: clamp(45px, 5vw, 110px);
        margin-left: 6%;
    }}
/* ==================================================
   MAX-WIDTH: 900px
   ================================================== */

@media (max-width: 900px) {

    /* ----------------------------------------------
       HEADER
    ---------------------------------------------- */

    .header {
        height: 75px;
    }

    .header__inner {
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__logo {
        gap: 0;
    }

    .header__logo-text {
        display: block;
        margin-left: 33px;
        margin-right: 33px;
        text-align: center;
    }

    .header__button {
        display: none;
    }

    .header__actions {
        position: absolute;
        right: 68px;
        margin: 0;
    }

    .header__burger {
        display: block;
    }

    .header__nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__link {
        font-size: 24px;
    }

    .header__burger.active span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .header__burger.active span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }


    /* ----------------------------------------------
       SERVICES
    ---------------------------------------------- */

    .services {
        height: 550vh;
    }

    .services__content {
        grid-template-columns: 1fr 1fr;
        padding: 100px 25px 70px;
    }

    .services__info {
        align-self: center;
    }

    .services__visual {
        position: absolute;
        inset: 0;
        opacity: 0.35;
        pointer-events: none;
    }

    .services__orb {
        width: 55vw;
        height: 55vw;
    }

    .services__list {
        position: absolute;
        left: 25px;
        bottom: 100px;
    }

    .services__statement {
        right: 25px;
    }

    .services__top {
        left: 25px;
        right: 25px;
    }

    .services__bottom {
        left: 25px;
        right: 25px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story__video-wrapper {
        top: 50%;
        left: 50%;
        width: 75vw;
        max-width: 600px;
        height: 80vh;
    }

    .story__heading {
        top: 100px;
        left: 30px;
        right: 30px;
    }

    .story__heading h2 {
        font-size: clamp(55px, 10vw, 85px);
    }

    .story__heading p {
        max-width: 900px;
    }

    .story__cards {
        left: 30px;
        right: 30px;
    }

    .story__cta {
        right: 30px;
    }

}




/* ==================================================
   MAX-WIDTH: 850px
   ================================================== */





/* ==================================================
   MAX-WIDTH: 800px
   ================================================== */

@media (max-width: 800px) {

    .reviews {
        padding: 100px 0;
    }

    .telegram {
        min-height: 560px;
    }

    .telegram__body {
        min-height: calc(560px - 72px);
    }

    .telegram__message {
        max-width: 75%;
    }
}


/* ==================================================
   MAX-WIDTH: 768px
   ================================================== */

@media (max-width: 768px) {

    /* ----------------------------------------------
       HERO VIDEO
    ---------------------------------------------- */

    .hero-video {
        width: 180px;
        height: 260px;
        border-radius: 18px;
    }

    .hero-video__overlay h2 {
        font-size: clamp(35px, 12vw, 60px);
        letter-spacing: -3px;
    }

    .hero-video__overlay span {
        font-size: 9px;
        letter-spacing: 3px;
    }


    /* ----------------------------------------------
       USLIG
    ---------------------------------------------- */

    .uslig {
        height: auto;
    }

    .uslig__sticky {
        position: relative;
        min-height: 100vh;
        height: auto;
        padding: 25px 20px 35px;
    }

    .uslig__visual img {
        transform: scale(1);
        border-radius: 0;
    }

    .uslig__hint {
        display: none;
    }

    .uslig__center {
        min-height: 50vh;
        justify-content: flex-start;
        text-align: left;
    }

    .uslig__title {
        text-align: center;
        font-size: 16vw;
    }

    .uslig__services {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .uslig__service {
        opacity: 1;
        transform: none;
    }

    .uslig__service h3 {
        font-size: 20px;
    }

    .uslig__service p {
        font-size: 12px;
    }

    .uslig__bottom {
        margin-top: 60px;
    }


    /* ----------------------------------------------
       PROJECTS
    ---------------------------------------------- */

    .project,
    .project-2,
    .project-4 {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 30px;
    }

    .project__text {
        width: 100%;
        flex: none;
    }

    .project__video {
        width: 100%;
       
    }

    .project__text h2 {
        font-size: 39px;
    }


    /* ----------------------------------------------
       WHY US
    ---------------------------------------------- */

    .why-us {
        padding: 10px;
    }

    .why-us__top {
        display: block;
        margin-bottom: 10px;
    }

    .why-us__label {
        margin-bottom: 45px;
    }

    .why-us__intro h2 {
        margin-bottom: 25px;
        font-size: clamp(48px, 14vw, 80px);
    }

    .why-us__intro p {
        font-size: 17px;
    }

    .why-us__item {
        grid-template-columns: 40px 1fr 35px;
        gap: 15px;
        min-height: 120px;
    }

    .why-us__number {
        padding-top: 30px;
    }

    .why-us__content {
        padding: 30px 0;
    }

    .why-us__content h3 {
        font-size: 24px;
    }

    .why-us__content p {
        max-height: 150px;
        margin-top: 12px;
        font-size: 14px;
        opacity: 1;
        transform: none;
    }

    .why-us__arrow {
        display: none;
    }

    .why-us__item:hover {
        padding-left: 0;
        padding-right: 0;
        background: none;
    }

    .why-us__item:hover .why-us__content h3 {
        transform: none;
    }


    /* ----------------------------------------------
       FOOTER
    ---------------------------------------------- */

    .footer {
        padding: 20px 20px 25px;
    }

    .footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .footer__navigation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }

    .footer__marquee {
        margin-top: 90px;
    }

    .footer__marquee-track span {
        padding: 25px;
    }

    .footer__bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer__up {
        display: none;
    }


    /* ----------------------------------------------
       GALLERY
    ---------------------------------------------- */

    .gallery__track {
        gap: 15px;
        animation-duration: 28s;
    }

    .gallery__item {
        width: 280px;
        height: 300px;
    }

    .gallery__item img {
        height: 380px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story {
        height: 450vh;
    }

    .story__content {
        padding: 30px 20px;
    }

    .story__heading {
        left: 20px;
        right: 20px;
        text-align: center;
    }

    .story__heading h2 {
        font-size: clamp(55px, 16vw, 90px);
        letter-spacing: -5px;
    }

    .story__heading p {
        max-width: 100%;
        font-size: 17px;
        text-align: center;
    }

    .story__card {
        width: auto;
        flex: 1;
        min-height: 210px;
        padding: 13px;
    }

    .story__card-number {
        margin-bottom: 10px;
    }

    .story__card h3 {
        font-size: 15px;
    }

    .story__cards {
        left: 20px;
        right: 20px;
        bottom: 30px;
        gap: 8px;
    }

    .story__cta {
        right: 20px;
        bottom: 170px;
    }

    .story__cta a {
        padding: 14px 18px;
    }


    /* ----------------------------------------------
       REVIEWS
    ---------------------------------------------- */

    .reviews {
        padding: 10px 0;
    }
.reviews__eyebrow {display: none;}
    .reviews__top {
        display: none;
    }

    .reviews__layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .reviews__intro {
        min-height: auto;
        justify-content: flex-start;
    }



    .reviews__intro h2 {
        text-align: center;
        font-size: clamp(42px, 12vw, 60px);
        letter-spacing: -3px;
    }

    .reviews__intro p {
        max-width: 100%;
        text-align: center;
        margin-top: 25px;
        font-size: 14px;
    }

    .reviews__intro-bottom {
        display: none;
    }

    .reviews__slider {
        max-width: 100%;
        border-radius: 15px;
    }

    .reviews__hint {
        font-size: 12px;
    }

    .telegram {
        min-height: 560px;
        border-radius: 15px;
    }

    .telegram__header {
        height: 64px;
        padding: 0 15px;
    }

    .telegram__avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .telegram__body {
        min-height: calc(560px - 72px);
        padding: 25px 15px;
    }

    .telegram__message {
        max-width: 75%;
        font-size: 13px;
    }

    .reviews__bottom {
        margin-top: 20px;
    }

    .reviews__next {
        width: 42px;
        height: 42px;
    }


    /* ----------------------------------------------
       TRANSFORMATION
    ---------------------------------------------- */

    .transformation {
        padding: 100px 0;
    }

    .transformation__visual {
        width: calc(100% - 70px);
    }

    .transformation__dots {
        gap: 16px;
    }

    .transformation__dots_left {
        left: 5px;
    }

    .transformation__dots_right {
        right: 5px;
    }

    .transformation__dot {
        width: 7px;
        height: 7px;
    }

    .transformation__content {
        padding-top: 20px;
    }

    .transformation__title {
        font-size: 28px;
    }

    .transformation__text {
        font-size: 14px;
    }


    /* ----------------------------------------------
       VISUAL SECTION
    ---------------------------------------------- */

    .visual-section__top {
        margin-bottom: 15px;
    }

    .visual-section__label {
        font-size: 9px;
    }

    .visual-section__hint {
        gap: 7px;
        font-size: 8px;
    }

    .visual-section__hint span {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .visual-section__visual {
        width: 100%;
        height: 620px;
        border-left: 0;
        border-right: 0;
    }

    .visual-section__visual.visual--fullscreen {
        width: 100vw;
        height: 100svh;
        min-height: 560px;
        margin-left: calc(50% - 50vw);
        margin-top: 0;
    }

    .visual-section__media img,
    .visual-section__media video {
        transform: scale(1.04);
        filter:
            brightness(0.55)
            contrast(1.08)
            saturate(0.8);
    }

    .visual-section__visual:hover
    .visual-section__media img.is-visible,
    .visual-section__visual:hover
    .visual-section__media video.is-visible {
        transform: scale(1.04);
    }

    .visual-section__visual::before {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, .65) 0%,
                rgba(0, 0, 0, .12) 40%,
                rgba(0, 0, 0, .7) 100%
            );
    }

    .visual-section__visual::after {
        background:
            radial-gradient(
                circle at center,
                transparent 20%,
                rgba(0, 0, 0, .35) 100%
            );
    }

    .visual-section__content {
        padding: 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .visual-section__side-text {
        width: 100%;
    }

    .visual-section__side-number {
        margin-bottom: 20px;
        font-size: 9px;
    }

    .visual-section__side-number::before {
        width: 20px;
    }

    .visual-section__side-text h2 {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: clamp(38px, 11vw, 52px);
        line-height: .9;
        text-align-last: left;
    }

    .visual-section__side-text p {
        max-width: 203px;
        font-size: 16px;
        line-height: 1.3;
        text-align: left;
    }

    .visual-section__center-text {
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .visual-section__center-text span {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .visual-section__center-text h2 {
        max-width: 100%;
        font-size: clamp(28px, 8vw, 38px);
        line-height: .95;
    }

    .visual-section__cards {
        justify-content: flex-start;
        gap: 7px;
        margin-top: 15px;
        padding: 2px 20px 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .visual-section__cards::-webkit-scrollbar {
        display: none;
    }

    .visual-card {
        flex: 0 0 145px;
        width: 145px;
        min-height: 105px;
        padding: 13px;
        scroll-snap-align: start;
    }

    .visual-card:hover,
    .visual-card.is-active {
        transform: none;
    }

    .visual-card h3 {
        font-size: 14px;
    }

    .visual-card p {
        font-size: 9px;
        line-height: 1.4;
    }


    /* ----------------------------------------------
       IMAGE VIEWER
    ---------------------------------------------- */

    .image-viewer {
        padding: 20px;
    }

    .image-viewer__image {
        max-width: 95vw;
        max-height: 85vh;
    }

    .image-viewer__close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }


    /* ----------------------------------------------
       CONTACT
    ---------------------------------------------- */

    .contact__form-wrapper {
        padding: 30px;
    }


    /* ----------------------------------------------
       HERO VIDEO OVERLAY
    ---------------------------------------------- */

    .hero-video__overlay h2 {
        font-size: clamp(35px, 6vw, 60px);
        letter-spacing: -3px;
    }

    .visual-layout--05 .visual-section__side-text {
        left: 25%;
        top: 54%;
    }

    .visual-layout--05 .visual-section__center-text {
        left: 50%;
        top: 50%;
    }
}

/* На телефоне карточки философии — компактные кнопки без описаний. */
@media (max-width: 660px) {
    .story__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        left: 16px;
        right: 16px;
        bottom: 26px;
        gap: 9px;
    }

    .story__card,
    .story__card:nth-child(n) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 64px;
        padding: 14px 10px;
        text-align: center;
    }

    .story__card-number,
    .story__card p {
        display: none;
    }

    .story__card h3 {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.1;
    }

    .story__card:hover {
        transform: none;
    }
}

.about__studio-video {
    padding: clamp(75px, 10vw, 150px) 0 clamp(90px, 12vw, 170px);
}

.about__studio-video-inner {
    width: min(1080px, calc(100% - 10vw));
    margin: 0 auto;
    text-align: center;
}

.about__studio-video h2 {
    margin: 0;
    font-size: clamp(40px, 6.2vw, 88px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.065em;
}

.about__studio-video h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .95);
}

.about__studio-video-frame {
    width: min(100%, 820px);
    margin: clamp(48px, 7vw, 82px) auto 0;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .16);
}

.about__studio-video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #151515;
}

.about__studio-video-caption {
    max-width: 520px;
    margin: 22px auto 0;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
}

@media (max-width: 768px) {
    .about__studio-video {
        padding: 70px 0 90px;
    }

    .about__studio-video-inner {
        width: calc(100% - 32px);
    }

    .about__studio-video h2 {
        font-size: clamp(38px, 11.5vw, 58px);
    }

    .about__studio-video-frame {
        margin-top: 48px;
    }

    .about__studio-video-caption {
        margin-top: 17px;
        font-size: 15px;
    }
}

/* Текст под заголовком формы связи. */
.contact__label {
    display: block;
    max-width: 470px;
    margin: 20px 0 0;
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    color: rgba(255, 255, 255, .68);
}

@media (max-width: 768px) {
    .contact__label {
        max-width: 100%;
        margin-top: 16px;
        font-size: 15px;
    }
}





/* ==================================================
   MAX-WIDTH: 658px
   ================================================== */


@media (max-width: 658px
) {
    .contact__title {
        font-size: clamp(39px, 5vw, 110px);
        margin-left: 6%;
    }
}

/* ==================================================
   MAX-WIDTH: 660px
   ================================================== */

@media (max-width: 660px) {

    .why-us__line {
        display: block;
        clip-path: inset(0 100% 0 0);
    }

    .story__heading {
        top: 232px;
    }

    .contact__letter {
        display: inline-block;
        will-change: transform;
    }
}


/* ==================================================
   MAX-WIDTH: 600px
   ================================================== */

@media (max-width: 600px) {

    /* ----------------------------------------------
       HEADER
    ---------------------------------------------- */

    .header__logo {
        gap: 8px;
    }

    .header__logo-mark {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .header__logo-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .header__logo-text strong {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .header__burger {
        width: 42px;
        height: 42px;
    }


    /* ----------------------------------------------
       HERO / TITLE
    ---------------------------------------------- */

    .title {
        font-size: clamp(38px, 13vw, 62px);
        max-width: 94vw;
        letter-spacing: -2.5px;
    }


    /* ----------------------------------------------
       REVIEWS
    ---------------------------------------------- */

    .reviews {
        padding: 1px 0;
    }

    .reviews__top {
        margin-bottom: 40px;
    }

    .reviews__hint {
        font-size: 12px;
    }

    .reviews__slider {
        max-width: 100%;
    }

    .telegram {
        min-height: 500px;
        border-radius: 15px;
    }

    .telegram__header {
        height: 64px;
        padding: 0 15px;
    }

    .telegram__avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .telegram__body {
        min-height: calc(500px - 64px);
        padding: 25px 15px;
    }

    .telegram__message {
        max-width: 85%;
        font-size: 13px;
    }

    .reviews__bottom {
        margin-top: 20px;
    }

    .reviews__next {
        width: 42px;
        height: 42px;
    }


    /* ----------------------------------------------
       FEEDBACK POPUP
    ---------------------------------------------- */

    .feedback-popup {
        padding: 12px;
    }

    .feedback-popup__window {
        padding: 40px 25px 30px;
        border-radius: 20px;
        max-height: 92vh;
    }

    .feedback-popup__content h2 {
        font-size: 36px;
    }

    .feedback-popup__description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .feedback-popup__close {
        top: 12px;
        right: 12px;
    }


    /* ----------------------------------------------
       CONTACT
    ---------------------------------------------- */

    .contact__form-wrapper {
        padding: 30px;
    }

    .contact__circle {
        height: 33px;
    }


    /* ----------------------------------------------
       HERO VIDEO
    ---------------------------------------------- */

    .hero-video {
        width: 358px;
        border-radius: 15px;
    }
}

/* ==================================================
   MAX-WIDTH: 562px
   ================================================== */
@media (max-width: 562px
) {
    .contact__title {
        font-size: clamp(37px, 5vw, 110px);
        margin-left: 6%;
    }
}

/* ==================================================
   MAX-WIDTH: 530px
   ================================================== */
@media (max-width: 530px
) {
    .contact__title {
        font-size: clamp(33px, 5vw, 110px);
        margin-left: 6%;
        margin-top: -35px;
    }
}


/* ==================================================
   MAX-WIDTH: 525px
   ================================================== */

@media (max-width: 525px) {
    .visual-section__side-text h2 {
        font-size: clamp(38px, 11vw, 44px);

    }
}



/* ==================================================
   MAX-WIDTH: 500px
   ================================================== */

@media (max-width: 500px) {

    .contact__circle {
        height: 33px;
    }
}



/* ==================================================
   MAX-WIDTH: 467px
   ================================================== */

@media (max-width: 467px
) {
    .contact__title {
        font-size: clamp(31px, 5vw, 110px);
        margin-left: 6%;
    }
}


/* ==================================================
   MAX-WIDTH: 480px
   ================================================== */

@media (max-width: 480px) {

    .transformation {
        padding: 70px 0;
    }

    .transformation__visual {
        width: calc(100% - 45px);
    }

    .transformation__dots {
        gap: 13px;
    }

    .transformation__dots_left {
        left: 0;
    }

    .transformation__dots_right {
        right: 0;
    }

    .transformation__dot {
        width: 6px;
        height: 6px;
    }
    
}


/* ==================================================
   MAX-WIDTH: 442px
   ================================================== */


@media (max-width: 442px) {
    .visual-section__side-text h2 {
        font-size: clamp(38px, 11vw, 40px);
    }
}


/* ==================================================
   MAX-WIDTH: 435px
   ================================================== */

@media (max-width: 435px
) {
    .contact__title {
        font-size: clamp(30px, 5vw, 110px);
        margin-left: 6%;
    }
}



/* ==================================================
   MAX-WIDTH: 420px
   ================================================== */


@media (max-width: 420px) {
    .hero-video__overlay h2 {
        font-size: clamp(31px, 6vw, 60px);
    }


        .visual-section__center-text span {

        font-size: 7px;
    }
}


/* ==================================================
   MAX-WIDTH: 419px
   ================================================== */

@media (max-width: 419px
) {
    .contact__title {
        font-size: clamp(25px, 2vw, 40px);
        margin-left: 6%;
    }
}

/* ==================================================
   MAX-WIDTH: 402px
   ================================================== */



@media (max-width: 402px) {
    .visual-section__side-text h2 {
        font-size: clamp(35px, 11vw, 32px);
    }
        .visual-section__side-text p {
        font-size: 15px;
    }
    .visual-section__center-text span {
        font-size: 7px;
    }
}

/* ==================================================
   MAX-WIDTH: 400px
   ================================================== */

@media (max-width: 400px) {

    .title {
        font-size: 38px;
        max-width: 95vw;
        letter-spacing: -2px;
    }

    .story__card {
        display: none;
    }

    .reviews {
        padding: 1px 0;
    }

    .contact__decor {
        display: none;
    }
        .contact__title {
        font-size: clamp(25px, 2vw, 40px);
 
        margin-bottom: 15px;
    }
}


/* ==================================================
   MAX-WIDTH: 390px
   ================================================== */

@media (max-width: 390px) {

    .visual-section__visual {
        height: 580px;
    }

    .visual-section__content {
        padding: 22px 16px;
    }

    .visual-section__side-text h2 {
        font-size: 38px;
    }

    .visual-section__side-text p {
        max-width: 132px;
        font-size: 11px;
        
    }

    .visual-section__center-text h2 {
        font-size: 28px;
    }

    .visual-card {
        flex-basis: 135px;
        width: 135px;
        min-height: 100px;
    }
}


/* ==================================================
   MAX-WIDTH: 380px
   ================================================== */

@media (max-width: 380px) {

    .split-text {
        transform: translateY(-9vh);
    }

    .split-text h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .split-text p {
        font-size: 13px;
    }

    .split-cube {
        width: 155px;
        height: 155px;
        transform: none;
    }
        .story__heading {
        top: 186px;
    }
}


/* ==================================================
   MAX-WIDTH: 339px
   ================================================== */

@media (max-width: 339px
) {
    .contact__title {
     display: none;
    }
}


/* ==================================================
   MAX-WIDTH: 300px
   ================================================== */

@media (max-width: 300px) {

    .header__logo-text {
        margin-left: 10px;
        margin-right: 10px;
    }
}


/* ==================================================
   MAX-WIDTH: 250px
   ================================================== */

@media (max-width: 250px) {

    .header__logo-text {
        margin-left: 1px;
        margin-right: 1px;
    }
}


/* ==================================================
   MAX-HEIGHT: 650px
   ================================================== */

@media (max-height: 650px) {

    .title {
        font-size: clamp(35px, 9vh, 65px);
    }

    .split-text {
        transform: translateY(-5vh);
    }

    .split-cube {
        width: clamp(150px, 35vh, 280px);
        height: clamp(150px, 35vh, 280px);
        transform: none;
    }
}


/* ==================================================
   GALLERY MARQUEE
   ================================================== */

@keyframes galleryMarquee {

    from {
        transform: translate3d(var(--marquee-drag-offset), 0, 0);
    }

    to {
        transform: translate3d(
            calc(
                var(--marquee-drag-offset) -
                var(--gallery-loop-distance)
            ),
            0,
            0
        );
    }
}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .visual-section__visual,
    .visual-section__media img,
    .visual-section__media video,
    .visual-card {
        transition: none;
    }
}



video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================================
   RESPONSIVE FINISHING LAYER
   Keeps the existing scroll scenarios intact while making
   content and controls comfortable on compact screens.
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

img,
video {
    max-width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .header__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero__inner {
        height: calc(100dvh - 75px);
    }

    .project {
        gap: 24px;
        padding: 24px 20px;
    }

    .project__text h2 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -0.06em;
    }

    .project__text p {
        font-size: 16px;
        line-height: 1.45;
    }

    .project__video {
        height: min(48dvh, 420px);
        min-height: 260px;
    }

    .uslig__services {
        gap: 20px;
    }

    .contact__title {
        margin-top: 0;
        margin-left: 0;
        font-size: clamp(30px, 6vw, 46px);
        letter-spacing: -0.06em;
    }

    .contact__description {
        margin-top: 20px;
    }

    .contact__form-wrapper {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .visual-section__visual {
        height: min(145vw, 760px);
        min-height: 540px;
    }
}

@media (max-width: 560px) {
    .header__logo-text {
        margin-right: 12px;
        margin-left: 12px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .header__logo-text strong {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .header__logo-mark {
        width: 34px;
        height: 34px;
    }

    .header__link {
        font-size: 21px;
    }

    .scroll-progress {
        right: 16px;
        left: 16px;
    }

    .project,
    .project-2,
    .project-4 {
        padding: 20px 16px;
    }

    .project__video {
        min-height: 220px;
        height: 42dvh;
        border-radius: 16px;
    }

    .uslig__sticky {
        padding-right: 16px;
        padding-left: 16px;
    }

    .uslig__services {
        grid-template-columns: 1fr;
    }

    .uslig__service {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .why-us__intro p,
    .contact__description {
        font-size: 15px;
    }

    .visual-section__visual {
        min-height: 500px;
        height: 145vw;
    }

    .visual-section__content {
        padding: 20px 16px;
    }

    .visual-section__side-text h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .visual-section__center-text h2 {
        font-size: clamp(26px, 8vw, 36px);
    }

    .contact {
        padding-right: 16px;
        padding-left: 16px;
    }

    .contact__title {
        display: block;
        font-size: clamp(24px, 7.7vw, 40px);
    }
}

@media (max-width: 380px) {
    .header__logo-text strong {
        display: none;
    }

    .header__nav {
        padding-right: 16px;
        padding-left: 16px;
    }

    .project__text h2 {
        font-size: 32px;
    }

    .project__text p {
        font-size: 14px;
    }

    .contact__form-wrapper {
        padding: 24px 18px;
    }
}

/* Footer: change layout before the three columns become too narrow. */
@media (max-width: 1150px) {
    .footer__top {
        flex-direction: column;
        gap: 48px;
    }

    .footer__brand {
        max-width: 760px;
    }

    .footer__navigation {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 32px;
    }

    .footer__column {
        min-width: 0;
    }
}

/* Footer contacts: allow the grid column and long links to shrink on phones. */
@media (max-width: 560px) {
    .footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .footer__navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 16px;
    }

    .footer__column {
        min-width: 0;
    }

    .footer__column a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 460px) {
    .footer__navigation {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 280px) {
    .contact__title {
        font-size: 18px;
        letter-spacing: -0.04em;
    }
}

/* Tablet: the contact section is already one column here, so do not retain
   the desktop title offset that causes the text to be covered by the form. */
@media (max-width: 1000px) {
    .contact__title {
        margin-top: 0;
        margin-left: 0;
        font-size: clamp(30px, 6vw, 46px);
        letter-spacing: -0.06em;
    }
}

@media (max-width: 1150px) {
    .footer__top {
        flex-direction: column;
        gap: 48px;
    }

    .footer__navigation {
        width: 100%;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .footer {
        padding: 60px 20px 24px;
    }

    .footer__navigation {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 46px;
    }

    .footer__up {
        margin-left: 0;
    }
}

@media (max-width: 334px) {
    .contact__title {
        width: 100%;
        margin: 0 0 12px;
        font-size: clamp(22px, 8vw, 27px);
        line-height: 1.05;
        letter-spacing: -0.04em;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 320px) {
    .hero-video__overlay h2 {
        font-size: clamp(26px, 5vw, 51px);
    }
}


/* Give the «Мы верим» section more usable text width on tablets. */
@media (max-width: 900px) {
    .why-us {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* Visual cards become a touch slider on tablets and phones. */
@media (min-width: 769px) {
    .visual-card[data-visual-clone] {
        display: none;
    }
}

@media (max-width: 768px) {
    .visual-section__navigation {
       /* overflow: hidden;*/
       margin-left: -65px;
    }

    .visual-section__cards {
        justify-content: flex-start;
        width: max-content;
        margin-top: 15px;
        margin-right: 10px;
        margin-bottom: 11px;
        margin-left: 0;
        padding: 2px 1px 10px;
        overflow: visible;
        gap: 7px;
        --marquee-drag-offset: 0px;
        animation: visualCardsMarquee 25s linear infinite;
        will-change: transform;
    }

    .visual-card {
        flex: 0 0 145px;
        width: 145px;
        min-height: 126px;
        padding: 14px;
        scroll-snap-align: none;
        overflow-wrap: break-word;
        user-select: none;
    }

    .visual-card h3 {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.12;
    }

    .visual-card p {
        font-size: 10px;
        line-height: 1.35;
    }

    .visual-section__cards {
        cursor: grab;
        touch-action: pan-y;
    }

    .visual-section__cards.is-dragging {
        cursor: grabbing;
        animation-play-state: paused;
    }
}

@keyframes visualCardsMarquee {
    from {
        transform: translate3d(var(--marquee-drag-offset), 0, 0);
    }

    to {
        transform: translate3d(
            calc(var(--marquee-drag-offset) - (5 * 145px + 5 * 7px)),
            0,
            0
        );
    }
}

/* =========================================================
   VISUAL SECTION — RESPONSIVE TYPOGRAPHY
========================================================= */

.visual-section__side-text,
.visual-section__center-text {
    overflow-wrap: break-word;
    word-break: normal;
}

@media (max-width: 1100px) {
    .visual-section__side-text {
        width: min(280px, 34vw);
    }

    .visual-section__center-text {
        width: min(360px, 38vw);
    }

    .visual-section__side-text h2 {
        font-size: clamp(34px, 4.8vw, 56px);
    }

    .visual-section__side-text p {
        font-size: clamp(15px, 1.7vw, 18px);
        line-height: 1.4;
    }

    .visual-section__center-text h2 {
        font-size: clamp(28px, 4.2vw, 46px);
    }
}

@media (max-width: 768px) {
    .visual-section__content {
        padding: 24px 20px;
    }

    .visual-section__side-text,
    .visual-section__center-text {
        width: auto;
        max-width: calc(100% - 40px);
        right: 20px !important;
        left: 20px !important;
        transform: none !important;
        text-align: left !important;
    }

    .visual-section__side-text {
        top: max(68px, 12%) !important;
        bottom: auto !important;
    }

    .visual-section__center-text {
        top: auto !important;
        bottom: 24px !important;
        margin: 0;
    }

    .visual-section__side-text h2 {
        
        margin-bottom: 12px;
        font-size: clamp(32px, 9.5vw, 50px);
        line-height: 0.92;
    }

    .visual-section__side-text p {
        
        font-size: clamp(14px, 3.8vw, 17px);
        line-height: 1.4;
    }

    .visual-section__center-text span {
        max-width: 100%;
        font-size: clamp(8px, 2.4vw, 10px);
        letter-spacing: 0.12em;
        line-height: 1.35;
    }

    .visual-section__center-text h2 {
        
        font-size: clamp(25px, 7.2vw, 38px);
        line-height: 0.98;
    }

    /* Different, but still safe, text compositions for every visual. */
    .visual-layout--01 .visual-section__side-text {
        top: 18% !important;
        right: auto !important;
        left: 20px !important;
        text-align: left !important;
    }

    .visual-layout--01 .visual-section__center-text {
        right: 20px !important;
        bottom: 9% !important;
        left: auto !important;
        text-align: right !important;
    }

    .visual-layout--02 .visual-section__side-text {
        top: auto !important;
        right: 20px !important;
        bottom: 12% !important;
        left: auto !important;
        text-align: right !important;
    }

    .visual-layout--02 .visual-section__center-text {
        top: 14% !important;
        right: auto !important;
        bottom: auto !important;
        left: 20px !important;
        text-align: left !important;
    }

    .visual-layout--03 .visual-section__side-text {
        top: 12% !important;
        right: 20px !important;
        left: 20px !important;
        text-align: center !important;
    }

    .visual-layout--03 .visual-section__center-text {
        right: 20px !important;
        bottom: 8% !important;
        left: 20px !important;
        text-align: center !important;
    }

    .visual-layout--04 .visual-section__side-text {
        top: auto !important;
        right: auto !important;
        bottom: 12% !important;
        left: 20px !important;
        text-align: left !important;
    }

    .visual-layout--04 .visual-section__center-text {
        top: 14% !important;
        right: 20px !important;
        bottom: auto !important;
        left: auto !important;
        text-align: right !important;
    }

    .visual-layout--05 .visual-section__center-text {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        text-align: center !important;
    }

    .visual-layout--05 .visual-section__center-text h2 {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 420px) {
    .visual-section__content {
        padding-right: 16px;
        padding-left: 16px;
    }

    .visual-section__side-text,
    .visual-section__center-text {
        right: 16px !important;
        left: 16px !important;
        max-width: calc(100% - 32px);
    }

    .visual-section__side-text {
        top: 64px !important;
    }

    .visual-section__center-text {
        bottom: 18px !important;
    }

    .visual-section__side-text h2 {
        font-size: clamp(29px, 9.2vw, 38px);
    }

    .visual-section__side-text p {
        font-size: 14px;
    }

    .visual-section__center-text h2 {
        font-size: clamp(23px, 7vw, 30px);
    }
}

/* =========================================================
   HEADER — RESPONSIVE FINISHING
========================================================= */

@media (max-width: 900px) {
    .header {
        height: 72px;
    }

    .header__inner {

                padding: 20px 30px;
    }

    .header__logo {
        gap: 10px;
        min-width: 0;
    }

    .header__logo-text {
        margin: 0;
        text-align: left;
    }

    .header__nav {
        top: 72px;
        max-height: calc(100dvh - 72px);
        padding: 24px 20px 32px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .header__link {
        display: block;
        min-height: 44px;
        padding: 8px 0;
        font-size: clamp(20px, 5vw, 24px);
    }

    .hero__inner {
        top: 72px;
        height: calc(100dvh - 72px);
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .header__logo-text strong {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .header__logo-mark {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .header__burger {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 330px) {
    .header__logo-text strong {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery__track {
        /* 5 cards × (280px card + 15px gap) */
        --gallery-loop-distance: 1475px;
    }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about {
    padding: 150px 5vw 80px;
}

.about__hero,
.about__text,
.about__principles,
.about__cta {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.about__eyebrow {
    margin: 0 0 22px;
    font-size: 11px;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .5);
}

.about__hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(54px, 9vw, 140px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.07em;
}

.about__hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.about__lead {
    max-width: 530px;
    margin: 45px 0 0 auto;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.45;
    color: rgba(255, 255, 255, .62);
}

.about__film {
    position: relative;
    max-width: 1100px;
    height: min(72vw, 720px);
    min-height: 420px;
    margin: 110px auto;
    overflow: hidden;
    background: #111;
}

.about__film::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .6));
    pointer-events: none;
}

.about__film video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__film-caption {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 1;
    margin: 0;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about__text {
    padding: 40px 0 110px;
}

.about__text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: clamp(35px, 10vw, 180px);
}

.about__text h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 74px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.06em;
}

.about__text-grid p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .6);
}

.about__principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.about__principles article {
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.about__principles article:first-child {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.about__principles span {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
}

.about__principles h2 {
    margin: 65px 0 10px;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -.05em;
}

.about__principles p {
    max-width: 220px;
    margin: 0;
    line-height: 1.45;
    color: rgba(255, 255, 255, .55);
}

.about__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 110px;
}

.about__cta p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
}

.about__cta a {
    color: #fff;
    font-size: clamp(35px, 6vw, 90px);
    line-height: 1;
    letter-spacing: -.06em;
    text-decoration: none;
}

.about__cta a span {
    display: inline-block;
    transition: transform .3s ease;
}

.about__cta a:hover span {
    transform: translate(8px, -8px);
}

@media (max-width: 768px) {
    .about {
        padding: 120px 20px 55px;
    }

    .about__lead {
        margin: 30px 0 0;
    }

    .about__film {
        height: 125vw;
        min-height: 360px;
        margin: 70px 0;
    }

    .about__text {
        padding-bottom: 70px;
    }

    .about__text-grid,
    .about__principles {
        grid-template-columns: 1fr;
    }

    .about__text-grid {
        gap: 28px;
    }

    .about__principles article,
    .about__principles article:first-child {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        border-left: 0;
    }

    .about__principles h2 {
        margin-top: 32px;
    }

    .about__cta {
        display: block;
        padding-top: 70px;
    }

    .about__cta a {
        display: block;
        margin-top: 20px;
    }
}

/* Mobile reviews: every Telegram chat occupies the same slide height. */
@media (max-width: 768px) {
    .reviews__slider,
    .reviews__track,
    .telegram {
        height: 500px;
    }

    .telegram {
        min-height: 0;
    }

    .telegram__body {
        height: calc(500px - 72px);
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
    }
}

/* Transformation controls stay reachable on small screens. */
@media (max-width: 768px) {
    .transformation {
        padding: 50px 0;
    }

    .transformation__visual {
        width: calc(100% - 56px);
    }

    .transformation__dots {
        gap: 12px;
    }

    .transformation__dot {
        width: 11px;
        height: 11px;
        flex: 0 0 11px;
    }

    .transformation__content {
        padding-top: 18px;
    }

    .transformation__title {
        font-size: clamp(24px, 7vw, 34px);
    }

    .transformation__text {
        font-size: 14px;
    }
}

/* =========================================================
   ABOUT PAGE — STORY LAYOUT
========================================================= */

.about {
    padding: 90px 5vw 80px;
}

.about__hero {
    position: relative;
    display: grid;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
    place-items: center;
    background: #111;
}

.about__hero-video,
.about__hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about__hero-video {
    object-fit: cover;
    filter: brightness(.55) contrast(1.05);
}

.about__hero-overlay {
    background: radial-gradient(circle at center, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72));
}

.about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    padding: 48px 24px;
    text-align: center;
}

.about__hero h1 {
    max-width: none;
    font-size: clamp(48px, 8.8vw, 66px);
    line-height: .86;
}

.about__hero-content > p:last-child {
    max-width: 470px;
    margin: 10px auto 0;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.45;
    color: rgba(255, 255, 255, .72);
}

.about__approach,
.about__note,
.about__cta {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.about__approach {
    padding: 120px 0 85px;
}

.about__approach > h2 {
    max-width: 840px;
    margin: 0 0 55px;
    font-size: clamp(34px, 5.4vw, 76px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.06em;
}

.about__choices {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.about__choice {
    min-height: 245px;
    padding: 24px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}

.about__choice:hover,
.about__choice.is-active {
    background: #fff;
    color: #070707;
}

.about__choice:hover {
    transform: translateY(-6px);
}

.about__choice span,
.about__choice strong,
.about__choice small {
    display: block;
}

.about__choice span {
    font-size: 11px;
    opacity: .55;
}

.about__choice strong {
    margin-top: 72px;
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 400;
    letter-spacing: -.05em;
}

.about__choice small {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.4;
    opacity: .7;
}

.about__note {
    max-width: 660px;
    padding: 40px 0 105px;
}

.about__note p {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 29px);
    line-height: 1.27;
    color: rgba(255, 255, 255, .64);
}

.about__footer {
    padding-top: 0;
}

.about__footer .footer__bottom {
    margin-top: 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

@media (max-width: 768px) {
    .about {
        padding: 72px 16px 50px;
    }

    .about__hero {
        height: 100svh;
        height: 100dvh;
        min-height: 0;
    }

    .about__hero-content {
        padding: 40px 18px;
    }

    .about__approach {
        padding: 75px 0 55px;
    }

    .about__approach > h2 {
        margin-bottom: 36px;
    }

    .about__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about__choice {
        min-height: 190px;
        padding: 18px;
    }

    .about__choice strong {
        margin-top: 48px;
        font-size: 26px;
    }

    .about__choice small {
        font-size: 12px;
    }

    .about__note {
        padding-bottom: 65px;
    }

    .about__footer {
        padding-right: 16px;
        padding-left: 16px;
    }
}

.about__intro {
    padding: clamp(90px, 12vw, 180px) 0 clamp(10px, 0vw, 141px);
}

.about__intro-inner {
    width: min(1050px, calc(100% - 10vw));
    margin: 0 auto;
    text-align: center;
}

.about__intro-label {
    margin: 0 0 20px;
    font-size: 11px;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .5);
}

.about__intro h2 {
    margin: 0;
    font-size: clamp(40px, 6.4vw, 94px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.065em;
}

.about__intro h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .95);
}

.about__intro-text {
    max-width: 760px;
    margin: clamp(50px, 7vw, 90px) auto 0;
    text-align: left;
}

.about__intro-text p {
    margin: 0 0 26px;
    font-size: clamp(17px, 1.65vw, 21px);
    line-height: 1.5;
    color: rgba(255, 255, 255, .7);
}

.about__intro-text p:first-child {
    color: #fff;
}

@media (max-width: 768px) {
    .about__intro {
        padding: 80px 0 75px;
    }

    .about__intro-inner {
        width: calc(100% - 32px);
    }

    .about__intro h2 {
        font-size: clamp(38px, 11.5vw, 58px);
    }

    .about__intro-text {
        margin-top: 48px;
    }

.about__intro-text p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.48;
    }
}

/* Five unique visual cards: JavaScript moves the first card to the end. */
@media (max-width: 768px) {
    .visual-section__cards {
        animation: none;
    }

    .visual-section__navigation {
        width: 100vw;
        margin-right: 0;
        margin-left: calc(50% - 50vw);
        padding-left: 0;
        overflow: hidden;
        background: transparent;
    }

    .visual-section__cards {
        margin-left: 0;
        gap: 8px;
    }

    .visual-card {
        flex-basis: 186px;
        width: 186px;
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

}

.contact-success-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.contact__privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.contact__privacy-checkbox {
    appearance: none;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
}

.contact__privacy-checkbox:checked {
    border-color: #fff;
    background: #fff;
    box-shadow: inset 0 0 0 4px #111;
}

.feedback-popup__privacy {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.feedback-popup__privacy-checkbox {
    appearance: none;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
}

.feedback-popup__privacy-checkbox:checked {
    border-color: #fff;
    background: #fff;
    box-shadow: inset 0 0 0 4px #111;
}

.contact-success-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-success-modal__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.contact-success-modal__window {
    position: relative;
    z-index: 1;
    width: min(500px, 100%);
    padding: 55px 50px 48px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: #111;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
    transform: translateY(30px) scale(.96);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.contact-success-modal.active .contact-success-modal__window {
    transform: translateY(0) scale(1);
}

.contact-success-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.contact-success-modal__window > span {
    display: block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: .12em;
    opacity: .5;
}

.contact-success-modal h2 {
    margin: 0 0 20px;
    font-size: clamp(40px, 7vw, 68px);
    font-weight: 400;
    line-height: .88;
    letter-spacing: -.06em;
}

.contact-success-modal h2 i {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.contact-success-modal p {
    max-width: 360px;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .65);
}

@media (max-width: 600px) {
    .contact-success-modal__window {
        padding: 52px 25px 30px;
        border-radius: 20px;
    }
}



@media (hover: none) and (max-width: 768px) {
    .visual-card:hover {
        transform: none;
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
        border-color: rgba(255, 255, 255, .13);
    }
}

/* Final mobile override: show only compact philosophy-card titles. */
@media (max-width: 660px) {
    .story__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        left: 16px;
        right: 16px;
        bottom: 26px;
        gap: 9px;
    }

    .story__card,
    .story__card:nth-child(n) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 64px;
        padding: 14px 10px;
        text-align: center;
    }

    .story__card-number,
    .story__card p {
        display: none;
    }

    .story__card h3 {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.1;
    }

    .story__card:hover {
        transform: none;
    }
}


@media (max-width: 500px) {
    .header__actions {
        display: none;
    }

    .story__cards {
        display: none;
    }

    .reviews__slider,
    .reviews__track,
    .telegram {
        height: 570px;
    }

    .telegram__body {
        height: calc(570px - 64px);
        min-height: 0;
        padding: 20px 14px;
        overflow-y: auto;
        touch-action: pan-y;
        overscroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* All Telegram review slides keep one stable height below tablet width. */
@media (max-width: 999px) and (min-width: 501px) {
    .reviews__slider,
    .reviews__track,
    .telegram {
        height: 560px;
    }

    .telegram {
        min-height: 0;
    }

    .telegram__body {
        height: calc(560px - 72px);
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

/* Emergency layout for ultra-narrow viewports (down to 50px). */
@media (max-width: 200px) {
    html,
    body {
        min-width: 0;
        overflow-x: hidden;
        overflow-wrap: anywhere;
    }

    .container,
    .header__inner,
    .footer,
    .contact__inner,
    .reviews__layout {
        min-width: 0;
        width: 100%;
        padding-right: 4px;
        padding-left: 4px;
    }

    .header {
        height: 52px;
    }

    .header__inner {
        justify-content: center;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .header__logo-text,
    .header__nav,
    .header__burger,
    .scroll-hint,
    .footer__up,
    .feedback-popup,
    .contact-success-modal {
        display: none !important;
    }

    .header__logo-mark {
        width: 30px;
        height: 30px;
    }

    h1,
    h2,
    h3,
    p,
    span,
    a,
    button,
    label,
    input,
    textarea {
        max-width: 100%;
        font-size: 9px !important;
        line-height: 1.15 !important;
        letter-spacing: 0 !important;
        overflow-wrap: anywhere;
    }

    .hero,
    .contact,
    .footer {
        min-width: 0;
        padding-right: 4px !important;
        padding-left: 4px !important;
    }

    .projects,
    .visual-section,
    .uslig,
    .story,
    .reviews,
    .why-us,
    .next {
        display: none !important;
    }

    .hero {
        height: 100svh;
    }

    .hero__inner,
    .hero-video,
    .hero-video-3 {
        min-width: 0;
        width: 100%;
        height: 100svh !important;
    }

    .contact__inner,
    .footer__top,
    .footer__bottom {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .contact {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .contact__form-wrapper,
    .footer__navigation {
        display: block;
        min-width: 0;
        width: 100%;
    }

    .contact__field,
    .contact__button,
    .footer__column,
    input,
    textarea {
        min-width: 0 !important;
        width: 100% !important;
    }

    .footer__navigation {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.transformation__links{display:flex;flex-wrap:wrap;gap:12px 26px;margin-top:18px}
.transformation__links[hidden]{display:none}
.transformation__link{display:inline-flex;gap:10px;align-items:center;color:#fff;text-decoration:none;font-size:13px}
.transformation__link:hover span{transform:translate(2px,-2px)}
.transformation__link span{transition:transform .2s ease}
.feedback-popup__privacy a,.contact__privacy a{color:inherit;text-decoration:underline;text-underline-offset:2px}

.about-video-notes{padding:clamp(70px,9vw,72px) clamp(20px,5vw,72px);background:#ece9e2;color:#111}
.about-video-notes__head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:48px}
.about-video-notes__head h2{max-width:760px;margin:0;font-size:clamp(42px,6vw,90px);font-weight:400;line-height:.92;letter-spacing:-.06em}
.about-video-notes__head p{max-width:300px;margin:0;color:#666;line-height:1.55}
.about-video-notes__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.about-video-note{padding:14px 14px 24px;box-shadow:0 18px 45px rgba(0,0,0,.1);transform:rotate(-1.2deg)}
.about-video-note:nth-child(2){transform:translateY(24px) rotate(1deg)}
.about-video-note:nth-child(3){transform:rotate(-.5deg)}
.about-video-note video{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;background:#111}
.about-video-note span{display:block;margin-top:18px;color:#777;font-size:10px;letter-spacing:.14em;text-transform:uppercase}
.about-video-note h3{margin:8px 0 0;font-size:clamp(22px,2.2vw,32px);font-weight:400;text-align: center;}
@media(max-width:700px){.about-video-notes__head{display:block}.about-video-notes__head p{margin-top:20px}.about-video-notes__grid{grid-template-columns:1fr;gap:18px}.about-video-note,.about-video-note:nth-child(2),.about-video-note:nth-child(3){transform:none}.story{touch-action:pan-y}}

.paper-triptych{padding:clamp(80px,10vw,155px) clamp(20px,5vw,72px);overflow:hidden;background:#161512;color:#f3efe6}.paper-triptych__head{display:grid;grid-template-columns:.55fr 1.25fr .7fr;gap:30px;align-items:end;max-width:1500px;margin:0 auto 55px}.paper-triptych__head>span{align-self:start;color:#b9a98d;font-size:10px;letter-spacing:.16em;text-transform:uppercase}.paper-triptych__head h2{margin:0;font-size:clamp(42px,5.6vw,86px);font-weight:400;line-height:.92;letter-spacing:-.06em; text-align: center;}.paper-triptych__head p{max-width:340px;margin:0;color:rgba(243,239,230,.58);font-size:14px;line-height:1.6}.paper-triptych__stage{position:relative;max-width:1500px;aspect-ratio:2.65/1;margin:0 auto;background:#070707;box-shadow:0 35px 90px rgba(0,0,0,.38)}.paper-triptych__video{position:absolute;inset:14px 14px 90px;width:calc(100% - 28px);height:calc(100% - 104px);object-fit:cover}.paper-triptych__cards{position:absolute;inset:0;display:grid;grid-template-columns:repeat(3,1fr);gap:20px;pointer-events:none}.paper-triptych__card{position:relative;min-width:0;border:14px solid #eee9df;border-bottom-width:90px;box-shadow:0 18px 48px rgba(0,0,0,.2)}.paper-triptych__card:nth-child(1){transform:rotate(-.65deg)}.paper-triptych__card:nth-child(2){transform:translateY(8px) rotate(.45deg)}.paper-triptych__card:nth-child(3){transform:rotate(-.35deg)}.paper-triptych__card span,.paper-triptych__card strong{position:absolute;z-index:2;left:4px;color:#24211c}.paper-triptych__card span{top:calc(100% + 29px);font-size:9px;letter-spacing:.14em;text-transform:uppercase;opacity:.55}.paper-triptych__card strong{top:calc(100% + 48px);font-size:clamp(15px,1.35vw,22px);font-weight:400;white-space:nowrap; color:whitesmoke}.paper-triptych__card:after{content:"";position:absolute;left:50%;top:-23px;width:72px;height:20px;background:rgba(218,205,177,.72);transform:translateX(-50%) rotate(-2deg);box-shadow:0 2px 4px rgba(0,0,0,.08)}
@media(max-width:760px){.paper-triptych__head{display:block;margin-bottom:35px}.paper-triptych__head h2{margin:20px 0}.paper-triptych__stage{width:850px;max-width:none;height:330px;aspect-ratio:auto}.paper-triptych{overflow-x:auto}.paper-triptych__cards{gap:14px}.paper-triptych__card{border-width:10px;border-bottom-width:76px}.paper-triptych__video{inset:10px 10px 76px;width:calc(100% - 20px);height:calc(100% - 86px)}.paper-triptych__card span{top:calc(100% + 23px)}.paper-triptych__card strong{top:calc(100% + 40px);font-size:16px}}

/* Vertical paper video triptych: media is visible only inside each sheet. */
.paper-triptych__stage{max-width:1100px;aspect-ratio:auto;background:transparent;box-shadow:none}.paper-triptych__cards{position:relative;inset:auto;display:flex;flex-direction:column;gap:clamp(38px,6vw,78px)}.paper-triptych__card{width:min(820px,88%);min-height:0;padding:14px 14px 88px;border:0;background:#0c0c0d;box-shadow:0 24px 65px rgba(0,0,0,.3)}.paper-triptych__card:nth-child(1){align-self:flex-start;transform:rotate(-.8deg)}.paper-triptych__card:nth-child(2){align-self:flex-end;transform:rotate(.7deg)}.paper-triptych__card:nth-child(3){align-self:center;transform:rotate(-.35deg)}.paper-triptych__card video{display:block;width:100%;aspect-ratio:16/8.4;object-fit:cover;background:#070707}.paper-triptych__card span{left:20px;top:auto;bottom:54px}.paper-triptych__card strong{left: 141px;top:auto;bottom: 28px;}.paper-triptych__card:after{top:-10px}
@media(max-width:760px){.paper-triptych{overflow:hidden}.paper-triptych__stage{width:auto;height:auto}.paper-triptych__cards{gap:30px}.paper-triptych__card,.paper-triptych__card:nth-child(1),.paper-triptych__card:nth-child(2),.paper-triptych__card:nth-child(3){width:100%;align-self:stretch;padding:9px 9px 72px;transform:none}.paper-triptych__card span{left:15px;bottom:43px}.paper-triptych__card strong{left:15px;bottom:18px;font-size:16px}}

/* One wide frame split into three synchronized paper cards. */
.paper-triptych__stage{max-width:1500px}.paper-triptych__cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(14px,2vw,28px)}.paper-triptych__card,.paper-triptych__card:nth-child(1),.paper-triptych__card:nth-child(2),.paper-triptych__card:nth-child(3){width:auto;align-self:auto;padding:12px 12px 82px}.paper-triptych__card:nth-child(1){transform:rotate(-.65deg)}.paper-triptych__card:nth-child(2){transform:translateY(10px) rotate(.45deg)}.paper-triptych__card:nth-child(3){transform:rotate(-.35deg)}.paper-triptych__viewport{position:relative;width:100%;aspect-ratio:.66;overflow:hidden;background:#070707}.paper-triptych__viewport video{position:absolute;top:0;width:300%;max-width:none;height:100%;object-fit:cover}.paper-triptych__card:nth-child(1) video{left:0}.paper-triptych__card:nth-child(2) video{left:-100%}.paper-triptych__card:nth-child(3) video{left:-200%}
@media(max-width:760px){.paper-triptych{overflow-x:auto}.paper-triptych__stage{width:760px}.paper-triptych__cards{gap:12px}.paper-triptych__card,.paper-triptych__card:nth-child(1),.paper-triptych__card:nth-child(2),.paper-triptych__card:nth-child(3){padding:8px 8px 68px}.paper-triptych__card:nth-child(1){transform:rotate(-.4deg)}.paper-triptych__card:nth-child(2){transform:translateY(6px) rotate(.3deg)}.paper-triptych__card:nth-child(3){transform:rotate(-.25deg)}}

.paper-stack{padding:clamp(85px,11vw,170px) clamp(20px,5vw,72px);overflow:hidden;background:#e9e4d9;color:#171511}.paper-stack__head{display:grid;grid-template-columns:.55fr 1.25fr .7fr;gap:30px;align-items:end;max-width:1300px;margin:0 auto 65px}.paper-stack__head>span{align-self:start;color:#847760;font-size:10px;letter-spacing:.16em;text-transform:uppercase}.paper-stack__head h2{margin:0;font-size:clamp(42px,5.6vw,86px);font-weight:400;line-height:.92;letter-spacing:-.06em}.paper-stack__head p{max-width:340px;margin:0;color:rgba(23,21,17,.58);font-size:14px;line-height:1.6}.paper-stack__cards{display:flex;flex-direction:column;gap:clamp(30px,5vw,64px);max-width:1050px;margin:0 auto}.paper-stack__card{position:relative;width:min(900px,90%);padding:13px 13px 78px;background:#f7f3ea;box-shadow:0 24px 60px rgba(65,52,32,.17)}.paper-stack__card:nth-child(1){align-self:flex-start;transform:rotate(-.55deg)}.paper-stack__card:nth-child(2){align-self:flex-end;transform:rotate(.5deg)}.paper-stack__card:nth-child(3){align-self:center;transform:rotate(-.3deg)}.paper-stack__viewport{position:relative;width:100%;aspect-ratio:16/4.7;overflow:hidden;background:#090909}.paper-stack__viewport video{position:absolute;left:0;width:100%;height:300%;max-width:none;object-fit:cover}.paper-stack__card:nth-child(1) video{top:0}.paper-stack__card:nth-child(2) video{top:-100%}.paper-stack__card:nth-child(3) video{top:-200%}.paper-stack__card span,.paper-stack__card strong{position:absolute;left:20px;color:#24211c}.paper-stack__card span{bottom:47px;font-size:9px;letter-spacing:.14em;text-transform:uppercase;opacity:.55}.paper-stack__card strong{bottom:19px;font-size:clamp(16px,1.55vw,23px);font-weight:400}.paper-stack__card:after{content:"";position:absolute;left:50%;top:-10px;width:76px;height:20px;background:rgba(206,190,157,.72);transform:translateX(-50%) rotate(1.5deg);box-shadow:0 2px 4px rgba(0,0,0,.08)}
@media(max-width:760px){.paper-stack__head{display:block;margin-bottom:38px}.paper-stack__head h2{margin:20px 0}.paper-stack__cards{gap:25px}.paper-stack__card,.paper-stack__card:nth-child(1),.paper-stack__card:nth-child(2),.paper-stack__card:nth-child(3){width:100%;align-self:stretch;padding:9px 9px 65px;transform:none}.paper-stack__viewport{aspect-ratio:16/5.8}.paper-stack__card span{left:15px;bottom:39px}.paper-stack__card strong{left:15px;bottom:15px;font-size:16px}}

/* Director story beside a clean three-card video composition. */
.paper-stack{display:grid;grid-template-columns:minmax(250px,.72fr) minmax(0,1.8fr);gap:clamp(40px,7vw,115px);align-items:center}.paper-stack__head{display:block;margin:0;align-self:center}.paper-stack__head h2{margin:24px 0 30px}.paper-stack__head p{max-width:430px;font-size:clamp(15px,1.25vw,19px);line-height:1.7}.paper-stack__cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(12px,1.5vw,22px);width:100%;max-width:none}.paper-stack__card,.paper-stack__card:nth-child(1),.paper-stack__card:nth-child(2),.paper-stack__card:nth-child(3){width:auto;align-self:auto;padding:10px;background:#f7f3ea}.paper-stack__card:nth-child(1){transform:rotate(-.6deg)}.paper-stack__card:nth-child(2){transform:translateY(9px) rotate(.45deg)}.paper-stack__card:nth-child(3){transform:rotate(-.3deg)}.paper-stack__viewport{aspect-ratio:.68}.paper-stack__card:after{width:55px;height:16px;top:-8px}
@media(max-width:900px){.paper-stack{grid-template-columns:1fr}.paper-stack__head{max-width:680px}.paper-stack__cards{max-width:850px}.paper-stack__viewport{aspect-ratio:.72}}
@media(max-width:560px){.paper-stack{gap:35px}.paper-stack__cards{gap:8px}.paper-stack__card,.paper-stack__card:nth-child(1),.paper-stack__card:nth-child(2),.paper-stack__card:nth-child(3){padding:6px}.paper-stack__card:nth-child(1){transform:rotate(-.4deg)}.paper-stack__card:nth-child(2){transform:translateY(5px) rotate(.3deg)}.paper-stack__card:nth-child(3){transform:rotate(-.2deg)}}

/* Final layout: vertical video sheets on the left, director text on the right. */
.paper-stack{grid-template-columns:minmax(0,1.65fr) minmax(270px,.75fr)}.paper-stack__cards{order:1;display:flex;flex-direction:column;gap:clamp(24px,3.5vw,48px);max-width:880px}.paper-stack__head{order:2;justify-self:end}.paper-stack__card,.paper-stack__card:nth-child(1),.paper-stack__card:nth-child(2),.paper-stack__card:nth-child(3){width:min(780px,92%);padding:10px}.paper-stack__card:nth-child(1){align-self:flex-start;transform:rotate(-.45deg)}.paper-stack__card:nth-child(2){align-self:flex-end;transform:rotate(.4deg)}.paper-stack__card:nth-child(3){align-self:center;transform:rotate(-.25deg)}.paper-stack__viewport{aspect-ratio:16/4.8}
@media(max-width:900px){.paper-stack{grid-template-columns:1fr}.paper-stack__head{order:1;justify-self:start}.paper-stack__cards{order:2;width:100%;max-width:none}.paper-stack__card,.paper-stack__card:nth-child(1),.paper-stack__card:nth-child(2),.paper-stack__card:nth-child(3){width:100%}.paper-stack__viewport{aspect-ratio:16/5.4}}

.paper-triptych,.paper-stack{background:#000}.about-video-notes{background:#0c0c0d;color:#f3efe6}.paper-stack{gap:clamp(22px,3vw,48px);color:#f3efe6}.paper-stack__head{justify-self:start}.paper-stack__head>span{color:#b9a98d}.paper-stack__head h2{margin-bottom:10px}.paper-stack__head p{color:rgba(243,239,230,.64)}.about-video-notes__head p{color:rgba(243,239,230,.62)}

/* Entry loader: the main page is revealed after its opening video is ready. */
.is-home-loading{overflow:hidden}.is-home-loading>:not(.home-loader){visibility:hidden}.home-loader{position:fixed;z-index:100000;inset:0;display:grid;place-items:center;padding:24px;background:#050505;color:#f3efe6;opacity:1;visibility:visible;transition:opacity .65s ease,visibility .65s ease}.home-loader__inner{width:min(520px,88vw)}.home-loader__brand,.home-loader__caption{display:block;font-size:10px;letter-spacing:.2em;text-transform:uppercase}.home-loader__counter{display:block;margin:18px 0 12px;font-size:clamp(58px,10vw,124px);font-weight:300;line-height:.9;letter-spacing:-.07em}.home-loader__track{height:1px;background:rgba(255,255,255,.22);overflow:hidden}.home-loader__track span{display:block;width:0;height:100%;background:#fff;transition:width .25s ease}.home-loader__caption{margin-top:14px;color:rgba(255,255,255,.5)}.home-loader.is-finished{opacity:0;visibility:hidden;pointer-events:none}

/* The director's film opens from the three paper fragments on double click/tap. */
.paper-stack__cards{cursor:zoom-in}.paper-stack__cards::after{content:"Двойное нажатие — открыть видео";align-self:center;color:rgba(243,239,230,.48);font-size:10px;letter-spacing:.14em;text-transform:uppercase}.is-director-video-open{overflow:hidden}.director-video-modal{position:fixed;z-index:10000;inset:0;display:grid;place-items:center;padding:clamp(14px,3vw,42px);opacity:0;visibility:hidden;transition:opacity .35s ease,visibility .35s ease}.director-video-modal.is-open{opacity:1;visibility:visible}.director-video-modal__backdrop{position:absolute;inset:0;border:0;background:rgba(0,0,0,.9);cursor:zoom-out}.director-video-modal__dialog{position:relative;width:min(1180px,94vw);z-index:1}.director-video-modal video{display:block;width:100%;max-height:86vh;background:#000;object-fit:contain}.director-video-modal__close{position:absolute;z-index:2;right:0;bottom:calc(100% + 12px);width:42px;height:42px;border:1px solid rgba(255,255,255,.4);border-radius:50%;background:#080808;color:#fff;font-size:25px;cursor:pointer}

/* Shared neutral footer for the main and secondary pages. */
.footer {
    position: relative;
    background: #070707 !important;
    border-top: 1px solid rgba(255, 255, 255, .16) !important;
}

.footer__bottom {
    border-top-color: rgba(255, 255, 255, .16) !important;
}

.footer__column a {
    transition: color .25s ease, transform .25s ease;
}

.footer__column a:hover {
    color: #fff !important;
    transform: translateX(3px);
}

/* One-time contextual instructions for unusual interactions. */
.interaction-hint {
    position: fixed;
    z-index: 9000;
    right: clamp(14px, 3vw, 34px);
    bottom: clamp(14px, 3vw, 34px);
    width: min(370px, calc(100vw - 28px));
    padding: 20px 52px 20px 21px;
    border: 1px solid rgba(184, 200, 255, .3);
    border-radius: 16px;
    color: #f3f5ff;
    background: linear-gradient(135deg, rgba(22, 27, 49, .94), rgba(4, 6, 13, .96));
    box-shadow: 0 22px 70px rgba(0, 0, 0, .52), inset 0 0 35px rgba(113, 135, 216, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(.96);
    transition: opacity .5s ease, visibility .5s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}
.interaction-hint::before { content: ""; position: absolute; top: 0; left: 21px; width: 70px; height: 1px; background: linear-gradient(90deg, #a9baff, transparent); box-shadow: 0 0 12px #8298ee; }
.interaction-hint.is-visible { opacity: 1; visibility: visible; transform: none; }
.interaction-hint span { display: block; margin-bottom: 8px; color: #93a8ef; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.interaction-hint p { margin: 0; color: rgba(243, 245, 255, .76); font-size: 13px; line-height: 1.5; }
.interaction-hint button { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; background: transparent; color: #fff; font-size: 18px; cursor: pointer; }
@media (max-width: 600px) { .interaction-hint { padding: 17px 48px 17px 18px; } .interaction-hint p { font-size: 12px; } }

/* Full-screen cosmic burger menu on the home page. */
@media (max-width: 900px) {
    body:is(:not(.articles-page),.article-guide-page).is-menu-open { overflow: hidden; }
    body:is(:not(.articles-page),.article-guide-page) .header { z-index: 5000; background: transparent; }
    body:is(:not(.articles-page),.article-guide-page) .header__logo,
    body:is(:not(.articles-page),.article-guide-page) .header__actions,
    body:is(:not(.articles-page),.article-guide-page) .header__burger { position: relative; z-index: 2; }
    body:is(:not(.articles-page),.article-guide-page) .header__burger { border-color:rgba(255,255,255,.48);background:rgba(5,8,18,.42);box-shadow:0 0 28px rgba(104,126,255,.14);backdrop-filter:blur(12px);transition:border-color .35s ease,background .35s ease,transform .35s ease; }
    body:is(:not(.articles-page),.article-guide-page) .header__burger.active { border-color:#fff;background:rgba(255,255,255,.1);transform:rotate(90deg); }
    body:is(:not(.articles-page),.article-guide-page) .header__nav {
        position: fixed;
        z-index: 1;
        inset: 0;
        width: 100%;
        height: 100svh;
        padding: clamp(120px,17vh,170px) 8vw 55px;
        justify-content: center;
        align-items: stretch;
        gap: 0;
        overflow: hidden auto;
        border: 0;
        background:linear-gradient(90deg,rgba(1,3,10,.94),rgba(1,3,10,.54) 72%,rgba(1,3,10,.72)),url("../images/mobile-menu-space.png") center/cover no-repeat;
        box-shadow: inset 0 0 100px rgba(0,0,0,.5);
        transform: scale(1.06);
        opacity: 0;
        visibility: hidden;
        transition: opacity .7s ease, visibility .7s ease, transform 1s cubic-bezier(.16,1,.3,1);
    }
    body:is(:not(.articles-page),.article-guide-page) .header__nav::before { content:"BEAUTIFUL-WORLDS / НАВИГАЦИЯ";display:block;margin-bottom:clamp(24px,5vh,54px);color:rgba(255,255,255,.46);font-size:9px;letter-spacing:.2em; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav::after { content:"Санкт-Петербург · 2026";margin-top:auto;padding-top:35px;color:rgba(255,255,255,.38);font-size:9px;letter-spacing:.16em;text-transform:uppercase; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav.active { opacity:1;visibility:visible;transform:scale(1); }
    body:is(:not(.articles-page),.article-guide-page) .header__link {
        display: flex;
        align-items: center;
        min-height: clamp(58px,10vh,86px);
        border-top: 1px solid rgba(255,255,255,.17);
        color: rgba(255,255,255,.78);
        font-size: clamp(30px,8vw,58px);
        font-weight: 300;
        line-height: 1;
        letter-spacing: -.045em;
        opacity: 0;
        transform: translateY(22px);
        transition: color .3s ease,padding-left .4s ease,opacity .6s ease,transform .7s cubic-bezier(.16,1,.3,1);
    }
    body:is(:not(.articles-page),.article-guide-page) .header__link:last-of-type { border-bottom:1px solid rgba(255,255,255,.17); }
    body:is(:not(.articles-page),.article-guide-page) .header__link::before { margin-right:18px;color:#8ca0ef;font-size:9px;letter-spacing:.1em; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav.active .header__link { opacity:1;transform:none; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav.active .header__link:nth-child(2) { transition-delay:.07s; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav.active .header__link:nth-child(3) { transition-delay:.14s; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav.active .header__link:nth-child(4) { transition-delay:.21s; }
    body:is(:not(.articles-page),.article-guide-page) .header__nav.active .header__link:nth-child(5) { transition-delay:.28s; }
    body:is(:not(.articles-page),.article-guide-page) .header__link:hover { color:#fff;padding-left:12px; }

    /* Keep every non-article mobile header aligned and the menu viewport-sized. */
    body:is(:not(.articles-page),.article-guide-page) .header__inner {
        justify-content: flex-end;
        width: 100%;
        max-width: none;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__logo {
        position: fixed !important;
        z-index: 5002;
        top: 27px;
        left: 50%;
        display: flex !important;
        width: auto;
        margin: 0;
        transform: translateX(-50%);
        pointer-events: auto;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__logo-mark,
    body:is(:not(.articles-page),.article-guide-page) .header__logo-text br,
    body:is(:not(.articles-page),.article-guide-page) .header__logo-text strong {
        display: none !important;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__logo-text {
        display: block !important;
        margin: 0 !important;
        color: #fff;
        font-size: 11px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: .16em;
        text-align: center;
        text-transform: uppercase;
        white-space: nowrap;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__burger {
        position: fixed !important;
        z-index: 5002;
        top: 16px;
        right: 16px;
        left: auto;
        margin: 0;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__actions {
        position: fixed !important;
        z-index: 5002;
        top: 29px;
        right: auto;
        left: 16px;
        display: flex;
        margin: 0;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__actions .language-switcher {
        display: flex;
        min-width: max-content;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        line-height: 1;
    }
    body:is(:not(.articles-page),.article-guide-page) .header__nav {
        inset: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100dvw !important;
        max-width: none !important;
        height: 100dvh !important;
        min-height: 100svh;
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

/* Keep the three-part studio film inside the phone viewport. */
@media (max-width: 760px) {
    .paper-triptych {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    .paper-triptych__head p {
        margin-left: auto;
        text-align: right;
    }
    .paper-triptych__stage {
        width: 106%;
        max-width: none;
        height: auto;
        margin-left: -3%;
        margin-right: -3%;
    }
    .paper-triptych__viewport {
        aspect-ratio: .23;
    }
    .paper-triptych__cards {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }
    .paper-triptych__card,
    .paper-triptych__card:nth-child(1),
    .paper-triptych__card:nth-child(2),
    .paper-triptych__card:nth-child(3) {
        min-width: 0;
        width: auto;
        padding: 4px 4px 11px;
        transform: none;
    }
    .paper-triptych__card span {
        left: 7px;
        bottom: 31px;
        font-size: 6px;
        letter-spacing: .08em;
    }
    .paper-triptych__card strong {
        display: none;
    }
    .paper-triptych__card::after {
        width: 36px;
        height: 10px;
        top: -5px;
    }
}
.landing-replaced{padding:clamp(70px,10vw,150px) clamp(18px,4vw,64px);background:#050506;color:#f4f1e9}.landing-replaced__intro{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);gap:28px 48px;align-items:start;max-width:1500px;margin:0 auto 48px}.landing-replaced__intro>span{grid-column:1/-1;color:#9ea9ff;font-size:10px;letter-spacing:.16em}.landing-replaced__intro h2{grid-column:1/-1;margin:0;font-size:clamp(42px,7vw,108px);font-weight:400;line-height:.9;letter-spacing:-.055em}.landing-replaced__intro h2 i{color:#9ea9ff;font-weight:400}.landing-replaced__copy{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:24px}.landing-replaced__intro p{margin:0;color:rgba(255,255,255,.62);font-size:16px;line-height:1.7;max-width:68ch;overflow-wrap:anywhere}.landing-replaced__intro a{flex:0 0 auto;padding:13px 17px;border:1px solid rgba(255,255,255,.16);border-radius:999px;color:#fff;text-decoration:none}.landing-replaced__frame{max-width:1600px;height:min(1120px,94vh);min-height:860px;margin:auto;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:#111}.landing-replaced__frame iframe{width:100%;height:100%;border:0}@media(max-width:800px){.landing-replaced__intro{grid-template-columns:1fr}.landing-replaced__copy{grid-column:1;align-items:flex-start;flex-direction:column}.landing-replaced__frame{height:900px;min-height:900px;border-radius:16px}}@media(max-width:520px){.landing-replaced{padding-inline:10px}.landing-replaced__intro{padding-inline:8px}.landing-replaced__frame{height:920px;min-height:920px}.landing-replaced__intro h2{font-size:44px}}
.systems-bridge{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:28px;background:#0b0b0d;color:#f5f2eb}.systems-bridge>.eyebrow{grid-column:1/-1}.systems-bridge h2{margin:0;font-size:clamp(42px,6vw,92px);font-weight:400;line-height:.95;letter-spacing:-.05em}.systems-bridge h2 span{color:#9ea9ff}.systems-bridge>p:not(.eyebrow){max-width:620px;margin:0;color:rgba(255,255,255,.64);font-size:16px;line-height:1.75}.systems-bridge>a{grid-column:2;justify-self:start;padding:14px 20px;border:1px solid rgba(255,255,255,.18);border-radius:999px;color:#fff;text-decoration:none}@media(max-width:760px){.systems-bridge{grid-template-columns:1fr}.systems-bridge>a{grid-column:1}.systems-bridge h2{font-size:48px}}

/* Transformation — studio universe */
.transformation{isolation:isolate;padding:clamp(80px,10vw,150px) 0;background:radial-gradient(circle at 18% 18%,rgba(126,111,255,.16),transparent 27%),radial-gradient(circle at 84% 74%,rgba(176,90,255,.12),transparent 31%),#070708;color:#f6f3ec}.transformation::before,.transformation::after{content:"";position:absolute;z-index:-1;border-radius:50%;pointer-events:none}.transformation::before{top:12%;right:8%;width:5px;height:5px;background:#fff;box-shadow:-18vw 5vh 0 rgba(255,255,255,.65),-34vw 42vh 0 rgba(255,255,255,.35),-65vw 18vh 0 rgba(255,255,255,.55),-76vw 56vh 0 rgba(255,255,255,.25),-8vw 48vh 0 rgba(255,255,255,.4);animation:transformationStars 4s ease-in-out infinite alternate}.transformation::after{left:50%;bottom:-32vw;width:76vw;height:42vw;border:1px solid rgba(158,169,255,.2);box-shadow:0 0 90px rgba(112,91,255,.09);transform:translateX(-50%) rotate(-7deg)}.transformation .container{width:min(1320px,calc(100% - 40px))}.transformation__inner{padding:clamp(16px,2.5vw,34px);border:1px solid rgba(255,255,255,.13);border-radius:clamp(22px,3vw,42px);background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.018));box-shadow:0 34px 100px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.08);backdrop-filter:blur(18px)}.transformation__inner::before{content:"PROJECT / LIVE SYSTEM";position:absolute;top:20px;left:24px;z-index:4;color:rgba(255,255,255,.4);font-size:9px;letter-spacing:.18em}.transformation__inner::after{content:"06 STAGES";position:absolute;top:20px;right:24px;z-index:4;color:#9ea9ff;font-size:9px;letter-spacing:.18em}.transformation__visual{display:grid;grid-template-columns:minmax(250px,.64fr) minmax(0,1.36fr);gap:clamp(24px,4vw,64px);align-items:center;width:100%;padding:clamp(54px,6vw,82px) clamp(10px,2vw,28px) 16px}.transformation__content{z-index:3;padding:0}.transformation__title,.transformation__text{text-align:left}.transformation__title{max-width:12ch;margin-bottom:18px;font-size:clamp(34px,4.2vw,68px);font-weight:400;line-height:.95;letter-spacing:-.055em}.transformation__text{max-width:40ch;color:rgba(246,243,236,.7);font-size:clamp(14px,1.3vw,17px)}.transformation__text.active{opacity:1}.transformation__links{justify-content:flex-start}.transformation__link{padding:11px 0;border-bottom:1px solid rgba(255,255,255,.24)}.transformation__image{border:1px solid rgba(255,255,255,.14);border-radius:clamp(18px,2.5vw,34px);background:radial-gradient(circle at 50% 35%,rgba(158,169,255,.14),transparent 48%),rgba(0,0,0,.32);box-shadow:0 28px 70px rgba(0,0,0,.45);transition:transform .65s cubic-bezier(.2,.8,.2,1),border-color .4s}.transformation__image:hover{transform:translateY(-5px);border-color:rgba(158,169,255,.45)}.transformation__img,.transformation__video{padding:clamp(8px,1.5vw,18px);border-radius:inherit}.transformation__expand{right:22px;bottom:22px;padding:11px 15px;border-color:rgba(255,255,255,.22);background:rgba(8,8,11,.72)}.transformation__dots{grid-column:1/-1;gap:8px;margin:4px 0 0}.transformation__dot{width:clamp(34px,5vw,64px);height:3px;border-radius:99px;background:rgba(255,255,255,.25);transform:none}.transformation__dot:hover,.transformation__dot.active{transform:none}.transformation__dot.active{background:linear-gradient(90deg,#9ea9ff,#cf8dff);box-shadow:0 0 18px rgba(158,169,255,.55)}@keyframes transformationStars{to{opacity:.35;filter:blur(.4px)}}
@media(max-width:900px){.transformation__visual{grid-template-columns:1fr;padding-top:62px}.transformation__content{max-width:680px}.transformation__title{max-width:15ch}.transformation__image{width:100%}.transformation__dots{grid-column:1}}
@media(max-width:600px){.transformation{padding:64px 0}.transformation .container{width:min(100% - 20px,1320px)}.transformation__inner{padding:10px;border-radius:22px}.transformation__inner::before{top:17px;left:18px}.transformation__inner::after{display:none}.transformation__visual{gap:24px;padding:52px 4px 10px}.transformation__title{font-size:38px}.transformation__text{font-size:14px}.transformation__image{aspect-ratio:4/3;border-radius:16px}.transformation__dots{gap:5px}.transformation__dot{width:auto;flex:1}}
.transformation__inner::before,.transformation__inner::after{content:none;display:none}
.transformation__visual{column-gap:clamp(42px,6vw,88px)}
.transformation__content{min-width:0;padding-right:clamp(8px,1.5vw,24px)}
@media(max-width:900px){.transformation__visual{row-gap:38px}.transformation__content{padding-right:0}}

/* Main page: stable phone layout for contacts and the responsive landing builder. */
@media (max-width: 760px) {
    .landing-replaced {
        display: block !important;
    }

    .contact {
        min-height: auto;
        padding: 72px 16px 64px !important;
        overflow: hidden;
    }

    .contact__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 32px !important;
        width: 100%;
        max-width: 560px;
        margin-inline: auto;
        padding: 0;
        align-items: stretch;
    }

    .contact__content,
    .contact__form-wrapper,
    .contact__form,
    .contact__field {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .contact__content {
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .contact__title {
        max-width: 11ch;
        margin: 0;
        white-space: normal;
        overflow-wrap: normal;
        font-size: clamp(36px, 11vw, 54px);
        line-height: .94;
        letter-spacing: -.055em;
    }

    .contact__label {
        display: block;
        max-width: 38ch;
        margin: 20px auto 0;
        color: rgba(255, 255, 255, .62);
        font-size: 14px;
        line-height: 1.55;
        letter-spacing: 0;
    }

    .contact__decor {
        display: none;
    }

    .contact__form-wrapper {
        padding: 24px 18px;
        border-radius: 22px;
        box-sizing: border-box;
    }

    .contact__form {
        display: grid;
        gap: 22px;
    }

    .contact__field {
        margin: 0;
    }

    .contact__field input,
    .contact__field textarea {
        display: block;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .contact__button {
        min-width: 0;
        width: 100%;
        margin-top: 0;
        padding: 18px 20px;
        box-sizing: border-box;
    }

    .contact__privacy {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 9px;
        width: 100%;
        margin-top: 0;
    }

    .contact__privacy-checkbox {
        width: 16px !important;
        min-width: 16px !important;
        height: 16px;
        margin: 2px 0 0;
    }

    .contact__privacy span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .contact__glow {
        width: 280px;
        height: 220px;
        opacity: .22;
    }
}

@media (max-width: 360px) {
    .contact {
        padding: 64px 12px 56px !important;
    }

    .contact__form-wrapper {
        padding: 21px 14px;
    }

    .contact__title {
        font-size: clamp(32px, 11vw, 40px);
    }
}
/* The landing builder stays available directly, but is hidden from site navigation. */
.builder-entry-link { display: none !important; }
.landing-replaced--moved { display: block; }

/* Header: compact enough for the complete navigation and two site modes. */
.header__inner{gap:clamp(12px,1.5vw,28px)}
.header__nav{gap:clamp(12px,1.35vw,25px)}
.header__link{white-space:nowrap;font-size:clamp(10px,.78vw,13px)}
@media(min-width:901px){body .header__nav>.header__link{font-size:clamp(10px,.78vw,13px)!important;font-weight:400!important;line-height:1!important;letter-spacing:1px!important}}
.development-badge{display:inline-flex;width:max-content;margin:12px 0;padding:7px 10px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.055);color:rgba(255,255,255,.68);font-size:9px;font-weight:500;line-height:1;letter-spacing:.12em;text-transform:uppercase}
.header__link--development{display:flex!important;align-items:flex-start;flex-direction:column;gap:3px;line-height:1!important}.header__link--development small{color:rgba(255,255,255,.42);font-size:7px;line-height:1;letter-spacing:.08em;text-transform:uppercase}.header__link--development:hover small{color:rgba(255,255,255,.72)}
.header__actions{gap:clamp(10px,1vw,18px)}
.site-mode-switch{display:flex;align-items:center;gap:6px;padding:4px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(5,5,7,.42);backdrop-filter:blur(12px)}
.site-mode-switch__item{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;color:rgba(255,255,255,.48);text-decoration:none;transition:color .25s,background .25s,transform .25s}
.site-mode-switch__item:hover,.site-mode-switch__item.is-active{color:#fff;background:rgba(255,255,255,.12);transform:scale(1.05)}
.site-mode-switch__item.is-empty{cursor:default}
@media(max-width:1180px){.header__nav{gap:10px}.header__link{font-size:10px}.header__button{padding-inline:14px}.language-switcher{display:none}}
@media(max-width:900px){.site-mode-switch{margin-left:auto}.header__actions{display:flex}}

/* Live project links transferred with the landing stories. */
.gallery-process__visit{display:grid;grid-template-columns:76px minmax(0,1fr);align-items:center;gap:14px;margin:24px 0 8px;padding:9px;border:1px solid rgba(255,255,255,.13);border-radius:16px;background:rgba(255,255,255,.035)}
.gallery-process__visit img{display:block;width:76px;height:52px;padding:0!important;border-radius:10px;object-fit:cover;object-position:top;animation:none!important}
.gallery-process__visit a{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:52px;padding:0 13px;color:#f5f3ff;font-size:12px;text-decoration:none;border-radius:11px;background:linear-gradient(110deg,rgba(158,169,255,.2),rgba(207,141,255,.12))}
.gallery-process__request{display:flex;align-items:center;justify-content:space-between;width:100%;margin:0 0 22px;padding:15px 18px;border:1px solid rgba(255,255,255,.26);border-radius:999px;background:#101013;color:#f5f2eb;cursor:pointer}

/* Quieter studio treatment for the belief block. */
.why-us {
    padding: clamp(84px, 9vw, 140px) 5vw;
    background: linear-gradient(180deg, #050506 0%, #0a0a0c 54%, #050506 100%);
}
.why-us::before {
    opacity: .08;
    background-size: 96px 96px;
}
.why-us::after { display: none; }
.why-us__top { margin-bottom: clamp(34px, 5vw, 64px); }
.why-us__intro h2 {
    font-size: clamp(58px, 8vw, 118px);
    line-height: .9;
}
.why-us__line {
    color: #f5f5f2;
    text-shadow: none;
}
.why-us__list {
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.why-us__item {
    min-height: 138px;
    padding: 0 10px;
    border-radius: 0;
    background: transparent;
}
.why-us__item + .why-us__item { border-top-color: rgba(255,255,255,.14); }
.why-us__item::before {
    border-radius: 0;
    background: linear-gradient(90deg, rgba(var(--belief-color),.1), transparent 52%);
}
.why-us__item::after { display: none; }
.why-us__number { width: 7px; height: 7px; }
.why-us__content h3 { font-size: clamp(30px, 3.5vw, 50px); }
.why-us__arrow { width: 42px; height: 42px; }
.why-us__item:hover {
    padding-inline: 10px;
    background: transparent;
    box-shadow: none;
    transform: translateX(6px);
}
.why-us .home-why-pulse { display: none; }

@media (max-width: 760px) {
    .why-us { padding: 72px 18px; }
    .why-us__item { padding: 24px 4px; }
    .why-us__item:hover { padding-inline: 4px; transform: none; }
}

/* Selected projects use the same narrative rhythm as “How a website is made”. */
.gallery--process{width:min(1500px,calc(100% - 40px));margin:0 auto;padding:0;overflow:visible;cursor:default}
.gallery-process__top{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:18px 0;color:rgba(255,255,255,.52);border-top:1px solid rgba(255,255,255,.18);font-size:10px;letter-spacing:.14em;text-transform:uppercase}
.gallery-process__top p{margin:0;text-align:right}
.gallery-process__stage{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(340px,.65fr);min-height:clamp(600px,72vw,850px);overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:clamp(18px,2vw,32px);background:#0a0a0b;box-shadow:0 45px 110px rgba(0,0,0,.38)}
.gallery-process__visual{position:relative;min-width:0;padding:0;overflow:hidden;border:0;background:#111;cursor:zoom-in}
.gallery-process__visual::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 58%,rgba(0,0,0,.72));pointer-events:none}
.gallery-process__visual img{display:block;width:100%;height:100%;object-fit:cover;object-position:top;transform:scale(1.001);transition:opacity .45s ease,transform 1.2s cubic-bezier(.16,1,.3,1)}
.gallery-process__visual:hover img{transform:scale(1.025)}
.gallery-process__visual>span{position:absolute;z-index:2;left:26px;bottom:24px;color:#fff;font-size:11px;letter-spacing:.12em;text-transform:uppercase}
.gallery-process__content{display:flex;flex-direction:column;padding:clamp(30px,4vw,66px);background:radial-gradient(circle at 100% 0,rgba(137,126,200,.16),transparent 32%),#0b0b0d}
.gallery-process__type{margin:0;color:#969caf;font-size:10px;letter-spacing:.16em;text-transform:uppercase}
.gallery-process__content h3{max-width:10ch;margin:clamp(28px,5vw,74px) 0 25px;color:#f3efe7;font-size:clamp(42px,5vw,78px);font-weight:300;line-height:.9;letter-spacing:-.065em}
.gallery-process__description{max-width:42ch;margin:0;color:#a2a4ad;font-size:clamp(15px,1.2vw,18px);line-height:1.65}
.gallery-process__facts{display:grid;gap:0;margin:auto 0 30px}
.gallery-process__facts>div{display:grid;grid-template-columns:80px 1fr;gap:18px;padding:15px 0;border-top:1px solid rgba(255,255,255,.12)}
.gallery-process__facts dt{color:#747987;font-size:9px;letter-spacing:.12em;text-transform:uppercase}
.gallery-process__facts dd{margin:0;color:#d0ced0;font-size:12px;line-height:1.5}
.gallery-process__controls{display:grid;grid-template-columns:44px 1fr 44px;align-items:center;gap:14px}
.gallery-process__controls button{width:44px;height:44px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:transparent;color:#fff;font-size:18px;cursor:pointer;transition:background .3s,color .3s,transform .3s}
.gallery-process__controls button:hover{background:#fff;color:#090909;transform:scale(1.06)}
.gallery-process__progress{height:1px;overflow:hidden;background:rgba(255,255,255,.16)}
.gallery-process__progress i{display:block;width:20%;height:100%;background:#d8d9ff;transform-origin:left;transition:transform .65s cubic-bezier(.16,1,.3,1)}
.gallery--process.is-changing .gallery-process__visual img{opacity:.2;transform:scale(1.035)}
.gallery--process.is-changing .gallery-process__content>*{animation:galleryProcessIn .55s cubic-bezier(.16,1,.3,1) both}
@keyframes galleryProcessIn{from{opacity:0;transform:translateY(-28px)}to{opacity:1;transform:none}}
@media(max-width:900px){.gallery-process__stage{grid-template-columns:1fr;min-height:0}.gallery-process__visual{min-height:min(72vw,620px)}.gallery-process__content h3{max-width:none;margin-top:34px}.gallery-process__facts{margin-top:42px}}
@media(max-width:560px){.gallery--process{width:calc(100% - 24px)}.gallery-process__top{align-items:flex-start;flex-direction:column}.gallery-process__top p{text-align:left}.gallery-process__visual{min-height:74vw}.gallery-process__content{padding:28px 20px}.gallery-process__content h3{font-size:42px}.gallery-process__facts>div{grid-template-columns:68px 1fr}}

/* Exact visual relationship to the transformation block above. */
.next:has(.gallery--process){position:relative;isolation:isolate;padding:clamp(80px,10vw,150px) 0;background:radial-gradient(circle at 18% 18%,rgba(126,111,255,.14),transparent 27%),radial-gradient(circle at 84% 74%,rgba(176,90,255,.1),transparent 31%),#070708;color:#f6f3ec}
.next:has(.gallery--process) .next__header{width:min(1320px,calc(100% - 40px));margin:0 auto clamp(34px,5vw,64px)}
.gallery--process{width:min(1320px,calc(100% - 40px))}
.gallery-process__stage{position:relative;isolation:isolate;grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr);gap:clamp(34px,5vw,70px);align-items:center;min-height:0;padding:clamp(64px,6vw,84px) clamp(20px,3vw,38px) clamp(20px,2.5vw,32px);overflow:hidden;border:1px solid rgba(255,255,255,.15);border-radius:clamp(22px,3vw,42px);background:radial-gradient(circle at 82% 18%,rgba(154,169,255,.16),transparent 27%),radial-gradient(circle at 14% 88%,rgba(195,121,255,.1),transparent 30%),linear-gradient(145deg,rgba(255,255,255,.078),rgba(255,255,255,.014));box-shadow:0 34px 100px rgba(0,0,0,.46),inset 0 1px rgba(255,255,255,.1);backdrop-filter:blur(18px)}
.gallery-process__stage::before{content:"BEAUTIFUL WORLDS / SELECTED PROJECT";position:absolute;z-index:-1;left:26px;top:22px;color:rgba(255,255,255,.38);font-size:9px;letter-spacing:.18em}
.gallery-process__stage::after{content:"";position:absolute;z-index:-2;right:-12%;bottom:-54%;width:68%;aspect-ratio:1;border:1px solid rgba(169,181,255,.16);border-radius:50%;box-shadow:0 0 70px rgba(116,99,255,.1),inset 0 0 60px rgba(126,102,255,.035);transform:rotate(-13deg);pointer-events:none}
.gallery-process__content{order:1;align-self:stretch;padding:0;background:none}
.gallery-process__visual{order:2;height:clamp(340px,38vw,510px);min-height:0;border:1px solid rgba(255,255,255,.14);border-radius:clamp(18px,2.5vw,34px);background:radial-gradient(circle at 50% 35%,rgba(158,169,255,.14),transparent 48%),rgba(0,0,0,.32);box-shadow:0 28px 70px rgba(0,0,0,.45);transition:transform .65s cubic-bezier(.2,.8,.2,1),border-color .4s}
.gallery-process__visual:hover{transform:translateY(-5px);border-color:rgba(158,169,255,.45)}
.gallery-process__visual img{padding:clamp(8px,1.2vw,14px);border-radius:inherit;object-fit:cover;object-position:center top;animation:gallerySiteScroll 24s cubic-bezier(.45,.05,.35,1) infinite alternate}
.gallery-process__content h3{max-width:12ch;margin:clamp(24px,3vw,42px) 0 16px;font-size:clamp(32px,3.6vw,56px);font-weight:400;line-height:.95}
.gallery-process__facts{margin:auto 0 24px}
.gallery-process__controls{grid-column:1/-1;display:grid;grid-template-columns:44px minmax(180px,1fr) 44px;gap:14px;margin-top:20px}
.gallery-process__dots{display:flex;align-items:center;justify-content:center;gap:8px}
.gallery-process__dots button{flex:1;width:auto;max-width:64px;height:3px;border:0;border-radius:99px;background:rgba(255,255,255,.25);cursor:pointer;transition:background .35s,box-shadow .35s}
.gallery-process__dots button.active{background:linear-gradient(90deg,#9ea9ff,#cf8dff);box-shadow:0 0 18px rgba(158,169,255,.55)}
@media(max-width:900px){.gallery-process__stage{grid-template-columns:1fr;gap:32px}.gallery-process__content{order:1}.gallery-process__visual{order:2;height:min(62vw,500px);min-height:0}.gallery-process__controls{grid-column:1}.gallery-process__content h3{max-width:15ch}}
@media(max-width:600px){.next:has(.gallery--process){padding:64px 0}.gallery--process,.next:has(.gallery--process) .next__header{width:min(100% - 20px,1320px)}.gallery-process__stage{padding:58px 14px 18px;border-radius:22px}.gallery-process__visual{height:68vw;min-height:0;border-radius:16px}.gallery-process__facts{display:none}.gallery-process__controls{grid-template-columns:40px 1fr 40px}.gallery-process__controls>button{width:40px;height:40px}}
@keyframes gallerySiteScroll{0%,10%{object-position:center top}90%,100%{object-position:center bottom}}
@media(prefers-reduced-motion:reduce){.gallery-process__visual img{animation:none}}

/* Мобильный полноэкранный фон секции услуг */
@media (max-width: 768px) {
    .uslig {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        overflow: clip;
        height: auto;
        min-height: 100svh;
    }

    .uslig__sticky {
        position: relative;
        top: auto;
        min-height: 100svh;
        height: auto;
        overflow: hidden;
    }

    .uslig__visual {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
        contain: paint;
    }

    .uslig__visual video {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
        transform: none !important;
        filter: none !important;
        opacity: 1;
        border-radius: 0;
    }

    .uslig__overlay {
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.12) 42%, rgba(0,0,0,.78));
    }

    .uslig__label {
        max-width: 62vw;
        font-size: 9px;
        line-height: 1.35;
    }
}
/* Studio belief system: a compact constellation instead of a plain accordion. */
.why-us {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(90px, 10vw, 160px) 5vw;
    background:
        radial-gradient(circle at 14% 22%, rgba(115, 99, 255, 0.17), transparent 28%),
        radial-gradient(circle at 88% 76%, rgba(48, 201, 172, 0.11), transparent 30%),
        #050507;
}

.why-us::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.why-us::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 12%;
    right: -8vw;
    width: min(34vw, 480px);
    aspect-ratio: 1;
    border: 1px solid rgba(172, 164, 255, 0.2);
    border-radius: 50%;
    box-shadow: inset 0 0 90px rgba(115, 99, 255, 0.08), 0 0 80px rgba(115, 99, 255, 0.08);
}

.why-us__top,
.why-us__list {
    position: relative;
    z-index: 1;
    width: min(100%, 1380px);
    margin-inline: auto;
}

.why-us__top {
    margin-bottom: clamp(38px, 6vw, 78px);
}

.why-us__intro h2 {
    margin: 0;
    font-size: clamp(64px, 10vw, 150px);
    font-weight: 450;
    line-height: 0.82;
    letter-spacing: -0.075em;
}

.why-us__line {
    color: #f5f3ff;
    text-shadow: 0 0 45px rgba(133, 119, 255, 0.28);
}

.why-us__list {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.why-us__item {
    --belief-color: 138, 124, 255;
    isolation: isolate;
    min-height: 150px;
    margin: 0;
    padding: 0 clamp(20px, 3vw, 44px);
    border: 0;
    border-radius: 22px;
    background: transparent;
    transition: transform 0.8s cubic-bezier(.16, 1, .3, 1), background 0.8s ease, box-shadow 0.8s ease;
}

.why-us__item + .why-us__item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-us__item:nth-child(2) { --belief-color: 75, 193, 255; }
.why-us__item:nth-child(3) { --belief-color: 255, 151, 103; }
.why-us__item:nth-child(4) { --belief-color: 81, 219, 170; }

.why-us__item::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 18% 50%, rgba(var(--belief-color), 0.18), transparent 43%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.why-us__item::after {
    content: "✦";
    position: absolute;
    z-index: -1;
    right: 11%;
    color: rgba(var(--belief-color), 0.09);
    font-size: clamp(70px, 9vw, 140px);
    line-height: 1;
    transform: rotate(-12deg) scale(0.8);
    transition: transform 1.1s cubic-bezier(.16, 1, .3, 1), color 0.8s ease;
}

.why-us__number {
    width: 9px;
    height: 9px;
    align-self: center;
    padding: 0;
    border-radius: 50%;
    background: rgb(var(--belief-color));
    box-shadow: 0 0 18px rgba(var(--belief-color), 0.8);
}

.why-us__content h3 {
    font-size: clamp(30px, 4vw, 58px);
    letter-spacing: -0.045em;
}

.why-us__arrow {
    border-color: rgba(var(--belief-color), 0.45);
    color: rgb(var(--belief-color));
}

.why-us__item:hover {
    padding-inline: clamp(20px, 3vw, 44px);
    background: rgba(var(--belief-color), 0.07);
    box-shadow: inset 0 0 0 1px rgba(var(--belief-color), 0.16);
    transform: translateX(8px);
}

.why-us__item:hover::before { opacity: 1; }
.why-us__item:hover::after { color: rgba(var(--belief-color), 0.2); transform: rotate(18deg) scale(1); }
.why-us__item:hover .why-us__arrow { background: rgb(var(--belief-color)); border-color: transparent; color: #050507; }

.projects-showcase .projects-stage[hidden] {
    display: none !important;
}

@media (max-width: 760px) {
    .why-us { padding: 78px 18px; }
    .why-us::after { width: 70vw; right: -32vw; }
    .why-us__list { padding: 6px; border-radius: 22px; }
    .why-us__item {
        grid-template-columns: 20px minmax(0, 1fr) 40px;
        gap: 14px;
        min-height: 0;
        padding: 24px 14px;
    }
    .why-us__content { padding: 0; }
    .why-us__content p {
        max-height: none;
        margin-top: 12px;
        opacity: 1;
        transform: none;
        font-size: 14px;
    }
    .why-us__item:hover { padding-inline: 14px; transform: none; }
    .why-us__item::after { right: 5%; font-size: 68px; }
}

/* Final, restrained treatment for “Мы верим”. */
.why-us{padding:clamp(84px,9vw,140px) 5vw;background:linear-gradient(180deg,#050506,#0a0a0c 54%,#050506)}
.why-us::before{opacity:.08;background-size:96px 96px}
.why-us::after{display:none}
.why-us__top{margin-bottom:clamp(34px,5vw,64px)}
.why-us__intro h2{font-size:clamp(58px,8vw,118px);line-height:.9}
.why-us__line{color:#f5f5f2;text-shadow:none}
.why-us__list{padding:0;border:0;border-top:1px solid rgba(255,255,255,.18);border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none}
.why-us__item{min-height:138px;padding:0 10px;border-radius:0;background:transparent}
.why-us__item + .why-us__item{border-top-color:rgba(255,255,255,.14)}
.why-us__item::before{border-radius:0;background:linear-gradient(90deg,rgba(var(--belief-color),.1),transparent 52%)}
.why-us__item::after{display:none}
.why-us__number{width:7px;height:7px}
.why-us__content h3{font-size:clamp(30px,3.5vw,50px)}
.why-us__arrow{width:42px;height:42px}
.why-us__item:hover{padding-inline:10px;background:transparent;box-shadow:none;transform:translateX(6px)}
.why-us .home-why-pulse{display:none}
@media(max-width:760px){.why-us{padding:72px 18px}.why-us__list{padding:0;border-radius:0}.why-us__item{padding:24px 4px}.why-us__item:hover{padding-inline:4px;transform:none}}

/* Monochrome handwritten manifesto. */
.why-us{padding-block:clamp(90px,11vw,170px);background:#070708}
.why-us::before,.why-us::after{display:none}
.why-us__top{margin-bottom:clamp(28px,4vw,48px)}
.why-us__intro{width:min(100%,1040px);max-width:none}
.why-us__intro h2{width:100%;margin:0}
.why-us__list{width:min(100%,1120px);border-top:1px solid rgba(255,255,255,.13)}
.why-us__item{display:block;min-height:0;padding:clamp(21px,2.5vw,34px) 0;border-radius:0}
.why-us__item:hover{padding-inline:0;transform:none}
.why-us__item::before,.why-us__item::after,.why-us__number,.why-us__arrow,.why-us__content p,.why-us .home-why-pulse{display:none!important}
.why-us__content{padding:0}
.why-us__content h3{width:100%;margin:0}
.why-us__writing{display:block;color:transparent}
.why-us__writing svg{display:block;width:100%;height:auto;overflow:visible}
.why-us__line.why-us__writing{width:min(100%,760px);margin-inline:auto}
.why-us__content .why-us__writing{width:min(84%,820px)}
.why-us__writing text{fill:rgba(255,255,255,0);stroke:rgba(255,255,255,.96);stroke-width:1.15;font-family:"Segoe Script","Brush Script MT",cursive;font-size:39px;font-weight:500;letter-spacing:.15px;stroke-dasharray:1500;stroke-dashoffset:1500;clip-path:inset(0 100% 0 0);filter:drop-shadow(0 0 3px rgba(255,255,255,.2))}
.why-us__line.why-us__writing{width:min(100%,980px)}
.why-us__line.why-us__writing text{font-size:138px;stroke-width:1.5}
.why-us__writing.is-writing text{animation:whyUsReveal 1.9s linear forwards,whyUsStroke 1.9s linear forwards,whyUsFill .6s ease 1.55s forwards}
.why-us__line.why-us__writing.is-writing text{animation-duration:2.5s,2.5s,.7s;animation-delay:0s,0s,2.1s}
.why-us__pen{opacity:0;filter:drop-shadow(0 0 6px rgba(255,255,255,.7))}
.why-us__pen path,.why-us__pen circle{fill:#fff;stroke:#fff;stroke-width:.6}
.why-us__signature{width:min(72%,1080px);margin:clamp(52px,7vw,100px) auto 0;padding-top:28px;border-top:1px solid rgba(255,255,255,.12)}
.why-us__signature text{font-size:52px;font-style:italic}
.why-us__flourishes{display:grid;grid-template-columns:1fr 1fr;gap:clamp(20px,6vw,100px);width:min(100%,1180px);margin:24px auto 0}
.why-us__flourish{display:block;width:100%;overflow:visible}
.why-us__flourish>path{fill:none;stroke:rgba(255,255,255,.72);stroke-width:1.35;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1;stroke-dashoffset:1;opacity:0}
.why-us__flourish.is-drawing>path,.why-us__flourish.is-drawn>path{opacity:1}
.why-us__flourish-pen{opacity:0;filter:drop-shadow(0 0 5px rgba(255,255,255,.65))}
.why-us__flourish-pen path,.why-us__flourish-pen circle{fill:#fff;stroke:#fff}
@keyframes whyUsReveal{to{clip-path:inset(0 0 0 0)}}
@keyframes whyUsStroke{to{stroke-dashoffset:0}}
@keyframes whyUsFill{to{fill:rgba(250,248,242,.88);stroke:rgba(250,248,242,.38)}}
@media(max-width:760px){.why-us__item{padding:15px 0}.why-us__content .why-us__writing{width:100%}.why-us__writing text{font-size:32px}.why-us__line.why-us__writing text{font-size:116px}.why-us__signature{width:100%;margin-top:48px}.why-us__signature text{font-size:40px}.why-us__flourishes{gap:8px;margin-top:12px}}
@media(prefers-reduced-motion:reduce){.why-us__writing text{clip-path:none;stroke-dashoffset:0;fill:rgba(250,248,242,.88)}.why-us__pen,.why-us__flourish-pen{display:none}.why-us__flourish>path{stroke-dasharray:none!important;stroke-dashoffset:0!important;opacity:1}}

/* Each transformation step is represented by a small dancing figure. */
.transformation__dots{align-items:flex-end;gap:clamp(8px,1.4vw,18px);min-height:78px}
.transformation__dot{position:relative;flex:1;width:auto;max-width:none;height:72px;border:0;border-radius:14px;background:rgba(255,255,255,.025);box-shadow:inset 0 0 0 1px rgba(255,255,255,.09);overflow:hidden}
.transformation__dot::before{position:absolute;inset:0;display:grid;place-items:center;color:rgba(255,255,255,.52);font-size:clamp(25px,3vw,38px);filter:grayscale(1);transition:color .4s,filter .4s,transform .55s cubic-bezier(.16,1,.3,1)}
.transformation__dot::after{content:"";position:absolute;left:18%;right:18%;bottom:9px;height:1px;background:rgba(255,255,255,.14);transform:scaleX(.45);transition:transform .45s,background .45s}
.transformation__dot:nth-child(1)::before{content:"🧭"}
.transformation__dot:nth-child(2)::before{content:"⌕";font-size:clamp(36px,4vw,52px)}
.transformation__dot:nth-child(3)::before{content:"⌘"}
.transformation__dot:nth-child(4)::before{content:"✎"}
.transformation__dot:nth-child(5)::before{content:"▣"}
.transformation__dot:nth-child(6)::before{content:"↗"}
.transformation__dot:hover,.transformation__dot.active{background:rgba(255,255,255,.055);box-shadow:inset 0 0 0 1px rgba(255,255,255,.18)}
.transformation__dot:hover::before,.transformation__dot.active::before{color:#fff;filter:grayscale(0);transform:translateY(-5px) scale(1.13)}
.transformation__dot.active::after{background:#d4c8ff;transform:scaleX(1);box-shadow:0 0 12px rgba(183,164,255,.55)}

/* The first project image starts travelling only when its section is reached. */
.gallery--process .gallery-process__visual img{animation-play-state:paused}
.gallery--process.is-in-view .gallery-process__visual img{animation-play-state:running}

@media(max-width:600px){.transformation__dots{min-height:60px}.transformation__dot{height:56px}.transformation__dot::before{font-size:25px}}

/* Technical line diagrams replace the temporary emoji markers. */
.transformation__dot::before{display:none}
.transformation__step-icon{position:absolute;inset:7px 10px 13px;display:grid;place-items:center;transition:transform .55s cubic-bezier(.16,1,.3,1),filter .4s}
.transformation__step-icon svg{display:block;width:100%;height:100%;fill:none;stroke:rgba(231,232,239,.48);stroke-width:1.35;stroke-linecap:round;stroke-linejoin:round;transition:stroke .4s}
.transformation__dot:hover .transformation__step-icon,.transformation__dot.active .transformation__step-icon{transform:translateY(-3px) scale(1.06);filter:drop-shadow(0 0 7px rgba(190,181,255,.32))}
.transformation__dot:hover .transformation__step-icon svg,.transformation__dot.active .transformation__step-icon svg{stroke:#f5f3ff}
.reviews__arrow{cursor:pointer;transition:transform .4s ease,color .3s ease}
.reviews__arrow:hover{color:#fff;transform:translate(4px,4px)}
.header {
    height: 96px;
}

.header__inner {
    max-width: 1680px;
    padding-inline: 24px;
}

.header__logo-mark {
    width: 42px;
    height: 42px;
}

.header__logo-text {
    font-size: 19px;
}

.header__link {
    font-size: clamp(11px, .9vw, 14px);
}

.header__button {
    padding: 14px 20px;
    font-size: 16px;
}

.header__link.is-current {
    color: #fff;
}

.header__link.is-current::after {
    width: 100%;
    transform: scaleX(1);
}

.header__nav a[href$="#contact"] {
    display: none !important;
}

@media (max-width: 1180px) {
    .header__link {
        font-size: 11px;
    }
}

/* 1, 2, 9 and 10 — shared across every page in the designer version. */
.header__logo-text{display:flex;flex-direction:column;font-size:19px;line-height:1;letter-spacing:3px}
.header__logo-text strong{margin-top:4px;font-size:12px;letter-spacing:4px;opacity:.52;text-align:center}
.header__actions{gap:clamp(14px,1.35vw,24px);transform:scale(1.06);transform-origin:right center}
.about-scroll-signal{display:none!important}
.about-comparison__site img{object-fit:contain!important;object-position:center!important;background:#070709}
@media(max-width:760px){.header{height:76px}.header__inner{padding:12px 14px}.header__logo-mark{width:36px;height:36px}.header__logo-text{font-size:14px;letter-spacing:2px}.header__logo-text strong{display:none}.header__actions{transform:none;gap:8px}.header__button{padding:10px 12px;font-size:12px}.container{padding-left:12px;padding-right:12px}img,video{max-width:100%}}
[hidden]{display:none!important}

/* Keep both site modes on one header typography system. */
.header,.header button,.header a,.header input{font-family:"Space Grotesk",sans-serif}

/* On phones the version and language controls belong to the opened burger panel. */
@media(max-width:900px){
    body .header__actions{position:fixed!important;z-index:5003!important;left:8vw!important;right:8vw!important;top:auto!important;bottom:28px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:14px!important;width:auto!important;margin:0!important;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(12px)!important;transition:opacity .25s ease,transform .25s ease,visibility .25s ease}
    body .header__actions .header__button{display:none!important}
    body .header__actions .site-mode-switch,body .header__actions .language-switcher{display:flex!important;opacity:1!important;visibility:visible!important}
    body.is-menu-open .header__actions{opacity:1;visibility:visible;pointer-events:auto;transform:none!important}
}

/* Compact overflow menu keeps the designer header inside the viewport. */
.header__more{position:relative;display:flex;align-items:center;flex:0 0 auto}
.header__more-toggle{display:grid;width:38px;height:38px;place-items:center;padding:0;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.025);color:rgba(255,255,255,.68);cursor:pointer;transition:border-color .25s ease,color .25s ease,background .25s ease}
.header__more-toggle span{display:block;margin-top:-5px;font-size:19px;line-height:1;letter-spacing:2px}
.header__more:hover .header__more-toggle,.header__more.is-open .header__more-toggle,.header__more.is-current .header__more-toggle{border-color:rgba(255,255,255,.62);background:rgba(255,255,255,.08);color:#fff}
.header__more-menu{position:absolute;z-index:40;top:calc(100% + 15px);right:0;display:grid;width:max-content;min-width:250px;padding:8px;border:1px solid rgba(255,255,255,.14);border-radius:16px;background:rgba(8,8,11,.96);box-shadow:0 24px 60px rgba(0,0,0,.48);opacity:0;visibility:hidden;transform:translateY(-8px) scale(.97);transform-origin:top right;transition:opacity .22s ease,visibility .22s ease,transform .3s cubic-bezier(.16,1,.3,1);backdrop-filter:blur(18px)}
.header__more.is-open .header__more-menu{opacity:1;visibility:visible;transform:none}
.header__more-link{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:13px 14px;border-radius:10px;color:rgba(255,255,255,.68);font-size:11px;line-height:1.15;letter-spacing:.04em;text-decoration:none;white-space:nowrap;transition:background .2s ease,color .2s ease}
.header__more-link:hover,.header__more-link.is-current{background:rgba(255,255,255,.07);color:#fff}
.header__more-link small{color:rgba(255,255,255,.36);font-size:7px;letter-spacing:.1em;text-transform:uppercase}
@media(max-width:900px){
    body .header__nav .header__more{display:grid;width:min(100%,360px);justify-items:center}
    body .header__nav .header__more-toggle{width:48px;height:48px;margin-top:3px}
    body .header__nav .header__more-menu{position:static;width:100%;min-width:0;max-height:0;margin-top:0;padding:0;border:0;background:transparent;box-shadow:none;opacity:0;visibility:hidden;overflow:hidden;transform:none;backdrop-filter:none;transition:max-height .32s ease,opacity .22s ease,visibility .22s ease,margin .22s ease}
    body .header__nav .header__more.is-open .header__more-menu{max-height:280px;margin-top:8px;padding:4px;opacity:1;visibility:visible}
    body .header__nav .header__more-link{font-size:12px;text-align:left}
}
