.about-page {
    width: 100%;
    color: #000;
    font-family: "Inter", "Manrope", Arial, sans-serif;
}

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

.about-page a {
    color: inherit;
}

.about-page img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-hero {
    width: 100%;
    margin: 0 0 clamp(58px, 7vw, 82px);
}

.about-hero__media {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #000;
    background: #fff;
}

.about-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

.about-intro {
    padding: 0 0 clamp(58px, 7vw, 84px);
}

.about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
    gap: clamp(34px, 4.6vw, 56px);
    align-items: stretch;
    width: 100%;
}

.about-intro__title {
    margin: 0;
    white-space: nowrap;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(96px, 12.8vw, 156px);
    line-height: 0.86;
    font-weight: 300;
    letter-spacing: -0.095em;
    text-transform: uppercase;
    color: #000;
}

.about-intro__content {
    min-width: 0;
    max-width: 690px;
    display: grid;
    align-content: center;
}

.about-intro__kicker {
    margin: 0 0 14px;
    font-size: clamp(16px, 1.7vw, 26px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.34);
}

.about-intro__text {
    margin: 0;
    max-width: 690px;
    font-size: clamp(23px, 2.35vw, 34px);
    line-height: 1.42;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: #000;
}

.about-marquee {
    margin: 64px 0 0;
    overflow: hidden;
    border: 1px solid #000;
    padding: 16px 0;
}

.about-marquee__track {
    display: flex;
    width: max-content;
    gap: 48px;
    white-space: nowrap;
    animation: about-marquee 30s linear infinite;
    will-change: transform;
}

.about-marquee:hover .about-marquee__track {
    animation-play-state: paused;
}

.about-marquee__line {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
}

@keyframes about-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 24px));
    }
}

.about-manifesto {
    position: relative;
    min-height: min(760px, 80vh);
    margin: 0 0 128px;
    overflow: hidden;
    border: 1px solid #000;
    background: #000;
}

.about-manifesto__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-manifesto__image,
.about-manifesto__video {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.88;
    object-fit: cover;
    object-position: center;
}

.about-manifesto__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.86) 0%,
            rgba(0, 0, 0, 0.66) 34%,
            rgba(0, 0, 0, 0.58) 50%,
            rgba(0, 0, 0, 0.74) 76%,
            rgba(0, 0, 0, 0.88) 100%
        ),
        rgba(0, 0, 0, 0.16);
}

.about-manifesto__content {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: inherit;
    padding: 0;
    overflow: hidden;
}

.about-manifesto__ticker {
    position: relative;
    width: 100%;
    height: min(620px, 72vh);
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 20%,
        #000 80%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 20%,
        #000 80%,
        transparent 100%
    );
}

.about-manifesto__track {
    --manifesto-gap: clamp(34px, 5vw, 76px);

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--manifesto-gap);
    animation: about-manifesto-ticker-vertical 54s linear infinite;
    will-change: transform;
}

.about-manifesto__ticker:hover .about-manifesto__track,
.about-manifesto__ticker:focus-within .about-manifesto__track {
    animation-play-state: paused;
}

.about-manifesto__phrase {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: auto;
    padding: clamp(18px, 2.4vw, 34px) clamp(22px, 5vw, 72px);
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(46px, 6.4vw, 86px);
    line-height: 1.04;
    font-weight: 300;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, var(--manifesto-alpha, 0.32));
    text-align: center;
    text-shadow:
        0 0 calc(18px * var(--manifesto-glow, 0))
        rgba(255, 255, 255, calc(0.24 * var(--manifesto-glow, 0)));
    transition:
        color 0.12s linear,
        text-shadow 0.12s linear;
}

.about-manifesto__phrase--muted {
    color: rgba(255, 255, 255, var(--manifesto-alpha, 0.32));
}

@keyframes about-manifesto-ticker-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.about-categories {
    display: grid;
    gap: clamp(76px, 8vw, 112px);
    padding: 0 0 clamp(86px, 9vw, 128px);
}

.about-category {
    position: relative;
    min-width: 0;
}

.about-category__number {
    position: absolute;
    z-index: 0;
    top: -34px;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(108px, 14vw, 172px);
    line-height: 0.82;
    font-weight: 300;
    letter-spacing: -0.08em;
    color: rgba(0, 0, 0, 0.045);
    pointer-events: none;
    user-select: none;
}

.about-category--left .about-category__number {
    left: 0;
}

.about-category--right .about-category__number {
    right: 0;
}

.about-category__head {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
}

.about-category--right .about-category__head {
    text-align: right;
}

.about-category__title {
    margin: 0;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    font-weight: 300;
    letter-spacing: -0.055em;
    color: #000;
}

.about-category:nth-child(2) .about-category__title {
    font-size: clamp(30px, 3.4vw, 44px);
}

.about-category__line {
    display: none;
}

.about-category__gallery,
.about-category__gallery--oil-set {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
    align-items: stretch;
}

.about-category__gallery .about-category__image {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
}

.about-category__image {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.09);
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), transparent 48%),
        linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
}

.about-category__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.02));
    pointer-events: none;
}

.about-category__image img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.about-category__image--contain img {
    object-fit: contain;
    object-position: center;
    padding: clamp(16px, 1.8vw, 26px);
}

.about-category__image--bottom img {
    object-position: center 78%;
}

.about-category__image:hover img {
    transform: scale(1.03);
}

.about-category__image--mobile-extra {
    display: none;
}

.about-category__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 30px 0 0;
}

.about-category__catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 314px;
    min-height: 70px;
    padding: 0 32px;
    border: 2px solid #111;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.about-category__catalog-link:hover,
.about-category__catalog-link:focus-visible {
    background: #fff;
    color: #111;
    border-color: #111;
    transform: translateY(-1px);
}

.about-category__arrows {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-category__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid #111;
    background: #fff;
    color: #111;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease;
}

.about-category__arrow:hover,
.about-category__arrow:focus-visible {
    background: #fff;
    color: #111;
    border-color: #111;
    transform: translateY(-1px);
}

.about-category__arrow:disabled,
.about-category__arrow[aria-disabled="true"] {
    opacity: 0.32;
    cursor: default;
    transform: none;
}

.about-category__arrow:disabled:hover,
.about-category__arrow[aria-disabled="true"]:hover,
.about-category__arrow:disabled:focus-visible,
.about-category__arrow[aria-disabled="true"]:focus-visible {
    background: #fff;
    color: #111;
    border-color: #111;
    transform: none;
}

.about-category__arrow-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-stats {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    padding: 0 0 clamp(94px, 9vw, 118px);
    margin: 0 0 clamp(84px, 10vw, 126px);
}

.about-stats__word {
    position: absolute;
    z-index: 0;
    max-width: 100%;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-weight: 300;
    line-height: 1;
    color: rgba(0, 0, 0, 0.07);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.about-stats__word--parfum {
    top: 0;
    left: 0;
    font-size: clamp(110px, 18vw, 228px);
    letter-spacing: -0.08em;
}

.about-stats__word--deodorants {
    top: 250px;
    left: clamp(0px, 3.8vw, 52px);
    font-size: clamp(68px, 10.5vw, 132px);
    letter-spacing: -0.015em;
}

.about-stats__word--sets {
    top: 430px;
    right: clamp(0px, 6vw, 80px);
    font-size: clamp(76px, 12vw, 146px);
    letter-spacing: -0.04em;
}

.about-stats__word--oils {
    top: 610px;
    left: clamp(46px, 24vw, 320px);
    font-size: clamp(70px, 11vw, 130px);
    letter-spacing: 0.02em;
}

.about-stats__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
}

.about-stat {
    position: relative;
    min-width: 0;
}

.about-stat--one {
    grid-column: 2 / span 3;
    padding-top: 128px;
}

.about-stat--two {
    grid-column: 5 / span 3;
    padding-top: 256px;
}

.about-stat--three {
    grid-column: 8 / span 3;
    padding-top: 384px;
}

.about-stat__inner {
    position: relative;
    min-height: 230px;
    padding-left: 28px;
    border-left: 2px solid #000;
    transition: transform 0.45s ease;
}

.about-stat__inner::before {
    display: none;
}

.about-stat:hover .about-stat__inner,
.about-stat:focus-within .about-stat__inner {
    transform: translateX(10px);
}

.about-stat__value {
    margin: 0 0 18px;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(64px, 6.2vw, 92px);
    line-height: 0.9;
    font-weight: 300;
    letter-spacing: -0.07em;
    color: #000;
}

.about-stat__line {
    width: 64px;
    height: 1px;
    margin: 0 0 22px;
    background: #000;
    transition: width 0.45s ease;
}

.about-stat:hover .about-stat__line,
.about-stat:focus-within .about-stat__line {
    width: min(150px, 100%);
}

.about-stat__label {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #000;
}

.about-stat__extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transform: translateY(8px);
    transition:
        max-height 0.45s ease,
        opacity 0.45s ease,
        margin-top 0.45s ease,
        transform 0.45s ease;
}

.about-stat:hover .about-stat__extra,
.about-stat:focus-within .about-stat__extra {
    max-height: 180px;
    opacity: 1;
    margin-top: 18px;
    transform: translateY(0);
}

