:root {
    --ink: #17131c;
    --ink-light: #28212e;
    --purple: #593070;
    --purple-dark: #331c3f;
    --orange: #f37032;
    --orange-light: #ff9b5c;
    --cream: #f2eee7;
    --paper: #faf8f4;
    --white: #ffffff;
    --muted: #736c76;
    --line: rgba(23, 19, 28, 0.14);
    --light-line: rgba(255, 255, 255, 0.18);
    --header-height: 100px;
    --container-padding: clamp(22px, 4vw, 72px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

body.menu-open,
body.is-loading {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    color: inherit;
    background: transparent;
}

.container-fluid {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
}

::selection {
    color: var(--white);
    background: var(--orange);
}

.section-space {
    padding-top: clamp(100px, 10vw, 170px);
    padding-bottom: clamp(100px, 10vw, 170px);
}

.noise-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.32'/%3E%3C/svg%3E");
}

/* Loader */

.page-loader {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    transition:
        opacity 0.8s var(--ease),
        visibility 0.8s var(--ease);
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__content {
    width: min(540px, calc(100% - 48px));
}

.page-loader__logo {
    margin-bottom: 34px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 7vw, 82px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.07em;
}

.page-loader__progress {
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.page-loader__progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--orange);
}

.page-loader__meta {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Cursor */

.cursor-dot,
.cursor-ring {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--orange);
}

.cursor-ring {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(243, 112, 50, 0.65);
    transition:
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease;
}

.cursor-ring.is-active {
    width: 72px;
    height: 72px;
    background: rgba(243, 112, 50, 0.12);
}

/* Header */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    color: var(--white);
    transition:
        height 0.4s var(--ease),
        color 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.45s var(--ease);
}

.site-header.is-scrolled {
    height: 76px;
    color: var(--ink);
    background: rgba(250, 248, 244, 0.9);
    border-bottom: 1px solid rgba(23, 19, 28, 0.08);
    backdrop-filter: blur(18px);
}

.site-header.is-hidden {
    transform: translateY(-105%);
}

.site-header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    position: relative;
    z-index: 3;
    width: 155px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.site-logo img {
    width: 155px !important;
    max-width: 155px !important;
    height: 58px !important;
    max-height: 58px !important;
    object-fit: contain;
    object-position: left center;
}

.site-header:not(.is-scrolled) .site-logo img {
    filter: brightness(0) invert(1);
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 42px);
}

.desktop-navigation a {
    position: relative;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.desktop-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 10px 0;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
}

/* Mobile menu */

.mobile-menu {
    position: fixed;
    z-index: 3000;
    inset: 0;
    overflow: hidden;
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__panels {
    position: absolute;
    inset: 0;
    display: flex;
}

.mobile-menu__panels span {
    flex: 1;
    background: var(--purple-dark);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.75s var(--ease);
}

.mobile-menu.is-open .mobile-menu__panels span {
    transform: scaleY(1);
}

.mobile-menu__panels span:nth-child(2) {
    transition-delay: 0.07s;
}

.mobile-menu__panels span:nth-child(3) {
    transition-delay: 0.14s;
}

.mobile-menu__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 32px var(--container-padding);
    display: flex;
    flex-direction: column;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__brand {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.mobile-menu__close {
    position: relative;
    width: 46px;
    height: 46px;
    cursor: pointer;
}

.mobile-menu__close span {
    position: absolute;
    top: 22px;
    left: 7px;
    width: 32px;
    height: 1px;
    background: var(--white);
}

.mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

.mobile-navigation {
    margin: auto 0;
}

.mobile-navigation a {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease),
        color 0.3s ease;
}

.mobile-menu.is-open .mobile-navigation a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-open .mobile-navigation a:nth-child(1) {
    transition-delay: 0.18s;
}

.mobile-menu.is-open .mobile-navigation a:nth-child(2) {
    transition-delay: 0.23s;
}

.mobile-menu.is-open .mobile-navigation a:nth-child(3) {
    transition-delay: 0.28s;
}

.mobile-menu.is-open .mobile-navigation a:nth-child(4) {
    transition-delay: 0.33s;
}

.mobile-menu.is-open .mobile-navigation a:nth-child(5) {
    transition-delay: 0.38s;
}

.mobile-menu.is-open .mobile-navigation a:nth-child(6) {
    transition-delay: 0.43s;
}

.mobile-menu.is-open .mobile-navigation a:nth-child(7) {
    transition-delay: 0.48s;
}

.mobile-navigation small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

.mobile-navigation span {
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 5vw, 62px);
    letter-spacing: -0.05em;
}