.about-stat__extra p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.62);
}

.about-stat__extra p:last-child {
    margin-bottom: 0;
}

.about-values {
    padding: 0 0 70px;
}

.about-values__title {
    margin: 0 0 86px;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.95;
    font-weight: 300;
    letter-spacing: -0.07em;
    color: #000;
}

.about-values__timeline {
    position: relative;
    display: grid;
    gap: 80px;
}

.about-values__timeline::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 1px;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.9)
        );
    opacity: 0.24;
}

.about-value {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    max-width: 820px;
}

.about-value--offset {
    margin-left: 128px;
}

.about-value__marker {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 2px solid #000;
    border-radius: 999px;
    background: #fff;
    color: #000;
    transform-origin: left center;
    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        background-color 0.5s ease;
}

.about-value:hover .about-value__marker,
.about-value:focus-within .about-value__marker {
    transform: scale(2);
}

.about-value__check {
    display: none;
}

.about-value__number {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
    transition: font-size 0.5s ease;
}

.about-value:hover .about-value__number,
.about-value:focus-within .about-value__number {
    font-size: 14px;
}

.about-value__body {
    min-width: 0;
    padding-top: 12px;
    transition: padding-left 0.5s ease;
}

.about-value:hover .about-value__body,
.about-value:focus-within .about-value__body {
    padding-left: 84px;
}

.about-value__title {
    margin: 0 0 18px;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.045em;
    color: #000;
}

.about-value__line {
    display: none;
}

.about-value__text {
    margin: 0;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    color: rgb(75, 85, 99);
    transition: font-size 0.5s ease;
}

.about-value:hover .about-value__text,
.about-value:focus-within .about-value__text {
    font-size: 16px;
}

.about-value__extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
    font-weight: 300;
    color: rgb(107, 114, 128);
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        margin-top 0.5s ease;
}

.about-value:hover .about-value__extra,
.about-value:focus-within .about-value__extra {
    max-height: 140px;
    opacity: 1;
    margin-top: 16px;
}

.about-collection {
    --collection-container: 100%;
    --collection-album-size: clamp(520px, min(62vw, 58vh), 760px);

    --collection-paper-padding-y: clamp(40px, 4.4vw, 58px);
    --collection-paper-padding-right: clamp(40px, 4.5vw, 62px);

    --collection-photo-left: clamp(52px, 5.6vw, 68px);
    --collection-binding-width: clamp(96px, 9.8vw, 124px);
    --collection-stitch-left: clamp(36px, 3.8vw, 48px);

    --collection-fold-left: clamp(82px, 8.5vw, 106px);
    --collection-fold-width: clamp(44px, 4.5vw, 58px);

    --collection-fold-offset: calc(var(--collection-fold-left) - var(--collection-photo-left));
    --collection-ink: #111;
    --photobook-turn-duration: 1860ms;

    position: relative;
    z-index: 1;
    padding: clamp(58px, 7vh, 92px) 0 clamp(52px, 6vh, 84px);
    background: #fff;
    color: var(--collection-ink);
    overflow: hidden;
}

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

.about-collection__header {
    width: var(--collection-container);
    margin: 0 auto clamp(30px, 4.5vh, 52px);
}

.about-collection__title {
    margin: 0;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(48px, 5.8vw, 78px);
    line-height: 0.92;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: var(--collection-ink);
}

.about-collection__stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    perspective: 5200px;
    perspective-origin: 50% 50%;
    overflow: visible;
}

.about-collection__book {
    position: relative;
    width: var(--collection-album-size);
    height: var(--collection-album-size);
    max-width: calc(100vw - 40px);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.about-collection__album {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.about-collection__album-shadow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #fff;
    box-shadow:
        0 26px 44px rgba(0, 0, 0, 0.092),
        0 7px 16px rgba(0, 0, 0, 0.045),
        -10px 0 20px rgba(0, 0, 0, 0.03),
        16px 0 26px rgba(0, 0, 0, 0.046);
    pointer-events: none;
}

.about-collection__sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding:
        var(--collection-paper-padding-y)
        var(--collection-paper-padding-right)
        var(--collection-paper-padding-y)
        var(--collection-photo-left);
    overflow: hidden;
    isolation: isolate;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
    background: #fff;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, 0.86),
        inset -1px 0 0 rgba(0, 0, 0, 0.022);
}

.about-collection__photo-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    isolation: isolate;
    background: #f5f5f5;
    transform: translateZ(0);
}

.about-collection__photo-frame::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--collection-fold-offset) - clamp(12px, 1.2vw, 18px));
    z-index: 6;
    width: clamp(24px, 2.45vw, 34px);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, 0.016) 16%,
            rgba(0, 0, 0, 0.048) 34%,
            rgba(0, 0, 0, 0.092) 47%,
            rgba(0, 0, 0, 0.046) 62%,
            rgba(0, 0, 0, 0.014) 78%,
            transparent 100%
        );
    opacity: 0.42;
    pointer-events: none;
}

.about-collection__photo-frame::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--collection-fold-offset) + clamp(1px, 0.2vw, 3px));
    z-index: 7;
    width: clamp(4px, 0.55vw, 8px);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 18%,
            rgba(255, 255, 255, 0.42) 46%,
            rgba(255, 255, 255, 0.58) 54%,
            rgba(255, 255, 255, 0.22) 70%,
            transparent 100%
        );
    opacity: 0.58;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateZ(3px);
}

.about-collection__page-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: none !important;
    user-select: none;
    -webkit-user-drag: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.about-collection__binding {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 42;
    width: var(--collection-binding-width);
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.985) 0%,
            rgba(255, 255, 255, 0.955) 32%,
            rgba(246, 246, 246, 0.46) 52%,
            rgba(150, 150, 150, 0.098) 70%,
            rgba(0, 0, 0, 0.03) 86%,
            transparent 100%
        );
}

.about-collection__binding::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.56) 0%,
            rgba(255, 255, 255, 0.32) 42%,
            rgba(255, 255, 255, 0.064) 62%,
            rgba(0, 0, 0, 0.018) 82%,
            transparent 100%
        );
    opacity: 0.36;
}

.about-collection__binding::after {
    content: "";
    position: absolute;
    top: 0;
    right: -11px;
    width: clamp(26px, 3vw, 42px);
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.036) 0%,
            rgba(0, 0, 0, 0.02) 30%,
            rgba(255, 255, 255, 0.044) 58%,
            transparent 100%
        );
    opacity: 0.3;
}

.about-collection__spine-title {
    position: absolute;
    left: clamp(16px, 1.7vw, 22px);
    top: 50%;
    z-index: 6;
    max-height: 42%;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(7px, 0.66vw, 8.5px);
    line-height: 1.22;
    font-weight: 400;
    letter-spacing: 0.13em;
    color: rgba(0, 0, 0, 0.34);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    white-space: nowrap;
    overflow: hidden;
    pointer-events: none;
}

.about-collection__stitches {
    position: absolute;
    top: clamp(44px, 4.2vw, 62px);
    bottom: clamp(44px, 4.2vw, 62px);
    left: var(--collection-stitch-left);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.about-collection__stitch {
    display: block;
    width: clamp(5px, 0.58vw, 8px);
    height: clamp(5px, 0.58vw, 8px);
    border-radius: 999px;
    background: rgba(137, 126, 116, 0.4);
    box-shadow:
        0 1px 2px rgba(255, 255, 255, 0.52),
        inset 0 1px 1px rgba(0, 0, 0, 0.055);
}

.about-collection__fold {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--collection-fold-left);
    z-index: 44;
    width: var(--collection-fold-width);
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, 0.022) 20%,
            rgba(0, 0, 0, 0.064) 38%,
            rgba(0, 0, 0, 0.032) 52%,
            rgba(255, 255, 255, 0.086) 63%,
            rgba(255, 255, 255, 0.036) 74%,
            transparent 100%
        );
    opacity: 0.38;
    transition: opacity 0.36s ease;
}

.about-collection__fold::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: clamp(3px, 0.4vw, 6px);
    width: clamp(4px, 0.5vw, 7px);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.24) 36%,
            rgba(255, 255, 255, 0.46) 52%,
            rgba(255, 255, 255, 0.18) 68%,
            transparent 100%
        );
    opacity: 0.46;
    mix-blend-mode: screen;
}

.about-collection__paper-light {
    position: absolute;
    inset: 0;
    z-index: 46;
    opacity: 0.1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.012) 0%,
            transparent 18%,
            transparent 100%
        ),
        radial-gradient(
            ellipse at 16% 50%,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.052) 18%,
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 18%,
            transparent 82%,
            rgba(0, 0, 0, 0.018) 100%
        );
}

.about-collection__flip {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: var(--collection-fold-left);
    z-index: 60;
    visibility: hidden;
    opacity: 0;
    transform: rotateY(0deg) translate3d(0, 0, 2px);
    transform-origin: 0 50%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    pointer-events: none;
    will-change: transform, opacity, filter;
    filter: brightness(1);
    animation: none !important;
}


.about-collection__flip-inner {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.about-collection__flip-face {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.about-collection__flip-face--front {
    z-index: 2;
    transform: rotateY(0deg) translateZ(1.5px);
    box-shadow:
        inset 9px 0 18px rgba(0, 0, 0, 0.044),
        inset -1px 0 0 rgba(255, 255, 255, 0.72);
}

.about-collection__flip-face--back {
    z-index: 1;
    transform: rotateY(180deg) translateZ(1.5px);
    background:
        linear-gradient(
            90deg,
            rgba(232, 232, 232, 0.84) 0%,
            rgba(255, 255, 255, 0.97) 24%,
            rgba(255, 255, 255, 1) 100%
        ),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.01) 0,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1px,
            transparent 9px
        );
    box-shadow:
        inset -9px 0 18px rgba(0, 0, 0, 0.034),
        inset 1px 0 0 rgba(255, 255, 255, 0.86);
}

.about-collection__flip-photo {
    position: absolute;
    top: var(--collection-paper-padding-y);
    right: var(--collection-paper-padding-right);
    bottom: var(--collection-paper-padding-y);
    left: calc(var(--collection-photo-left) - var(--collection-fold-left));
    z-index: 1;
    overflow: hidden;
    background: #f5f5f5;
    transform: translateZ(2px);
}

.about-collection__flip-photo::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--collection-fold-offset) - clamp(12px, 1.2vw, 18px));
    z-index: 3;
    width: clamp(24px, 2.45vw, 34px);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0, 0, 0, 0.018) 16%,
            rgba(0, 0, 0, 0.054) 34%,
            rgba(0, 0, 0, 0.1) 47%,
            rgba(0, 0, 0, 0.048) 62%,
            rgba(0, 0, 0, 0.014) 78%,
            transparent 100%
        );
    opacity: 0.43;
    pointer-events: none;
}

.about-collection__flip-photo::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--collection-fold-offset) + clamp(1px, 0.2vw, 3px));
    z-index: 4;
    width: clamp(4px, 0.55vw, 8px);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 18%,
            rgba(255, 255, 255, 0.44) 46%,
            rgba(255, 255, 255, 0.6) 54%,
            rgba(255, 255, 255, 0.22) 70%,
            transparent 100%
        );
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-collection__flip-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none !important;
    user-select: none;
    -webkit-user-drag: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.about-collection__flip-back-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--collection-binding-width) - var(--collection-fold-left) + clamp(16px, 1.8vw, 26px));
    z-index: 4;
    width: clamp(38px, 4.2vw, 56px);
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.038) 20%,
            rgba(255, 255, 255, 0.34) 50%,
            rgba(255, 255, 255, 0.9) 100%
        );
    box-shadow:
        inset 1px 0 0 rgba(0, 0, 0, 0.055),
        inset -1px 0 0 rgba(255, 255, 255, 0.84),
        5px 0 12px rgba(0, 0, 0, 0.035);
    opacity: 0.86;
    transform: translateZ(5px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.about-collection__flip-back-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(7px, 0.66vw, 8.5px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.26);
    writing-mode: vertical-rl;
    transform: translate(-50%, -50%) rotate(180deg);
    white-space: nowrap;
}

.about-collection__flip-back-title {
    position: absolute;
    right: clamp(28px, 3.4vw, 46px);
    bottom: clamp(28px, 3.4vw, 46px);
    z-index: 5;
    max-width: 44%;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1.02;
    font-weight: 300;
    letter-spacing: -0.055em;
    color: rgba(0, 0, 0, 0.32);
    text-align: right;
    transform: translateZ(6px);
    pointer-events: none;
}


.about-collection.is-photobook-locked .about-collection__button {
    pointer-events: none;
}

.about-collection.is-photobook-animating .about-collection__binding {
    z-index: 64;
    opacity: 0.84;
}

.about-collection.is-photobook-animating .about-collection__fold {
    z-index: 66;
    opacity: 0.44;
}

.about-collection.is-photobook-animating .about-collection__paper-light {
    z-index: 62;
    opacity: 0.1;
}

.about-collection.is-photobook-animating .about-collection__photo-frame::before {
    opacity: 0.36;
}

.about-collection.is-photobook-animating .about-collection__photo-frame::after {
    opacity: 0.54;
}


.about-collection__nav {
    position: relative;
    z-index: 8;
    width: var(--collection-container);
    margin: clamp(30px, 4.2vh, 48px) auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 3vw, 34px);
}

.about-collection__button {
    appearance: none;
    flex: 0 0 auto;
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--collection-ink);
    border-radius: 0;
    background: #fff;
    color: var(--collection-ink);
    cursor: pointer;
    line-height: 1;
    transition:
        background-color 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease;
}

.about-collection__button:not(:disabled):hover,
.about-collection__button:not(:disabled):focus-visible {
    background: var(--collection-ink);
    color: #fff;
}

.about-collection__button:not(:disabled):active {
    transform: scale(0.96);
}

.about-collection__button:focus-visible {
    outline: 2px solid var(--collection-ink);
    outline-offset: 4px;
}

.about-collection__button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.about-collection__button-icon {
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-collection__counter {
    flex: 0 0 auto;
    min-width: 58px;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--collection-ink);
}

/* Catalog gallery styles */
.about-category__product-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.about-category__gallery .about-category__image--catalog {
    background: #fff;
}

.about-category__gallery .about-category__image--catalog img {
    display: block;
    width: 100%;
    height: 100%;
    padding: clamp(12px, 1.5vw, 22px);
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.about-category__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 60px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f7f7f7;
    color: rgba(17, 17, 17, 0.62);
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
}

.about-collection__page-image,
.about-collection__flip-image {
    object-fit: contain;
    object-position: center;
    background: #fff;
}

@media (min-width: 1440px) {
    .about-collection {
        --collection-album-size: clamp(560px, min(50vw, 60vh), 760px);
        padding-top: clamp(46px, 6vh, 78px);
        padding-bottom: clamp(46px, 6vh, 76px);
    }

    .about-collection__title {
        font-size: clamp(52px, 4.6vw, 76px);
    }
}