.mobile-navigation i {
    font-size: 24px;
    font-style: normal;
}

.mobile-navigation a:hover,
.mobile-navigation a.active {
    color: var(--orange-light);
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.mobile-menu__footer div {
    display: flex;
    gap: 24px;
}

/* Shared */

.section-heading-row {
    margin-bottom: clamp(55px, 7vw, 110px);
}

.section-tag {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-tag span {
    color: var(--orange);
}

.section-tag p {
    margin: 0;
}

.section-tag--light {
    color: var(--white);
}

.section-tag--dark {
    color: var(--ink);
}

.editorial-heading,
.display-heading,
.quality-heading,
.final-cta-heading {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    letter-spacing: -0.065em;
}

.editorial-heading {
    max-width: 1120px;
    font-size: clamp(44px, 6.4vw, 100px);
    line-height: 1.02;
}

.display-heading {
    font-size: clamp(54px, 7.5vw, 118px);
    line-height: 0.94;
}

.display-heading--light {
    color: var(--white);
}

.editorial-heading em,
.display-heading em,
.quality-heading em,
.final-cta-heading em {
    color: var(--purple);
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.display-heading--light em {
    color: var(--orange-light);
}

.body-copy {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.section-intro {
    max-width: 380px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.underline-link {
    position: relative;
    width: fit-content;
    padding: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 55px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.underline-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.underline-link:hover::after {
    transform: scaleX(0.3);
}

.underline-link i {
    font-size: 18px;
    font-style: normal;
    transition: transform 0.35s var(--ease);
}

.underline-link:hover i {
    transform: translate(5px, -5px);
}

.underline-link--light {
    color: var(--white);
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero-section__media {
    position: absolute;
    inset: -6%;
}

.hero-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}

.hero-section__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13, 9, 16, 0.82) 0%,
            rgba(13, 9, 16, 0.22) 62%,
            rgba(13, 9, 16, 0.4) 100%
        ),
        linear-gradient(
            0deg,
            rgba(13, 9, 16, 0.72) 0%,
            rgba(13, 9, 16, 0) 52%
        );
}

.hero-decoration {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration--one {
    top: 4%;
    right: -12vw;
    width: 42vw;
    height: 42vw;
}

.hero-decoration--two {
    right: 14vw;
    bottom: -21vw;
    width: 35vw;
    height: 35vw;
}

.hero-section__container {
    position: relative;
    z-index: 4;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 38px;
    display: flex;
    flex-direction: column;
}

.hero-section__top {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hero-section__top p {
    margin: 0;
}

.hero-location {
    display: flex;
    gap: 12px;
}

.hero-section__main {
    margin: auto 0 28px;
}

.hero-heading {
    font-family: "Manrope", sans-serif;
    font-size: clamp(64px, 10.5vw, 168px);
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

.hero-heading__line {
    display: block;
    overflow: hidden;
}

.hero-heading__line--offset {
    padding-left: 11%;
}

.hero-heading__text {
    display: block;
    transform: translateY(110%);
}

.hero-heading__text--serif {
    color: var(--orange-light);
    font-family: "Playfair Display", serif;
    font-style: italic;
}

.hero-section__information {
    margin-top: clamp(35px, 5vw, 65px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-section__description {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.7;
}

.hero-mini-stats {
    display: flex;
    gap: clamp(30px, 5vw, 85px);
}

.hero-mini-stats div {
    max-width: 145px;
}

.hero-mini-stats strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.hero-mini-stats span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-section__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-scroll-link {
    position: relative;
    width: 112px;
    height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    overflow: hidden;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-scroll-link::before {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: 50%;
    background: var(--orange);
    transform: translateY(105%);
    transition: transform 0.5s var(--ease);
}

.hero-scroll-link:hover::before {
    transform: translateY(0);
}

.hero-scroll-link span,
.hero-scroll-link svg {
    position: relative;
    z-index: 1;
}

.hero-scroll-link svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 9px;
    letter-spacing: 0.13em;
}

.hero-pagination__line {
    position: relative;
    width: 82px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.hero-pagination__line i {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--white);
    animation: heroPagination 2.4s linear infinite;
}

@keyframes heroPagination {
    to {
        left: 120%;
    }
}

/* About */

.about-section {
    overflow: hidden;
    background: var(--paper);
}

.about-section__content {
    margin-top: 20px;
}

.round-arrow-link {
    width: 74px;
    height: 74px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 24px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.round-arrow-link:hover {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}

.about-visual {
    position: relative;
    min-height: 720px;
    margin-top: clamp(70px, 9vw, 140px);
    overflow: hidden;
}

.about-visual__image,
.about-visual__image img {
    width: 100%;
    height: 100%;
}

.about-visual__image img {
    min-height: 720px;
    object-fit: cover;
}

.about-visual__caption {
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-visual__badge {
    position: absolute;
    top: 45px;
    right: 45px;
    width: 170px;
    height: 170px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
}

.about-visual__badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.07em;
}

.about-visual__badge span {
    max-width: 92px;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Categories */

.categories-section {
    background: var(--cream);
}

.category-grid {
    margin-top: 20px;
}

.category-card {
    position: relative;
    min-height: 530px;
    display: block;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.category-card__media {
    position: absolute;
    inset: 0;
}

.category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.category-card:hover .category-card__media img {
    transform: scale(1.07);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(12, 9, 15, 0.12),
            rgba(12, 9, 15, 0.72)
        );
    transition: background 0.5s ease;
}

.category-card:hover .category-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(12, 9, 15, 0.2),
            rgba(12, 9, 15, 0.86)
        );
}

.category-card__number {
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 10px;
    letter-spacing: 0.15em;
}

.category-card__content {
    position: absolute;
    right: 28px;
    bottom: 30px;
    left: 28px;
}

.category-card__content p {
    margin: 0 0 10px;
    color: var(--orange-light);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.category-card__content h3 {
    max-width: calc(100% - 60px);
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.055em;
}

.category-card__arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 27px;
    transition: transform 0.35s var(--ease);
}

.category-card:hover .category-card__arrow {
    transform: translate(6px, -6px);
}

.category-card__description {
    position: absolute;
    top: 28px;
    right: 28px;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.45s ease,
        transform 0.45s var(--ease);
}

.category-card:hover .category-card__description {
    opacity: 1;
    transform: translateY(0);
}

.categories-section__footer {
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-section__footer p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Advantages */

.advantages-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.advantages-section__word {
    position: absolute;
    right: -4vw;
    bottom: -4vw;
    color: rgba(255, 255, 255, 0.025);
    font-family: "Manrope", sans-serif;
    font-size: 20vw;
    font-weight: 700;
    line-height: 0.7;
    letter-spacing: -0.1em;
    white-space: nowrap;
}

.advantages-grid {
    border-top: 1px solid var(--light-line);
    border-bottom: 1px solid var(--light-line);
}

.advantage-card {
    min-height: 430px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--light-line);
    transition:
        color 0.45s ease,
        background 0.45s ease;
}

.advantages-grid > div:last-child .advantage-card {
    border-right: 0;
}

.advantage-card:hover {
    color: var(--ink);
    background: var(--orange);
}

.advantage-card__top {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
}

.advantage-card:hover .advantage-card__top {
    color: var(--ink);
}

.advantage-card__top i {
    font-size: 24px;
    font-style: normal;
}

.advantage-card h3 {
    margin-bottom: 25px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 500;
    letter-spacing: -0.055em;
}

.advantage-card p {
    max-width: 340px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.7;
}

.advantage-card:hover p {
    color: rgba(23, 19, 28, 0.72);
}

/* Manifesto */

.manifesto-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.manifesto-section__media {
    position: absolute;
    inset: -7%;
}

.manifesto-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-section__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 10, 22, 0.9),
            rgba(18, 10, 22, 0.2)
        ),
        linear-gradient(
            0deg,
            rgba(18, 10, 22, 0.65),
            transparent
        );
}

.manifesto-section__container {
    position: relative;
    z-index: 3;
    min-height: 100svh;
    padding-top: 120px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-section__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eyebrow-light {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-light::before {
    width: 32px;
    height: 1px;
    content: "";
    background: currentColor;
}

.manifesto-section__symbol {
    color: var(--orange-light);
    font-size: 50px;
}

.manifesto-heading {
    margin: 70px 0 65px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(65px, 10vw, 158px);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.08em;
}

.manifesto-heading em {
    color: var(--orange-light);
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.manifesto-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.75;
}

/* Partners */

.partners-section {
    overflow: hidden;
    background: var(--paper);
}

.partner-panel {
    min-height: 720px;
    padding: clamp(35px, 5vw, 72px);
    display: flex;
    flex-direction: column;
}

.partner-panel--purple {
    color: var(--white);
    background: var(--purple-dark);
}

.partner-panel--orange {
    color: var(--ink);
    background: var(--orange);
}

.partner-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.partner-panel__top > span {
    font-size: 28px;
}

.partner-panel h2 {
    margin: auto 0 38px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.partner-panel h2 em {
    font-family: "Playfair Display", serif;
}

.partner-panel--purple h2 em {
    color: var(--orange-light);
}

.partner-panel--orange h2 em {
    color: var(--purple-dark);
}

.partner-panel > p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

.partner-panel--orange > p {
    color: rgba(23, 19, 28, 0.7);
}

.partner-panel__tags {
    margin: 38px 0 46px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-panel__tags span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.partner-panel--orange .partner-panel__tags span {
    border-color: rgba(23, 19, 28, 0.22);
}

.panel-link {
    width: fit-content;
    padding-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.panel-link--dark {
    border-color: rgba(23, 19, 28, 0.54);
}

.capability-marquee {
    margin-top: 110px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.capability-marquee__track {
    width: max-content;
    padding: 28px 0;
    display: flex;
    align-items: center;
    animation: capabilityMarquee 30s linear infinite;
}

.capability-marquee__track span {
    padding: 0 32px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(25px, 3vw, 48px);
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.capability-marquee__track i {
    color: var(--orange);
    font-size: 20px;
    font-style: normal;
}

@keyframes capabilityMarquee {
    to {
        transform: translateX(-50%);
    }
}

/* Statistics */

.statistics-section {
    background: var(--cream);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.statistic-card {
    min-height: 350px;
    padding: 38px 35px 35px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line);
}

.statistic-card:not(:first-child) {
    padding-left: 35px;
}

.statistic-card:last-child {
    border-right: 0;
}

.statistic-card__number {
    display: flex;
    align-items: flex-start;
    font-family: "Manrope", sans-serif;
    font-size: clamp(66px, 7vw, 108px);
    line-height: 1;
    letter-spacing: -0.08em;
}

.statistic-card__number sup {
    margin-top: 8px;
    color: var(--orange);
    font-size: 25px;
}

.statistic-card p {
    max-width: 190px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* Process */

.process-section {
    color: var(--white);
    background: var(--ink);
}

.process-list {
    border-top: 1px solid var(--light-line);
}

.process-row {
    display: grid;
    grid-template-columns: 90px 1fr 1fr 50px;
    gap: 30px;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid var(--light-line);
    transition:
        color 0.45s ease,
        padding 0.45s var(--ease),
        background 0.45s ease;
}

.process-row:hover {
    padding-right: 26px;
    padding-left: 26px;
    color: var(--ink);
    background: var(--orange);
}

.process-row__number {
    color: var(--orange-light);
    font-size: 10px;
}

.process-row:hover .process-row__number {
    color: var(--ink);
}

.process-row h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 3.7vw, 56px);
    font-weight: 500;
    letter-spacing: -0.055em;
}

.process-row p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    line-height: 1.65;
}

.process-row:hover p {
    color: rgba(23, 19, 28, 0.7);
}

.process-row__symbol {
    text-align: right;
    font-size: 24px;
}

/* Quality */

.quality-section {
    background: var(--paper);
}

.quality-visual {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.quality-visual > img {
    width: 100%;
    height: 760px;
    object-fit: cover;
}

.quality-visual__label {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quality-visual__badge {
    position: absolute;
    top: 42px;
    right: 42px;
    width: 160px;
    height: 160px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
}

.quality-visual__badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    letter-spacing: -0.07em;
}

.quality-visual__badge span {
    max-width: 80px;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.quality-heading {
    margin: 48px 0 40px;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 0.98;
}

.quality-points {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}

.quality-point {
    padding: 24px 15px 24px 0;
    display: flex;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.quality-point:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.quality-point:nth-child(even) {
    padding-left: 22px;
}

.quality-point span {
    color: var(--orange);
    font-size: 9px;
}

.quality-point p {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* CTA */

.final-cta-section {
    position: relative;
    min-height: 860px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--purple-dark);
}

.final-cta-section__container {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}

.final-cta-section .eyebrow-light {
    justify-content: center;
}

.final-cta-heading {
    margin: 45px auto;
    font-size: clamp(62px, 9vw, 142px);
    line-height: 0.86;
}

.final-cta-heading em {
    color: var(--orange-light);
}

.final-cta-copy {
    max-width: 610px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

.final-cta-button {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--orange);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.final-cta-button::before {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: 50%;
    background: var(--ink);
    transform: scale(0);
    transition: transform 0.55s var(--ease);
}

.final-cta-button:hover::before {
    transform: scale(1);
}

.final-cta-button span,
.final-cta-button i {
    position: relative;
    z-index: 1;
}

.final-cta-button i {
    font-size: 23px;
    font-style: normal;
}

.final-cta-section__circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.final-cta-section__circle--one {
    top: -190px;
    right: -130px;
    width: 520px;
    height: 520px;
}

.final-cta-section__circle--two {
    bottom: -190px;
    left: -130px;
    width: 430px;
    height: 430px;
}

.final-cta-section__word {
    position: absolute;
    bottom: -3vw;
    left: 50%;
    color: rgba(255, 255, 255, 0.025);
    font-family: "Manrope", sans-serif;
    font-size: 22vw;
    font-weight: 700;
    line-height: 0.7;
    letter-spacing: -0.1em;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Footer */

.site-footer {
    padding: 100px 0 32px;
    color: var(--white);
    background: #100c13;
}

.footer-main {
    padding-bottom: 80px;
}

.footer-brand img {
    width: 170px !important;
    max-width: 170px !important;
    height: 62px !important;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-heading {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column a {
    position: relative;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.footer-column a::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.footer-column a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-marquee__track {
    width: max-content;
    padding: 26px 0;
    display: flex;
    align-items: center;
    animation: footerMarquee 20s linear infinite;
}

.footer-marquee__track span {
    padding: 0 28px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(35px, 5vw, 74px);
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.footer-marquee__track i {
    color: var(--orange);
    font-size: 24px;
    font-style: normal;
}

@keyframes footerMarquee {
    to {
        transform: translateX(-50%);
    }
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom > div {
    display: flex;
    gap: 28px;
}

.footer-top-link {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-top-link span {
    color: var(--orange);
    font-size: 17px;
}

/* Back to top */

.back-to-top {
    position: fixed;
    z-index: 800;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s var(--ease);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

/* Inner page */

.inner-page-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
}

.inner-page-hero__background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(243, 112, 50, 0.5),
            transparent 28%
        ),
        radial-gradient(
            circle at 17% 76%,
            rgba(89, 48, 112, 0.85),
            transparent 35%
        );
}

.inner-page-hero__container {
    position: relative;
    z-index: 3;
    padding-top: 150px;
    padding-bottom: 90px;
}

.inner-page-hero h1 {
    max-width: 1100px;
    margin: 38px 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(62px, 10vw, 150px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.08em;
}

.inner-page-hero__container > p:not(.eyebrow-light) {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

/* Reveal */

.reveal-element,
.text-reveal,
.image-reveal {
    will-change: transform, opacity;
}

.image-reveal {
    overflow: hidden;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .desktop-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-heading {
        font-size: clamp(70px, 11vw, 130px);
    }

    .category-card {
        min-height: 480px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-card:nth-child(2) {
        border-right: 0;
    }

    .statistic-card:nth-child(1),
    .statistic-card:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .partner-panel {
        min-height: 650px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 82px;
    }

    .header-contact {
        display: none;
    }

    .hero-section__information {
        gap: 40px;
    }

    .hero-heading__line--offset {
        padding-left: 0;
    }

    .about-section__content {
        row-gap: 35px;
    }

    .round-arrow-link {
        margin-top: 15px;
    }

    .advantages-grid {
        border-bottom: 0;
    }

    .advantage-card {
        min-height: 340px;
        border-right: 0;
        border-bottom: 1px solid var(--light-line);
    }

    .partner-panel {
        min-height: 620px;
    }

    .process-row {
        grid-template-columns: 60px 1fr 50px;
    }

    .process-row p {
        display: none;
    }

    .quality-visual {
        min-height: 650px;
    }

    .quality-visual > img {
        height: 650px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --container-padding: 20px;
    }

    .site-logo {
        width: 125px;
        height: 50px;
    }

    .site-logo img {
        width: 125px !important;
        max-width: 125px !important;
        height: 50px !important;
        max-height: 50px !important;
    }

    .hero-section__top {
        display: block;
    }

    .hero-location {
        display: none;
    }

    .hero-heading {
        font-size: clamp(58px, 17vw, 96px);
        line-height: 0.84;
    }

    .hero-section__information {
        margin-top: 38px;
        display: block;
    }

    .hero-section__description {
        max-width: 390px;
        font-size: 14px;
    }

    .hero-mini-stats {
        margin-top: 30px;
    }

    .hero-mini-stats strong {
        font-size: 27px;
    }

    .hero-scroll-link {
        width: 90px;
        height: 90px;
    }

    .hero-pagination {
        display: none;
    }

    .editorial-heading {
        font-size: 42px;
    }

    .display-heading {
        font-size: 52px;
    }

    .about-visual,
    .about-visual__image img {
        min-height: 540px;
    }

    .about-visual__badge {
        top: 22px;
        right: 22px;
        width: 130px;
        height: 130px;
        padding: 20px;
    }

    .about-visual__badge strong {
        font-size: 34px;
    }

    .category-card {
        min-height: 470px;
    }

    .category-card__description {
        display: none;
    }

    .manifesto-heading {
        font-size: 64px;
        line-height: 0.88;
    }

    .manifesto-copy {
        font-size: 15px;
    }

    .partner-panel {
        min-height: 560px;
        padding: 30px;
    }

    .partner-panel h2 {
        font-size: 45px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .statistic-card,
    .statistic-card:not(:first-child) {
        min-height: 250px;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .process-row {
        grid-template-columns: 42px 1fr 30px;
        gap: 14px;
        padding: 26px 0;
    }

    .process-row h3 {
        font-size: 31px;
    }

    .quality-visual,
    .quality-visual > img {
        min-height: 520px;
        height: 520px;
    }

    .quality-visual__badge {
        top: 20px;
        right: 20px;
        width: 125px;
        height: 125px;
        padding: 18px;
    }

    .quality-heading {
        font-size: 49px;
    }

    .quality-points {
        grid-template-columns: 1fr;
    }

    .quality-point:nth-child(odd) {
        border-right: 0;
    }

    .quality-point:nth-child(even) {
        padding-left: 0;
    }

    .final-cta-section {
        min-height: 720px;
    }

    .final-cta-heading {
        font-size: 57px;
    }

    .final-cta-button {
        width: 150px;
        height: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-menu__footer {
        display: none;
    }

    .mobile-navigation a {
        grid-template-columns: 36px 1fr auto;
    }

    .mobile-navigation span {
        font-size: 27px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .categories-section__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 575.98px) {
    .section-space {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .hero-section__container {
        padding-bottom: 25px;
    }

    .hero-heading {
        font-size: clamp(53px, 16.5vw, 78px);
    }

    .hero-mini-stats {
        gap: 25px;
    }

    .hero-mini-stats div {
        max-width: 125px;
    }

    .about-visual__caption {
        right: 18px;
        bottom: 18px;
        left: 18px;
        display: block;
    }

    .about-visual__caption span {
        display: block;
        margin-top: 5px;
    }

    .category-card {
        min-height: 430px;
    }

    .partner-panel {
        min-height: 535px;
    }

    .partner-panel__tags {
        margin: 28px 0 35px;
    }

    .panel-link {
        gap: 24px;
    }

    .manifesto-section__container {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .quality-heading {
        font-size: 44px;
    }

    .final-cta-heading {
        font-size: 49px;
    }

    .footer-main {
        padding-bottom: 55px;
    }

    .footer-bottom > div {
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}