@media (min-width: 1600px) and (max-height: 960px) {
    .about-collection {
        --collection-album-size: clamp(520px, 56vh, 660px);
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .about-collection__header {
        margin-bottom: 28px;
    }

    .about-collection__nav {
        margin-top: 28px;
    }
}

@media (max-width: 1100px) {
    .about-collection {
        --collection-container: 100%;
        --collection-album-size: clamp(500px, min(78vw, 62vh), 820px);

        --collection-paper-padding-y: clamp(40px, 5vw, 58px);
        --collection-paper-padding-right: clamp(40px, 5vw, 58px);

        --collection-photo-left: clamp(48px, 6.2vw, 64px);
        --collection-binding-width: clamp(88px, 10.6vw, 118px);
        --collection-stitch-left: clamp(34px, 4.2vw, 46px);
        --collection-fold-left: clamp(78px, 8.8vw, 100px);
        --collection-fold-width: clamp(42px, 5.2vw, 58px);

        --collection-fold-offset: calc(var(--collection-fold-left) - var(--collection-photo-left));
    }

    .about-intro__title {
        font-size: clamp(82px, 12vw, 138px);
    }

    .about-intro__text {
        font-size: clamp(22px, 2.5vw, 34px);
    }
}

@media (max-width: 980px) {
    .about-category__number {
        top: -28px;
        font-size: clamp(86px, 16vw, 136px);
    }

    .about-category__gallery,
    .about-category__gallery--oil-set {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 12px;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .about-category__gallery::-webkit-scrollbar,
    .about-category__gallery--oil-set::-webkit-scrollbar {
        display: none;
    }

    .about-category__gallery .about-category__image,
    .about-category__gallery .about-category__image:first-child,
    .about-category__gallery .about-category__image--mobile-extra {
        display: block;
        flex: 0 0 calc((100% - 16px) / 2);
        width: auto;
        height: auto;
        min-width: 0;
        aspect-ratio: 4 / 5;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .about-category__gallery .about-category__image img,
    .about-category__gallery .about-category__image:first-child img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-category__gallery .about-category__image--contain img,
    .about-category__gallery .about-category__image--contain:first-child img {
        object-fit: contain;
        padding: clamp(14px, 2vw, 22px);
    }

    .about-category__image:hover img {
        transform: none;
    }

    .about-category__actions,
    .about-category__actions--left,
    .about-category__actions--right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 18px;
        margin: 18px 0 0;
    }

    .about-category__catalog-link {
        width: auto;
        min-width: min(260px, 58vw);
        min-height: 58px;
        padding: 0 24px;
        border-width: 2px;
        font-size: 15px;
        letter-spacing: -0.025em;
        white-space: nowrap;
    }

    .about-category__arrows {
        display: flex;
        flex: 0 0 auto;
        justify-content: flex-end;
        gap: 12px;
    }

    .about-category__arrow {
        width: 58px;
        height: 58px;
        border-width: 2px;
    }

    .about-category__arrow-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        margin-bottom: 70px;
    }

    .about-hero__media {
        display: block;
        width: 100%;
        height: auto;
        overflow: hidden;
        border: 1px solid #000;
        background: #fff;
    }

    .about-hero__image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }

    .about-intro {
        padding-bottom: 80px;
    }

    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro__title {
        font-size: clamp(72px, 19vw, 132px);
    }

    .about-intro__content,
    .about-intro__text {
        max-width: 760px;
    }

    .about-intro__text {
        font-size: clamp(22px, 5vw, 34px);
    }

    .about-marquee {
        margin-top: 46px;
    }

    .about-manifesto {
        min-height: 680px;
        margin-bottom: 104px;
    }

    .about-manifesto__ticker {
        height: 560px;
    }

    .about-manifesto__track {
        --manifesto-gap: clamp(30px, 6vw, 58px);
    }

    .about-manifesto__phrase {
        padding: 18px 28px;
        font-size: clamp(40px, 9vw, 70px);
        line-height: 1.06;
        letter-spacing: -0.025em;
    }

    .about-categories {
        gap: 88px;
        padding-bottom: 104px;
    }

    .about-stats {
        min-height: auto;
        padding-bottom: 94px;
        margin-bottom: 104px;
    }

    .about-stats__grid {
        grid-template-columns: 1fr;
        gap: 54px;
        padding-top: 92px;
    }

    .about-stat--one,
    .about-stat--two,
    .about-stat--three {
        grid-column: auto;
        padding-top: 0;
    }

    .about-stat__inner {
        max-width: 620px;
    }

    .about-stats__word--deodorants {
        left: 0;
        font-size: clamp(58px, 12vw, 104px);
    }

    .about-value--offset {
        margin-left: 72px;
    }

    .about-value:hover .about-value__marker,
    .about-value:focus-within .about-value__marker {
        transform: none;
    }

    .about-value:hover .about-value__body,
    .about-value:focus-within .about-value__body {
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .about-collection {
        --collection-container: 100%;
        --collection-album-size: min(92vw, 520px);

        --collection-paper-padding-y: clamp(22px, 6vw, 34px);
        --collection-paper-padding-right: clamp(18px, 5vw, 28px);

        --collection-photo-left: clamp(32px, 8.2vw, 46px);
        --collection-binding-width: clamp(68px, 17vw, 88px);
        --collection-stitch-left: clamp(22px, 5.8vw, 32px);
        --collection-fold-left: clamp(52px, 13.2vw, 68px);
        --collection-fold-width: clamp(36px, 8.6vw, 50px);

        --collection-fold-offset: calc(var(--collection-fold-left) - var(--collection-photo-left));

        padding: clamp(68px, 13vw, 96px) 0;
    }

    .about-collection__header {
        margin-bottom: 36px;
    }

    .about-collection__title {
        font-size: clamp(42px, 13vw, 64px);
        line-height: 0.96;
        letter-spacing: -0.065em;
    }

    .about-collection__stage {
        padding-left: 16px;
        padding-right: 16px;
        overflow: visible;
    }

    .about-collection__book {
        max-width: calc(100vw - 32px);
    }

    .about-collection__stitches {
        top: 24px;
        bottom: 24px;
    }

    .about-collection__stitch {
        width: 5px;
        height: 5px;
    }

    .about-collection__nav {
        margin-top: 38px;
        gap: 22px;
    }

    .about-collection__button {
        width: 44px;
        height: 44px;
    }

    .about-collection__button-icon {
        width: 23px;
        height: 23px;
    }

    .about-collection__photo-frame::before,
    .about-collection__flip-photo::before {
        left: calc(var(--collection-fold-offset) - 12px);
        width: 28px;
        opacity: 0.36;
    }

    .about-collection__photo-frame::after,
    .about-collection__flip-photo::after {
        width: 5px;
        opacity: 0.52;
    }

    .about-collection__binding::after {
        right: -14px;
        width: 44px;
    }

    .about-collection__fold {
        opacity: 0.34;
    }

    .about-collection__fold::after {
        width: 5px;
        opacity: 0.42;
    }

    .about-collection__spine-title {
        display: none;
    }

    .about-collection__flip-back-spine {
        left: calc(var(--collection-binding-width) - var(--collection-fold-left) + clamp(18px, 5vw, 30px));
        width: clamp(42px, 11vw, 58px);
    }

    .about-collection__flip-back-brand {
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .about-collection__flip-back-title {
        right: 22px;
        bottom: 22px;
        max-width: 52%;
        font-size: clamp(16px, 5vw, 24px);
        opacity: 0.72;
    }
}

@media (max-width: 720px) {
    .about-hero {
        margin-top: 0;
        margin-bottom: 52px;
    }

    .about-hero__media {
        display: block;
        width: 100%;
        height: auto;
        overflow: hidden;
        border: 1px solid #000;
        background: #fff;
    }

    .about-hero__image {
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        margin-left: 0;
        object-fit: contain;
        object-position: center center;
    }

    .about-intro {
        padding-bottom: 68px;
    }

    .about-intro__title {
        font-size: clamp(58px, 18.5vw, 94px);
        letter-spacing: -0.085em;
    }

    .about-intro__kicker {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .about-intro__text {
        font-size: clamp(20px, 5.6vw, 28px);
        line-height: 1.46;
    }

    .about-marquee {
        border-width: 1px;
        padding: 14px 0;
    }

    .about-marquee__track {
        gap: 34px;
        animation-duration: 24s;
    }

    .about-marquee__line {
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .about-manifesto {
        min-height: clamp(620px, 150vw, 760px);
        margin-bottom: 82px;
    }

    .about-manifesto__ticker {
        height: clamp(500px, 126vw, 640px);
    }

    .about-manifesto__track {
        --manifesto-gap: clamp(26px, 7vw, 46px);
    }

    .about-manifesto__phrase {
        padding: 16px 20px;
        font-size: clamp(34px, 11vw, 52px);
        line-height: 1.08;
        letter-spacing: -0.02em;
    }

    .about-categories {
        gap: 76px;
        padding-bottom: 86px;
    }

    .about-category__number {
        top: -24px;
        font-size: clamp(88px, 26vw, 128px);
    }

    .about-category--left .about-category__number,
    .about-category--right .about-category__number {
        left: 0;
        right: auto;
    }

    .about-category__head,
    .about-category--right .about-category__head {
        margin-bottom: 18px;
        text-align: left;
    }

    .about-category__title,
    .about-category:nth-child(2) .about-category__title {
        font-size: clamp(30px, 9vw, 44px);
        line-height: 1.02;
    }

    .about-category__gallery,
    .about-category__gallery--oil-set {
        gap: 12px;
        padding-bottom: 10px;
    }

    .about-category__gallery .about-category__image,
    .about-category__gallery .about-category__image:first-child,
    .about-category__gallery .about-category__image--mobile-extra {
        flex-basis: min(82vw, 360px);
        aspect-ratio: 4 / 5.15;
    }

    .about-category__gallery .about-category__image--contain img,
    .about-category__gallery .about-category__image--contain:first-child img {
        padding: 14px;
    }

    .about-category__actions,
    .about-category__actions--left,
    .about-category__actions--right {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
        gap: 12px;
        margin-top: 14px;
    }

    .about-category__catalog-link {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        padding: 0 16px;
        font-size: 13px;
    }

    .about-category__arrows {
        align-items: stretch;
        gap: 8px;
    }

    .about-category__arrow {
        width: 54px;
        height: 54px;
    }

    .about-category__arrow-icon {
        width: 24px;
        height: 24px;
    }

    .about-stats {
        margin-bottom: 84px;
    }

    .about-stats__word {
        color: rgba(0, 0, 0, 0.07);
    }

    .about-stats__word--parfum {
        font-size: clamp(76px, 22vw, 128px);
    }

    .about-stats__word--deodorants {
        top: 210px;
        left: 0;
        font-size: clamp(42px, 11.5vw, 76px);
        letter-spacing: -0.03em;
    }

    .about-stats__word--sets {
        right: 0;
        font-size: clamp(54px, 15vw, 92px);
    }

    .about-stats__word--oils {
        left: 24px;
        font-size: clamp(48px, 14vw, 84px);
    }

    .about-stat:hover .about-stat__inner,
    .about-stat:focus-within .about-stat__inner {
        transform: none;
    }

    .about-values__title {
        margin-bottom: 62px;
        font-size: clamp(44px, 13vw, 66px);
    }

    .about-values__timeline {
        gap: 62px;
    }

    .about-values__timeline::before {
        left: 26px;
    }

    .about-value,
    .about-value--offset {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 24px;
        margin-left: 0;
    }

    .about-value__marker {
        width: 52px;
        height: 52px;
    }

    .about-value:hover .about-value__marker,
    .about-value:focus-within .about-value__marker {
        transform: none;
    }

    .about-value:hover .about-value__number,
    .about-value:focus-within .about-value__number {
        font-size: 14px;
    }

    .about-value:hover .about-value__body,
    .about-value:focus-within .about-value__body {
        padding-left: 0;
    }

    .about-value__title {
        font-size: clamp(26px, 8vw, 36px);
    }

    .about-value:hover .about-value__text,
    .about-value:focus-within .about-value__text {
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .about-hero {
        margin-top: 0;
        margin-bottom: 46px;
    }

    .about-hero__media {
        display: block;
        width: 100%;
        height: calc(100svh - 135px);
        min-height: 520px;
        max-height: 720px;
        overflow: hidden;
        border: 1px solid #000;
        background: #fff;
    }

    .about-hero__image {
        display: block;
        width: 100%;
        max-width: none;
        height: 100%;
        margin-left: 0;
        object-fit: cover;
        object-position: center center;
    }

    .about-category__empty {
        flex: 0 0 100%;
        width: 100%;
        padding: 44px 24px;
    }
}

@media (max-width: 430px) {
    .about-hero {
        margin-top: 0;
        margin-bottom: 44px;
    }

    .about-hero__media {
        height: calc(100svh - 128px);
        min-height: 500px;
        max-height: 700px;
        border: 1px solid #000;
    }

    .about-hero__image {
        width: 100%;
        max-width: none;
        height: 100%;
        margin-left: 0;
        object-fit: cover;
        object-position: center center;
    }

    .about-intro__title {
        font-size: clamp(52px, 18vw, 74px);
    }

    .about-intro__text {
        font-size: 20px;
    }

    .about-manifesto {
        min-height: clamp(600px, 160vw, 720px);
    }

    .about-manifesto__ticker {
        height: clamp(470px, 132vw, 610px);
    }

    .about-manifesto__track {
        --manifesto-gap: 28px;
    }

    .about-manifesto__phrase {
        padding: 14px 16px;
        font-size: clamp(30px, 10.5vw, 44px);
        line-height: 1.1;
        letter-spacing: -0.015em;
    }

    .about-category__number {
        top: -18px;
        font-size: clamp(66px, 25vw, 96px);
    }

    .about-category__head,
    .about-category--right .about-category__head {
        margin-bottom: 14px;
    }

    .about-category__title,
    .about-category:nth-child(2) .about-category__title {
        font-size: clamp(27px, 8.8vw, 36px);
    }

    .about-category:nth-child(2) .about-category__title {
        font-size: clamp(24px, 7.8vw, 32px);
    }

    .about-category__gallery,
    .about-category__gallery--oil-set {
        gap: 10px;
    }

    .about-category__gallery .about-category__image,
    .about-category__gallery .about-category__image:first-child,
    .about-category__gallery .about-category__image--mobile-extra {
        flex-basis: 84vw;
        aspect-ratio: 1 / 1.18;
    }

    .about-category__actions,
    .about-category__actions--left,
    .about-category__actions--right {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .about-category__catalog-link {
        min-height: 50px;
        padding: 0 12px;
        font-size: 12px;
    }

    .about-category__arrow {
        width: 50px;
        height: 50px;
    }

    .about-category__arrow-icon {
        width: 21px;
        height: 21px;
    }

    .about-collection {
        --collection-album-size: calc(100vw - 24px);
        --collection-paper-padding-y: 18px;
        --collection-paper-padding-right: 16px;

        --collection-photo-left: 26px;
        --collection-binding-width: 60px;
        --collection-stitch-left: 20px;
        --collection-fold-left: 44px;
        --collection-fold-width: 36px;

        --collection-fold-offset: calc(var(--collection-fold-left) - var(--collection-photo-left));
    }

    .about-collection__photo-frame::before,
    .about-collection__flip-photo::before {
        left: calc(var(--collection-fold-offset) - 10px);
        width: 24px;
        opacity: 0.32;
    }

    .about-collection__photo-frame::after,
    .about-collection__flip-photo::after {
        width: 4px;
        opacity: 0.46;
    }

    .about-collection__binding::after {
        right: -12px;
        width: 38px;
    }

    .about-collection__fold {
        opacity: 0.3;
    }

    .about-collection__flip-back-spine {
        left: calc(var(--collection-binding-width) - var(--collection-fold-left) + 18px);
        width: 42px;
    }

    .about-collection__flip-back-title {
        display: none;
    }

    .about-collection__stage {
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-collection__nav {
        margin-top: 34px;
        gap: 18px;
    }

    .about-collection__button {
        width: 42px;
        height: 42px;
    }

    .about-collection__button-icon {
        width: 22px;
        height: 22px;
    }

    .about-collection__counter {
        min-width: 52px;
        font-size: 14px;
    }

    .about-collection__stitches {
        top: 20px;
        bottom: 20px;
    }

    .about-collection__stitch {
        width: 4px;
        height: 4px;
    }

    .about-stats__grid {
        padding-top: 70px;
    }

    .about-stat__value {
        font-size: 60px;
    }

    .about-stat__label {
        font-size: 13px;
    }

    .about-values__timeline::before {
        display: none;
    }

    .about-value,
    .about-value--offset {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (hover: none) {
    .about-category__image:hover img {
        transform: none;
    }

    .about-stat:hover .about-stat__inner,
    .about-stat:focus-within .about-stat__inner {
        transform: none;
    }

    .about-value:hover .about-value__marker,
    .about-value:focus-within .about-value__marker {
        transform: none;
    }

    .about-value:hover .about-value__body,
    .about-value:focus-within .about-value__body {
        padding-left: 0;
    }

    .about-manifesto__track {
        animation-play-state: running;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-marquee__track,
    .about-manifesto__track,
    .about-category__image img,
    .about-category__arrow,
    .about-category__catalog-link,
    .about-stat__inner,
    .about-stat__inner::before,
    .about-stat__line,
    .about-stat__extra,
    .about-value__marker,
    .about-value__number,
    .about-value__body,
    .about-value__text,
    .about-value__extra,
    .about-collection__page-image,
    .about-collection__flip,
    .about-collection__flip::before,
    .about-collection__flip::after,
    .about-collection__fold,
    .about-collection__button {
        animation: none !important;
        transition: none !important;
    }

    .about-category__gallery,
    .about-category__gallery--oil-set {
        scroll-behavior: auto;
    }
}

/* =========================================================
   FINAL CATALOG GALLERY OVERRIDES
   Desktop: 3 cards
   Tablet: 2 cards
   Mobile: 1 card
   ========================================================= */

.about-category__gallery,
.about-category__gallery--oil-set {
    --about-gallery-gap: clamp(18px, 2vw, 30px);

    position: relative;
    z-index: 1;
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: var(--about-gallery-gap);

    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;

    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.about-category__gallery::-webkit-scrollbar,
.about-category__gallery--oil-set::-webkit-scrollbar {
    display: none;
}

.about-category__gallery > .about-category__image,
.about-category__gallery--oil-set > .about-category__image {
    display: block;
    flex: 0 0 calc((100% - (var(--about-gallery-gap) * 2)) / 3);
    width: calc((100% - (var(--about-gallery-gap) * 2)) / 3);
    min-width: 0;
    max-width: none;
    height: auto;
    margin: 0;
    aspect-ratio: 3 / 4;

    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.about-category__product-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.about-category__gallery .about-category__image--catalog,
.about-category__gallery--oil-set .about-category__image--catalog {
    overflow: hidden;
    background: #fff;
}

.about-category__gallery .about-category__image--catalog img,
.about-category__gallery--oil-set .about-category__image--catalog img {
    display: block;
    width: 100%;
    height: 100%;
    padding: clamp(12px, 1.5vw, 22px);
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.about-category__gallery > .about-category__empty,
.about-category__gallery--oil-set > .about-category__empty {
    flex: 0 0 100%;
    width: 100%;
    grid-column: auto;
    margin: 0;
    padding: 60px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f7f7f7;
    color: rgba(17, 17, 17, 0.62);
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
}

.about-collection__page-image,
.about-collection__flip-image {
    object-fit: contain;
    object-position: center;
    background: #fff;
}

@media (min-width: 601px) and (max-width: 980px) {
    .about-category__gallery,
    .about-category__gallery--oil-set {
        --about-gallery-gap: 16px;
    }

    .about-category__gallery > .about-category__image,
    .about-category__gallery--oil-set > .about-category__image {
        flex-basis: calc((100% - var(--about-gallery-gap)) / 2);
        width: calc((100% - var(--about-gallery-gap)) / 2);
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 600px) {
    .about-category__gallery,
    .about-category__gallery--oil-set {
        --about-gallery-gap: 12px;
        padding-bottom: 10px;
    }

    .about-category__gallery > .about-category__image,
    .about-category__gallery--oil-set > .about-category__image {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        aspect-ratio: 4 / 5.15;
    }

    .about-category__gallery > .about-category__empty,
    .about-category__gallery--oil-set > .about-category__empty {
        padding: 44px 24px;
    }
}
/* July 2026: first about block rebuilt as one-swipe video hero. */
.about-manifesto--hero {
    height: clamp(
        520px,
        calc(100svh - var(--site-header-offset, 0px) - 40px),
        820px
    );
    min-height: 0;
    margin: 0 0 clamp(24px, 3.4vw, 42px);
    border: 1px solid #000;
    background: #000;
    isolation: isolate;
}

.about-manifesto--hero .about-manifesto__media,
.about-manifesto--hero .about-manifesto__content {
    min-height: 0;
    height: 100%;
}

.about-manifesto--hero .about-manifesto__video {
    opacity: 0.96;
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0) scale(1.01);
}

.about-manifesto--hero .about-manifesto__overlay {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.48) 48%,
            rgba(0, 0, 0, 0.78) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.34) 32%,
            rgba(0, 0, 0, 0.36) 66%,
            rgba(0, 0, 0, 0.82) 100%
        );
}

.about-manifesto--hero .about-manifesto__ticker {
    height: 100%;
    min-height: 0;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 16%,
        #000 84%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 16%,
        #000 84%,
        transparent 100%
    );
}

.about-manifesto--hero .about-manifesto__track {
    --manifesto-gap: clamp(28px, 5.4vw, 74px);

    min-height: max-content;
    animation-duration: 52s;
    animation-play-state: running !important;
}

.about-manifesto--hero .about-manifesto__ticker:hover .about-manifesto__track,
.about-manifesto--hero .about-manifesto__ticker:focus-within .about-manifesto__track {
    animation-play-state: running !important;
}

.about-manifesto--hero .about-manifesto__phrase {
    padding: clamp(16px, 2.2vw, 32px) clamp(18px, 5vw, 72px);
    font-size: clamp(46px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-brands {
    display: grid;
    grid-template-columns: minmax(170px, 0.26fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    margin: 0 0 clamp(64px, 7vw, 96px);
    border: 1px solid #000;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.035), transparent 36%),
        #fff;
}

.about-brands__head {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
    border-right: 1px solid #000;
}

.about-brands__label {
    display: inline-flex;
    width: max-content;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.56);
}

.about-brands__text {
    max-width: 260px;
    margin: 0;
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.32;
    font-weight: 300;
    letter-spacing: -0.045em;
    color: #000;
}

.about-brands .about-marquee {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 116px;
    margin: 0;
    border: 0;
    padding: 0;
    overflow: hidden;
}

.about-brands .about-marquee::before,
.about-brands .about-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(34px, 6vw, 94px);
    pointer-events: none;
}

.about-brands .about-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.about-brands .about-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.about-brands .about-marquee__track {
    gap: clamp(36px, 4vw, 58px);
    animation-duration: 34s;
    animation-play-state: running !important;
}

.about-brands .about-marquee:hover .about-marquee__track,
.about-brands .about-marquee:focus-within .about-marquee__track {
    animation-play-state: running !important;
}

.about-brands .about-marquee__line {
    font-size: clamp(15px, 1.55vw, 22px);
    font-weight: 300;
    letter-spacing: 0.24em;
    color: rgba(0, 0, 0, 0.78);
}

.about-intro {
    padding: 0 0 clamp(72px, 8vw, 112px);
}

@media (max-width: 900px) {
    .about-manifesto--hero {
        height: clamp(
            540px,
            calc(100svh - var(--site-header-offset, 0px) - 32px),
            720px
        );
        margin-bottom: 28px;
    }

    .about-brands {
        grid-template-columns: 1fr;
        margin-bottom: 74px;
    }

    .about-brands__head {
        border-right: 0;
        border-bottom: 1px solid #000;
    }

    .about-brands__text {
        max-width: 620px;
    }

    .about-brands .about-marquee {
        min-height: 92px;
    }
}

@media (max-width: 520px) {
    .about-manifesto--hero {
        height: clamp(
            500px,
            calc(100svh - var(--site-header-offset, 0px) - 24px),
            660px
        );
        margin-bottom: 22px;
    }

    .about-manifesto--hero .about-manifesto__track {
        --manifesto-gap: 28px;
        animation-duration: 48s;
    }

    .about-manifesto--hero .about-manifesto__phrase {
        padding: 14px 16px;
        font-size: clamp(34px, 12vw, 54px);
        letter-spacing: -0.025em;
    }

    .about-brands {
        margin-bottom: 62px;
    }

    .about-brands__head {
        padding: 22px 20px;
    }

    .about-brands .about-marquee {
        min-height: 78px;
    }

    .about-brands .about-marquee__track {
        animation-duration: 28s;
    }

    .about-brands .about-marquee__line {
        font-size: 13px;
        letter-spacing: 0.18em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-brands .about-marquee__track,
    .about-manifesto--hero .about-manifesto__track {
        animation: none !important;
        transform: none !important;
    }
}

/* July 2026 v2: full-bleed one-swipe about video + two-line marquee. */
.about-manifesto--hero {
    width: 100vw;
    height: calc(100svh - var(--site-header-offset, 0px));
    min-height: calc(100svh - var(--site-header-offset, 0px));
    max-height: none;
    margin-top: -40px;
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    margin-left: calc(50% - 50vw);
    border: 0;
}

.about-manifesto--hero .about-manifesto__track {
    animation-duration: 52s;
    animation-play-state: running !important;
}

.about-manifesto--hero .about-manifesto__ticker:hover .about-manifesto__track,
.about-manifesto--hero .about-manifesto__ticker:focus-within .about-manifesto__track {
    animation-duration: 108s;
    animation-play-state: running !important;
}

.marquee-block {
    width: 100vw;
    margin-top: 0;
    margin-right: calc(50% - 50vw);
    margin-bottom: clamp(64px, 7vw, 96px);
    margin-left: calc(50% - 50vw);
    user-select: none;
    -webkit-user-select: none;
}

.marquee-track {
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.brands-group,
.perfumes-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.track-black {
    background: #000;
    padding: 20px 0;
}

.track-black .marquee-inner,
.track-black .brands-group {
    gap: 88px;
}

.brand-name {
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: #fff;
}

.track-white {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.perfume-unit {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 0 36px;
}

.perfume-title {
    font-size: 15px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.75);
}

.perfume-by {
    font-size: 9px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(0, 0, 0, 0.35);
}

.perfume-dot {
    padding: 0 8px;
    font-size: 4px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.2);
}

@keyframes mq-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

@keyframes mq-right {
    from {
        transform: translateX(-33.333%);
    }

    to {
        transform: translateX(0);
    }
}

.mq-left {
    animation-name: mq-left;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.mq-right {
    animation-name: mq-right;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.mq-fast {
    animation-duration: 20s;
}

.mq-slow {
    animation-duration: 32s;
}

@media (max-width: 900px) {
    .about-manifesto--hero {
        height: calc(100svh - var(--site-header-offset, 0px));
        min-height: calc(100svh - var(--site-header-offset, 0px));
        margin-top: -40px;
        margin-bottom: 0;
    }

    .about-manifesto--hero .about-manifesto__track {
        animation-duration: 50s;
    }

    .about-manifesto--hero .about-manifesto__ticker:hover .about-manifesto__track,
    .about-manifesto--hero .about-manifesto__ticker:focus-within .about-manifesto__track {
        animation-duration: 98s;
    }

    .track-black {
        padding: 17px 0;
    }

    .track-black .marquee-inner,
    .track-black .brands-group {
        gap: 58px;
    }

    .brand-name {
        font-size: clamp(36px, 8vw, 52px);
    }

    .perfume-unit {
        padding: 0 26px;
    }
}

@media (max-width: 520px) {
    .about-manifesto--hero .about-manifesto__track {
        animation-duration: 48s;
    }

    .about-manifesto--hero .about-manifesto__ticker:hover .about-manifesto__track,
    .about-manifesto--hero .about-manifesto__ticker:focus-within .about-manifesto__track {
        animation-duration: 90s;
    }

    .about-manifesto--hero .about-manifesto__phrase {
        padding: 14px 16px;
        font-size: clamp(34px, 12vw, 54px);
        letter-spacing: -0.025em;
    }

    .marquee-block {
        margin-bottom: 62px;
    }

    .track-black {
        padding: 15px 0;
    }

    .track-black .marquee-inner,
    .track-black .brands-group {
        gap: 42px;
    }

    .brand-name {
        font-size: 34px;
    }

    .track-white {
        padding: 14px 0;
    }

    .perfume-unit {
        gap: 5px;
        padding: 0 20px;
    }

    .perfume-title {
        font-size: 13px;
    }

    .perfume-by {
        font-size: 8px;
        letter-spacing: 0.24em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mq-left,
    .mq-right,
    .about-manifesto--hero .about-manifesto__track {
        animation: none !important;
        transform: none !important;
    }
}

/* July 2026 v3: JS-driven manifesto motion so hover slowdown never jumps. */
.about-manifesto--hero .about-manifesto__track {
    animation: none !important;
    transform: translate3d(0, 0, 0);
}

.about-manifesto--hero .about-manifesto__ticker:hover .about-manifesto__track,
.about-manifesto--hero .about-manifesto__ticker:focus-within .about-manifesto__track {
    animation: none !important;
}


/* July 2026 v4: JS-driven seamless marquee. CSS animation stays only as fallback before JS initializes. */
.marquee-block--js .marquee-inner {
    animation: none !important;
    transform: translate3d(0, 0, 0);
}

.marquee-block--js .marquee-track {
    transform: translateZ(0);
}

.marquee-block--js .marquee-inner {
    backface-visibility: hidden;
}

.marquee-block--js .marquee-track:hover .marquee-inner,
.marquee-block--js .marquee-track:focus-within .marquee-inner {
    animation: none !important;
}


/* July 2026 v5: calmer hero ticker and slower seamless brand lines. */
.about-manifesto--hero .about-manifesto__ticker {
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 18%,
        #000 38%,
        #000 62%,
        transparent 82%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 18%,
        #000 38%,
        #000 62%,
        transparent 82%,
        transparent 100%
    );
}

.about-manifesto--hero .about-manifesto__track {
    --manifesto-gap: clamp(112px, 13vw, 220px);
}

.about-manifesto--hero .about-manifesto__phrase {
    max-width: min(1180px, 92vw);
    text-wrap: balance;
}

.track-black .marquee-inner,
.track-black .brands-group {
    gap: clamp(76px, 7vw, 128px);
}

.brand-name {
    font-size: clamp(38px, 4.6vw, 56px);
}

.perfume-unit {
    padding-inline: clamp(34px, 4.2vw, 58px);
}

.mq-fast {
    animation-duration: 96s;
}

.mq-slow {
    animation-duration: 132s;
}

.marquee-track:hover,
.marquee-track:focus-within {
    cursor: default;
}

@media (max-width: 900px) {
    .about-manifesto--hero .about-manifesto__track {
        --manifesto-gap: clamp(96px, 17vw, 170px);
    }

    .about-manifesto--hero .about-manifesto__ticker {
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 15%,
            #000 39%,
            #000 61%,
            transparent 85%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 15%,
            #000 39%,
            #000 61%,
            transparent 85%,
            transparent 100%
        );
    }

    .track-black .marquee-inner,
    .track-black .brands-group {
        gap: clamp(60px, 10vw, 96px);
    }
}

@media (max-width: 520px) {
    .about-manifesto--hero .about-manifesto__track {
        --manifesto-gap: clamp(82px, 25vw, 118px);
    }

    .about-manifesto--hero .about-manifesto__phrase {
        max-width: 86vw;
        font-size: clamp(31px, 10.8vw, 48px);
        line-height: 1.05;
    }

    .track-black .marquee-inner,
    .track-black .brands-group {
        gap: 58px;
    }

    .brand-name {
        font-size: 32px;
    }

    .perfume-unit {
        padding-inline: 28px;
    }
}

/* July 2026 v6: denser readable hero phrases and moderately faster motion. */
.about-manifesto--hero .about-manifesto__ticker {
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 14%,
        #000 86%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 14%,
        #000 86%,
        transparent 100%
    );
}

.about-manifesto--hero .about-manifesto__track {
    --manifesto-gap: clamp(46px, 6vw, 88px);
}

.about-manifesto--hero .about-manifesto__phrase {
    max-width: min(1160px, 90vw);
}

.mq-fast {
    animation-duration: 78s;
}

.mq-slow {
    animation-duration: 106s;
}

@media (max-width: 900px) {
    .about-manifesto--hero .about-manifesto__track {
        --manifesto-gap: clamp(40px, 9vw, 72px);
    }
}

@media (max-width: 520px) {
    .about-manifesto--hero .about-manifesto__track {
        --manifesto-gap: clamp(34px, 11vw, 54px);
    }

    .about-manifesto--hero .about-manifesto__phrase {
        max-width: 88vw;
        font-size: clamp(32px, 11.2vw, 50px);
        line-height: 1.06;
    }

    .mq-fast {
        animation-duration: 68s;
    }

    .mq-slow {
        animation-duration: 94s;
    }
}

/* July 2026 v7: three readable video lanes + faster seamless lines. */
.about-manifesto--hero .about-manifesto__content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.about-manifesto__ticker--lanes {
    display: grid;
    align-content: center;
    width: 100%;
    height: 100%;
    gap: clamp(42px, 8vh, 86px);
    padding: clamp(76px, 10vh, 118px) 0;
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
}

.about-manifesto__lane {
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: translateZ(0);
}

.about-manifesto__lane-inner {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.about-manifesto__lane-group {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(52px, 7.4vw, 118px);
    padding-right: clamp(52px, 7.4vw, 118px);
}

.about-manifesto__lane-phrase {
    flex: 0 0 auto;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(44px, 6.2vw, 92px);
    line-height: 0.98;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.68);
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.34);
}

.about-manifesto__lane--top {
    opacity: 0.48;
}

.about-manifesto__lane--center {
    opacity: 0.96;
}

.about-manifesto__lane--center .about-manifesto__lane-phrase {
    font-size: clamp(52px, 7.4vw, 112px);
    color: rgba(255, 255, 255, 0.94);
}

.about-manifesto__lane--bottom {
    opacity: 0.58;
}

.about-manifesto__lane--bottom .about-manifesto__lane-phrase {
    font-size: clamp(40px, 5.4vw, 78px);
}

.mq-fast {
    animation-duration: 34s;
}

.mq-slow {
    animation-duration: 48s;
}

@media (max-width: 900px) {
    .about-manifesto__ticker--lanes {
        gap: clamp(36px, 7vh, 68px);
        padding-top: clamp(66px, 9vh, 96px);
        padding-bottom: clamp(66px, 9vh, 96px);
    }

    .about-manifesto__lane-group {
        gap: clamp(42px, 9vw, 88px);
        padding-right: clamp(42px, 9vw, 88px);
    }

    .about-manifesto__lane-phrase {
        font-size: clamp(38px, 8vw, 76px);
    }

    .about-manifesto__lane--center .about-manifesto__lane-phrase {
        font-size: clamp(44px, 9vw, 88px);
    }

    .about-manifesto__lane--bottom .about-manifesto__lane-phrase {
        font-size: clamp(34px, 7vw, 66px);
    }
}

@media (max-width: 520px) {
    .about-manifesto__ticker--lanes {
        gap: clamp(34px, 7.2vh, 58px);
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .about-manifesto__lane-group {
        gap: 38px;
        padding-right: 38px;
    }

    .about-manifesto__lane-phrase {
        font-size: clamp(32px, 10vw, 48px);
        letter-spacing: -0.03em;
    }

    .about-manifesto__lane--center .about-manifesto__lane-phrase {
        font-size: clamp(38px, 11.5vw, 58px);
    }

    .about-manifesto__lane--bottom .about-manifesto__lane-phrase {
        font-size: clamp(29px, 8.7vw, 42px);
    }

    .mq-fast {
        animation-duration: 30s;
    }

    .mq-slow {
        animation-duration: 42s;
    }
}

/* July 2026 v8: pure video hero, moved manifesto text into the about intro block. */
.about-manifesto--hero .about-manifesto__content,
.about-manifesto--hero .about-manifesto__ticker,
.about-manifesto--hero .about-manifesto__ticker--lanes,
.about-manifesto--hero .about-manifesto__lane {
    display: none !important;
}

.about-manifesto--hero .about-manifesto__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.02) 42%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.about-intro {
    position: relative;
    padding: clamp(72px, 8vw, 122px) 0 clamp(68px, 7vw, 104px);
    overflow: hidden;
}

.about-intro::before {
    content: "";
    position: absolute;
    top: clamp(34px, 5vw, 72px);
    right: 0;
    width: min(34vw, 420px);
    height: 1px;
    background: rgba(0, 0, 0, 0.16);
    pointer-events: none;
}

.about-intro::after {
    content: "2024";
    position: absolute;
    right: -0.08em;
    bottom: clamp(18px, 2.6vw, 38px);
    z-index: 0;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(92px, 16vw, 238px);
    line-height: 0.8;
    font-weight: 300;
    letter-spacing: -0.1em;
    color: rgba(0, 0, 0, 0.035);
    pointer-events: none;
    user-select: none;
}

.about-intro__grid {
    position: relative;
    z-index: 1;
    align-items: start;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: clamp(34px, 5.4vw, 86px);
}

.about-intro__title {
    padding-top: 0.04em;
    white-space: normal;
    font-size: clamp(82px, 12.8vw, 168px);
    line-height: 0.82;
    letter-spacing: -0.1em;
}

.about-intro__content {
    max-width: 760px;
    align-content: start;
    padding: clamp(24px, 3.8vw, 44px) 0 clamp(18px, 2.2vw, 28px);
    border-top: 1px solid #000;
}

.about-intro__kicker {
    margin-bottom: clamp(16px, 2vw, 24px);
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.2;
    letter-spacing: 0.38em;
    color: rgba(0, 0, 0, 0.42);
}

.about-intro__text--lead {
    max-width: 720px;
    font-size: clamp(26px, 3.05vw, 44px);
    line-height: 1.13;
    letter-spacing: -0.07em;
}

.about-intro__statement {
    margin: clamp(22px, 2.6vw, 34px) 0 0;
    max-width: 620px;
    font-size: clamp(15px, 1.35vw, 19px);
    line-height: 1.74;
    font-weight: 300;
    letter-spacing: 0.015em;
    color: rgba(0, 0, 0, 0.58);
}

.about-intro__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(28px, 3.2vw, 44px);
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: rgba(0, 0, 0, 0.16);
}

.about-intro__feature {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: clamp(16px, 1.8vw, 22px);
    background: #fff;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.34;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.62);
    transition: background 0.35s ease, color 0.35s ease;
}

.about-intro__feature:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 1024px) {
    .about-intro {
        padding-top: clamp(62px, 8vw, 92px);
    }

    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: clamp(26px, 5vw, 42px);
    }

    .about-intro__title {
        max-width: 760px;
        font-size: clamp(76px, 17vw, 140px);
    }

    .about-intro__content {
        max-width: none;
        padding-top: clamp(22px, 4vw, 36px);
    }

    .about-intro__text--lead {
        max-width: 820px;
    }

    .about-intro::before {
        width: min(52vw, 420px);
    }
}

@media (max-width: 640px) {
    .about-intro {
        padding: 54px 0 62px;
    }

    .about-intro::before {
        display: none;
    }

    .about-intro::after {
        right: -0.18em;
        bottom: 12px;
        font-size: clamp(86px, 30vw, 132px);
    }

    .about-intro__title {
        font-size: clamp(64px, 20vw, 94px);
        letter-spacing: -0.095em;
    }

    .about-intro__content {
        padding-top: 22px;
    }

    .about-intro__kicker {
        font-size: 11px;
        letter-spacing: 0.32em;
    }

    .about-intro__text--lead {
        font-size: clamp(25px, 8vw, 34px);
        line-height: 1.16;
        letter-spacing: -0.065em;
    }

    .about-intro__statement {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.68;
    }

    .about-intro__features {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .about-intro__feature {
        min-height: 58px;
        padding: 15px 16px;
        font-size: 11px;
        letter-spacing: 0.14em;
    }
}

/* July 2026 v9: static about text moved into the video hero instead of running lines. */
.about-manifesto--hero .about-manifesto__ticker,
.about-manifesto--hero .about-manifesto__ticker--lanes,
.about-manifesto--hero .about-manifesto__lane,
.about-manifesto--hero .about-manifesto__lane-inner {
    display: none !important;
}

.about-manifesto--hero .about-manifesto__content {
    position: relative;
    z-index: 2;
    display: flex !important;
    min-height: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(92px, 12vh, 132px) clamp(24px, 7vw, 104px) clamp(42px, 7vh, 88px);
    overflow: hidden;
}

.about-manifesto--hero .about-manifesto__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.52) 34%,
            rgba(0, 0, 0, 0.18) 68%,
            rgba(0, 0, 0, 0.26) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.08) 42%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

.about-video-copy {
    position: relative;
    width: min(760px, 92vw);
    padding: clamp(24px, 3.6vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.32);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.about-video-copy::before {
    content: "2024";
    position: absolute;
    right: -0.08em;
    bottom: -0.12em;
    z-index: 0;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(92px, 14vw, 190px);
    line-height: 0.76;
    font-weight: 300;
    letter-spacing: -0.1em;
    color: rgba(255, 255, 255, 0.045);
    pointer-events: none;
    user-select: none;
}

.about-video-copy > * {
    position: relative;
    z-index: 1;
}

.about-video-copy__eyebrow {
    margin: 0 0 clamp(10px, 1.4vw, 16px);
    font-size: clamp(11px, 1vw, 14px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
}

.about-video-copy__title {
    margin: 0 0 clamp(18px, 2.4vw, 28px);
    max-width: 640px;
    font-family: "Inter", "Manrope", Arial, sans-serif;
    font-size: clamp(58px, 7.4vw, 116px);
    line-height: 0.86;
    font-weight: 300;
    letter-spacing: -0.09em;
    color: #fff;
}

.about-video-copy__lead {
    margin: 0;
    max-width: 680px;
    font-size: clamp(23px, 2.65vw, 38px);
    line-height: 1.13;
    font-weight: 300;
    letter-spacing: -0.055em;
    color: rgba(255, 255, 255, 0.94);
    text-wrap: balance;
}

.about-video-copy__text {
    margin: clamp(18px, 2.1vw, 28px) 0 0;
    max-width: 610px;
    font-size: clamp(14px, 1.24vw, 18px);
    line-height: 1.68;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.66);
}

.about-video-copy__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: clamp(22px, 2.6vw, 34px) 0 0;
}

.about-video-copy__feature {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(10px, 0.86vw, 12px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .about-manifesto--hero .about-manifesto__content {
        align-items: flex-end;
        padding: clamp(88px, 11vh, 116px) 6vw clamp(34px, 6vh, 68px);
    }

    .about-video-copy {
        width: min(820px, 100%);
    }

    .about-video-copy__title {
        font-size: clamp(56px, 11vw, 104px);
    }

    .about-video-copy__lead {
        max-width: 720px;
        font-size: clamp(24px, 4.6vw, 38px);
    }
}

@media (max-width: 640px) {
    .about-manifesto--hero .about-manifesto__content {
        padding: 86px 16px 24px;
    }

    .about-manifesto--hero .about-manifesto__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.18) 0%,
                rgba(0, 0, 0, 0.12) 26%,
                rgba(0, 0, 0, 0.78) 100%
            ),
            rgba(0, 0, 0, 0.16);
    }

    .about-video-copy {
        width: 100%;
        padding: 22px 18px 20px;
        border-color: rgba(255, 255, 255, 0.13);
        background: rgba(0, 0, 0, 0.42);
    }

    .about-video-copy::before {
        right: -0.18em;
        bottom: 0.02em;
        font-size: clamp(82px, 28vw, 128px);
    }

    .about-video-copy__eyebrow {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: 0.34em;
    }

    .about-video-copy__title {
        margin-bottom: 16px;
        font-size: clamp(48px, 16vw, 72px);
        letter-spacing: -0.085em;
    }

    .about-video-copy__lead {
        max-width: none;
        font-size: clamp(23px, 7.3vw, 31px);
        line-height: 1.13;
    }

    .about-video-copy__text {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.58;
    }

    .about-video-copy__features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: 18px;
    }

    .about-video-copy__feature {
        min-height: 34px;
        padding: 0 9px;
        font-size: 9px;
        letter-spacing: 0.11em;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .about-video-copy__features {
        grid-template-columns: 1fr;
    }

    .about-video-copy__text {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-video-copy,
    .about-video-copy__feature {
        transition: none !important;
    }
}

/* July 2026 v10: simple video text only, without extra cards, borders or invented blocks. */
.about-manifesto--hero .about-manifesto__content {
    align-items: center !important;
    justify-content: flex-start !important;
    padding: clamp(88px, 12vh, 132px) clamp(22px, 8vw, 118px) clamp(54px, 9vh, 108px) !important;
}

.about-manifesto--hero .about-manifesto__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.74) 0%,
            rgba(0, 0, 0, 0.50) 34%,
            rgba(0, 0, 0, 0.16) 70%,
            rgba(0, 0, 0, 0.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.08) 46%,
            rgba(0, 0, 0, 0.58) 100%
        );
}

.about-video-copy {
    width: min(690px, 88vw) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translateY(clamp(34px, 9vh, 92px));
}

.about-video-copy::before {
    display: none !important;
}

.about-video-copy__eyebrow {
    margin: 0 0 clamp(12px, 1.6vw, 18px) !important;
    font-size: clamp(11px, 1vw, 14px) !important;
    line-height: 1 !important;
    font-weight: 300 !important;
    letter-spacing: 0.38em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

.about-video-copy__title {
    margin: 0 0 clamp(18px, 2.4vw, 30px) !important;
    max-width: none !important;
    font-family: "Inter", "Manrope", Arial, sans-serif !important;
    font-size: clamp(56px, 7vw, 108px) !important;
    line-height: 0.88 !important;
    font-weight: 300 !important;
    letter-spacing: -0.085em !important;
    color: #fff !important;
}

.about-video-copy__lead {
    margin: 0 !important;
    max-width: 640px !important;
    font-size: clamp(22px, 2.4vw, 36px) !important;
    line-height: 1.16 !important;
    font-weight: 300 !important;
    letter-spacing: -0.055em !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-wrap: balance;
}

.about-video-copy__text,
.about-video-copy__features,
.about-video-copy__feature {
    display: none !important;
}

@media (max-width: 1024px) {
    .about-manifesto--hero .about-manifesto__content {
        align-items: flex-end !important;
        padding: clamp(86px, 12vh, 118px) 6vw clamp(64px, 10vh, 104px) !important;
    }

    .about-video-copy {
        width: min(740px, 100%) !important;
        transform: none;
    }

    .about-video-copy__title {
        font-size: clamp(54px, 10vw, 94px) !important;
    }

    .about-video-copy__lead {
        max-width: 680px !important;
        font-size: clamp(24px, 4.3vw, 36px) !important;
    }
}

@media (max-width: 640px) {
    .about-manifesto--hero .about-manifesto__content {
        align-items: flex-end !important;
        padding: 86px 18px 48px !important;
    }

    .about-manifesto--hero .about-manifesto__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.12) 0%,
                rgba(0, 0, 0, 0.12) 30%,
                rgba(0, 0, 0, 0.72) 100%
            ),
            rgba(0, 0, 0, 0.10);
    }

    .about-video-copy {
        width: 100% !important;
        transform: none;
    }

    .about-video-copy__eyebrow {
        margin-bottom: 10px !important;
        font-size: 10px !important;
        letter-spacing: 0.34em !important;
    }

    .about-video-copy__title {
        margin-bottom: 15px !important;
        font-size: clamp(44px, 14vw, 66px) !important;
        letter-spacing: -0.08em !important;
    }

    .about-video-copy__lead {
        max-width: 100% !important;
        font-size: clamp(21px, 6.8vw, 29px) !important;
        line-height: 1.16 !important;
    }
}

@media (max-width: 380px) {
    .about-video-copy__lead {
        font-size: 20px !important;
        line-height: 1.18 !important;
    }
}


/* 20260705: keep the About page typography isolated from header/mobile overrides. */
.about-page,
.about-page * {
    font-family: "Inter", "Manrope", Arial, sans-serif;
}
