.about-hero-slider {
    background: var(--color-white);
}

.container.about-hero-slider__container {
    position: relative;
    width: min(100%, var(--frame-width));
    overflow: hidden;
}

.about-hero-slider__track {
    position: relative;
    height: 760px;
    background: var(--color-black);
}

.about-hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.about-hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.about-hero-slider__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, .62) 100%);
    pointer-events: none;
}

.about-hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: grayscale(1) brightness(.72);
}

.about-hero-slider__slide p {
    position: absolute;
    left: 50%;
    bottom: 58px;
    z-index: 1;
    margin: 0;
    color: var(--color-white);
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: .19em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.about-hero-slider__ui {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px;
    height: var(--slider-bar-height);
    width: min(100% - (var(--mobile-x) * 2), var(--content-width));
    margin: 0 auto;
    color: var(--color-slider-control);
    background: var(--color-white);
}

.about-hero-slider__progress {
    position: relative;
    height: 1px;
    background: var(--color-slider-line);
    cursor: pointer;
}

.about-hero-slider__progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(100% / var(--about-hero-slide-count, 1));
    background: var(--color-black);
    transition: transform var(--transition-base);
}

.about-hero-slider__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 124px;
    justify-content: flex-end;
    font-size: 12px;
    line-height: 1;
    color: var(--color-slider-control);
}

.about-hero-slider__controls button {
    position: relative;
    width: 28px;
    height: 18px;
    border: 0;
    color: currentColor;
    cursor: pointer;
}

.about-hero-slider__controls button::before,
.about-hero-slider__controls button::after {
    content: "";
    position: absolute;
    top: 50%;
    background: currentColor;
    transform: translateY(-50%);
}

.about-hero-slider__controls button::before {
    left: 4px;
    width: 20px;
    height: 1px;
}

.about-hero-slider__controls button::after {
    left: 17px;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.about-hero-slider__controls button:first-child::after {
    left: 4px;
    transform: translateY(-50%) rotate(-135deg);
}
.about-page {
    background: var(--color-black);
    color: var(--color-white);
}

.about-section-title {
    margin: 0;
    color: var(--color-white);
    font-size: var(--h2-size);
    line-height: var(--h2-line);
    font-weight: 700;
    text-transform: uppercase;
}

.about-hero {
    padding: 0 0 38px;
    background: var(--color-white);
}

.about-hero__inner {
    width: min(100%, var(--frame-width));
}

.about-hero__media {
    position: relative;
    margin: 0;
    height: 560px;
    overflow: hidden;
    background: var(--color-black);
}

.about-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, .62) 100%);
    pointer-events: none;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: grayscale(1) brightness(.72);
}

.about-hero__media figcaption {
    position: absolute;
    left: 50%;
    bottom: 58px;
    z-index: 1;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: .19em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.about-story {
    padding: 78px 0;
    background: var(--color-black);
}

.about-story__inner {
    min-height: 525px;
    display: grid;
    grid-template-columns: minmax(0, 754px) 380px;
    grid-template-areas:
    "text founder"
    "quote founder"
    "history-title history-title";
    column-gap: 0;
    justify-content: space-between;
    align-items: start;
}

.about-story__text {
    grid-area: text;
    /* padding-top: 42px; */
    width: 754px;
}

.about-story__text p {
    margin: 0 0 14px;
    color: var(--color-muted);
    font-size: 22px;
    line-height: normal;
    font-weight: 300;
}

.about-story__founder {
    grid-area: founder;
    width: 380px;
    aspect-ratio: 380 / 510;
    margin: 0px 0 0;
    overflow: hidden;
}

.about-story__founder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-story__quote {
    grid-area: quote;
    width: 754px;
    max-width: 100%;
    margin: 43px 0 0;
}

.about-story__quote p {
    margin: 0;
    color: var(--color-white);
    font-size: 40px;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
}

.about-story__quote footer {
    margin-top: 21px;
    color: var(--color-muted);
    font-size: 20px;
    line-height: normal;
    font-weight: 300;
}

.about-story__history-title {
    grid-area: history-title;
    margin: 48px 0 0;
    color: var(--color-white);
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.about-values {
    padding: 0 0 var(--section-y);
    background: var(--color-black);
}

.about-values__inner p {
    max-width: 720px;
    margin: 0;
    color: var(--color-muted);
    font-size: 22px;
    line-height: normal;
    font-weight: 300;
}

.about-history {
    padding: 0 0 120px;
    background: var(--color-black);
    overflow: hidden;
}

.about-history__container {
    position: relative;
    min-height: 837px;
}

.about-history__title {
    position: relative;
    z-index: 2;
    width: max-content;
    margin: 0 auto;
    color: var(--color-white);
    font-size: 40px;
    line-height: normal;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.about-history__counter {
    display: none;
}

.about-history__layout {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 786px;
}

.about-history__timeline {
    --history-circle-size: 835px;
    --history-circle-left: -402px;
    --history-circle-top: 0px;
    position: relative;
    left: 0;
    top: 0;
    flex: 0 0 565px;
    width: 565px;
    min-height: var(--history-circle-size);
}

.about-history__wheel {
    --history-wheel-rotation: 0deg;
    position: relative;
    left: var(--history-circle-left);
    top: var(--history-circle-top);
    width: var(--history-circle-size);
    height: var(--history-circle-size);
    transform: none;
    transform-origin: 50% 50%;
}

.about-history__arc {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--history-circle-size);
    height: var(--history-circle-size);
    border: 2px solid #313131;
    border-radius: 50%;
}

.about-history__dot {
    position: absolute;
    left: var(--dot-x);
    top: var(--dot-y);
    z-index: 1;
    width: 32px;
    height: 32px;
    border: 0;
    padding: 0;
    color: rgba(255, 235, 235, .28);
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: left 680ms cubic-bezier(.22, .61, .36, 1), top 680ms cubic-bezier(.22, .61, .36, 1), color var(--transition-fast);
}

.about-history__dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3a3a3a;
    transform: translate(-50%, -50%);
    transition: background var(--transition-fast), width var(--transition-fast), height var(--transition-fast);
}

.about-history__dot span {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    color: rgba(255, 235, 235, .28);
    font-size: 30px;
    line-height: normal;
    font-weight: 400;
    min-width: 35px;
    text-align: center;
    transform: translate(-50%, -50%) translate(var(--dot-label-x, 32px), var(--dot-label-y, 0)) rotate(var(--dot-label-angle, 90deg));
    transform-origin: center;
    transition: color var(--transition-fast);
}

.about-history__dot:hover::before,
.about-history__dot:focus-visible::before,
.about-history__dot.is-active::before {
    width: 20px;
    height: 20px;
    background: var(--color-white);
}

.about-history__dot:hover span,
.about-history__dot:focus-visible span,
.about-history__dot.is-active span {
    color: var(--color-white);
    padding-left: 15px;
}

.about-history__dot.is-active span {
    font-weight: 700;
}

.about-history__viewport {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 628px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 628px;
    gap: 38px;
    overflow: hidden;
}

.about-history__track {
    display: flex;
    align-items: flex-start;
    transition: transform var(--transition-base), height var(--transition-fast);
    will-change: transform;
}

.about-history__track.is-jump {
    transition: none;
}

.about-history__slide {
    flex: 0 0 100%;
}

.about-history__date {
    display: grid;
    gap: 8px;
}

.about-history__date span {
    display: none;
}

.about-history__date strong {
    color: var(--color-white);
    font-size: 30px;
    line-height: normal;
    font-weight: 900;
}

.about-history__text {
    margin-top: 6px;
}

.about-history__text > p,
.about-history__text blockquote p {
    margin: 0;
    color: var(--color-muted);
    font-size: 20px;
    line-height: normal;
    font-weight: 300;
}

.about-history__text blockquote {
    margin: 16px 0 0;
    padding-left: 0;
    border-left: 0;
}

.about-history__text blockquote footer {
    margin-top: 10px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}

.about-history__controls {
    position: relative;
    display: flex;
    gap: 24px;
}

.about-history__arrow {
    position: relative;
    width: 90px;
    height: 53px;
    border: 1px solid var(--color-white);
    border-radius: 999px;
    color: var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.about-history__arrow::before,
.about-history__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    background: currentColor;
    transform: translateY(-50%);
}

.about-history__arrow::before {
    left: 27px;
    width: 36px;
    height: 1px;
}

.about-history__arrow::after {
    left: 55px;
    width: 9px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.about-history__arrow--prev::before {
    left: 27px;
}

.about-history__arrow--prev::after {
    left: 27px;
    transform: translateY(-50%) rotate(-135deg);
}

.about-history__arrow:hover,
.about-history__arrow:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
}
@media (max-width: 1199px) {
    .about-hero-slider__track {
        height: 520px;
    }

    .about-hero__media {
        height: 520px;
    }
    .about-history__slide {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 40px;
    }
}


@media (max-width: 899px) {
    .about-story__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
      "text"
      "quote"
      "founder"
      "history-title";
        gap: 40px;
    }

    .about-story__text,
    .about-story__founder,
    .about-story__quote,
    .about-story__history-title {
        grid-area: auto;
    }

    .about-story__founder {
        width: min(100%, 380px);
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .about-hero-slider {
        padding-bottom: 0;
        background: var(--color-black);
    }

    .container.about-hero-slider__container {
        width: 100%;
    }

    .about-hero-slider__track {
        height: 480px;
    }

    .about-hero-slider__ui {
        padding-inline: 24px;
    }

    .about-hero {
        padding-bottom: 0;
        background: var(--color-black);
    }

    .about-hero__media {
        width: calc(100% + 48px);
        height: 480px;
        margin-inline: -24px;
    }

    .about-story__text {
        padding-top: 34px;
    }

    .about-story__quote p {
        font-size: 28px;
    }

    .about-section-title {
        font-size: 30px;
        line-height: 1.08;
    }

    .about-history__text > p,
    .about-history__text blockquote p,
    .about-values__inner p {
        font-size: 18px;
    }

    .about-history__date strong {
        font-size: 48px;
    }

    .about-history__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-history__arrow {
        width: 72px;
        height: 42px;
    }
}




@media (max-width: 1199px) {
    .about-story__inner {
        grid-template-columns: minmax(0, 1fr) 320px;
        column-gap: 40px;
        min-height: auto;
    }

    .about-story__text,
    .about-story__quote {
        width: 100%;
    }

    .about-story__founder {
        width: 320px;
    }

    .about-story__quote p {
        font-size: 34px;
    }

    .about-history__container {
        min-height: 700px;
    }

    .about-history__layout {
        min-height: 650px;
    }

    .about-history__timeline {
        --history-circle-size: 680px;
        --history-circle-left: -330px;
        flex-basis: 430px;
        width: 430px;
        min-height: var(--history-circle-size);
    }

    .about-history__viewport {
        flex: 1 1 0;
        width: auto;
        max-width: 560px;
    }
}

@media (max-width: 899px) {
    .about-story {
        padding: 62px 0;
    }

    .about-story__inner {
        min-height: 0;
    }

    .about-story__text,
    .about-story__quote {
        width: 100%;
    }

    .about-story__text p {
        font-size: 20px;
    }

    .about-story__quote {
        margin-top: 0;
    }

    .about-story__quote p {
        font-size: 32px;
        line-height: 1.12;
    }

    .about-story__quote footer {
        font-size: 18px;
    }

    .about-history {
        padding-bottom: 86px;
    }

    .about-history__container {
        min-height: 650px;
    }

    .about-history__layout {
        min-height: 580px;
    }

    .about-history__timeline {
        --history-circle-size: 560px;
        --history-circle-left: -300px;
        flex-basis: 345px;
        width: 345px;
        min-height: var(--history-circle-size);
    }

    .about-history__viewport {
        max-width: calc(100% - 240px);
        gap: 30px;
    }

    .about-history__title {
        font-size: 34px;
    }

    .about-history__text > p,
    .about-history__text blockquote p {
        font-size: 18px;
    }

    .about-history__arrow {
        width: 78px;
        height: 46px;
    }

    .about-history__arrow::before {
        left: 23px;
        width: 32px;
    }

    .about-history__arrow::after {
        left: 48px;
    }

    .about-history__arrow--prev::after {
        left: 23px;
    }
}

@media (max-width: 767px) {
    .about-hero-slider__track {
        height: 520px;
    }

    .about-hero-slider__slide p {
        bottom: 44px;
        font-size: 12px;
        letter-spacing: .16em;
    }

    .about-hero-slider__ui {
        display: none;
    }

    .about-story {
        padding: 52px 0 60px;
    }

    .about-story__inner {
        gap: 15px;
    }

    .about-story__text {
        padding-top: 0;
    }

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

    .about-story__quote p {
        font-size: 28px;
    }

    .about-story__quote footer {
        margin-top: 18px;
        font-size: 16px;
    }

    .about-story__founder {
        width: min(100%, 380px);
    }

    .about-history__container {
        min-height: 560px;
    }

    .about-history__layout {
        min-height: 500px;
        align-items: center;
    }

    .about-history__title {
        font-size: 30px;
    }

    .about-history__timeline {
        --history-circle-size: 470px;
        --history-circle-left: -275px;
        flex: 0 0 286px;
        width: 286px;
        min-height: var(--history-circle-size);
    }

    .about-history__dot span {
        font-size: 22px;
        min-width: 28px;
    }

    .about-history__dot::before {
        width: 8px;
        height: 8px;
    }

    .about-history__dot:hover::before,
    .about-history__dot:focus-visible::before,
    .about-history__dot.is-active::before {
        width: 12px;
        height: 12px;
    }

    .about-history__viewport {
        max-width: calc(100% - 128px);
        gap: 24px;
    }

    .about-history__date strong {
        font-size: 26px;
    }

    .about-history__text > p,
    .about-history__text blockquote p {
        font-size: 16px;
    }

    .about-history__controls {
        gap: 16px;
    }

    .about-history__arrow {
        width: 68px;
        height: 40px;
    }

    .about-history__arrow::before {
        left: 20px;
        width: 28px;
    }

    .about-history__arrow::after {
        left: 42px;
        width: 8px;
        height: 7px;
    }

    .about-history__arrow--prev::after {
        left: 20px;
    }
}

@media (max-width: 560px) {
    .about-hero-slider__track {
        height: 430px;
    }

    .about-story__quote p {
        font-size: 14px;
        line-height: 1.2;
        font-weight: 100;
        text-transform: none;
    }

    .about-story__quote p br {
        display: none;
    }

    .about-history {
        padding-bottom: 70px;
    }

    .about-history__container {
        min-height: 540px;
    }

    .about-history__layout {
        min-height: 470px;
    }

    .about-history__title {
        font-size: 26px;
    }

    .about-history__timeline {
        --history-circle-size: 420px;
        --history-circle-left: -258px;
        flex-basis: 92px;
        width: 92px;
    }

    .about-history__viewport {
        max-width: calc(100% - 92px);
        gap: 22px;
    }

    .about-history__date strong {
        font-size: 24px;
    }

    .about-history__text > p,
    .about-history__text blockquote p {
        font-size: 15px;
    }

    .about-history__controls {
        gap: 12px;
    }

    .about-history__arrow {
        width: 58px;
        height: 36px;
    }

    .about-history__arrow::before {
        left: 17px;
        width: 24px;
    }

    .about-history__arrow::after {
        left: 36px;
    }

    .about-history__arrow--prev::after {
        left: 17px;
    }
}
@media (max-width: 899px) {
    .about-story__inner {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "text"
            "quote"
            "founder";
        align-items: start;
    }

    .about-story__text {
        grid-area: text;
        min-width: 0;
    }

    .about-story__quote {
        grid-area: quote;
        min-width: 0;
        padding: 20px;
        border: 1px solid;
    }

    .about-story__founder {
        grid-area: founder;
        min-width: 0;
    }
}
.about-history__track {
    width: 100%;
}

@media (max-width: 560px) {
    .about-story__quote p br {
        display: initial;
    }

    .about-history__timeline {
        flex-basis: 76px;
        width: 76px;
    }

    .about-history__viewport {
        max-width: calc(100% - 76px);
    }
}

.about-hero-slider__mobile-brand {
    display: none;
}

@media (max-width: 767px) {
    .about-hero-slider__slide::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .12) 43%, rgba(0, 0, 0, .78) 100%);
    }

    .about-hero-slider__slide img {
        object-position: center top;
    }

    .about-hero-slider__mobile-brand {
        position: absolute;
        left: 50%;
        bottom: 82px;
        z-index: 2;
        display: block;
        width: min(286px, calc(100vw - 82px));
        transform: translateX(-50%);
    }

    .about-hero-slider__mobile-brand img {
        display: block;
        width: 100%;
        height: auto;
        filter: none;
    }

    .about-hero-slider__slide p {
        bottom: 54px;
        z-index: 2;
        font-size: 18px;
        line-height: 1;
        letter-spacing: .2em;
    }
}

@media (max-width: 560px) {
    .about-hero-slider__track {
        height: 572px;
    }

    .about-hero-slider__mobile-brand {
        bottom: 78px;
        width: min(286px, calc(100vw - 82px));
    }

    .about-hero-slider__slide p {
        bottom: 40px;
        font-weight: 500;
    }
}
@media (max-width: 560px) {
    .about-page .site-header,
    body:has(.about-page) .site-header {
        background: transparent;
        color: var(--color-white);
    }

    .about-page .menu-button,
    body:has(.about-page) .menu-button {
        background: transparent;
    }
}
@media (max-width: 560px) {
    .is-about-page .site-header {
        background: transparent;
        color: var(--color-white);
    }

    .is-about-page .menu-button {
        background: transparent;
    }
}
@media (max-width: 560px) {
    .about-hero-slider__track {
        height: calc(100svh - var(--slider-bar-height));
        min-height: 600px;
    }
}

@media (max-width: 560px) {
    .about-history__container {
        min-height: 705px;
    }

    .about-history__layout {
        min-height: 640px;
    }

    .about-history__timeline {
        --history-circle-size: 414px;
        --history-circle-left: -378px;
        flex-basis: 222px;
        width: 222px;
        min-height: var(--history-circle-size);
    }

    .about-history__viewport {
        max-width: calc(100% - 222px);
        gap: 26px;
    }

    .about-history__date strong {
        font-size: 28px;
    }

    .about-history__text > p,
    .about-history__text blockquote p {
        font-size: 16px;
        line-height: normal;
    }
}
@media (max-width: 560px) {
    .about-history__timeline {
        --history-circle-left: -433px;
        flex-basis: 167px;
        width: 167px;
    }

    .about-history__viewport {
        max-width: calc(100% - 167px);
    }
}
@media (max-width: 560px) {
    .about-history__slide {
        padding-left: 28px;
    }
}
@media (max-width: 560px) {
    .about-history {
        padding-bottom: 0;
    }

    .about-history__container {
        min-height: 424px;
    }

    .about-history__title {
        margin: 0 auto;
        font-size: var(--h2-size);
        line-height: var(--h2-line);
        line-height: normal;
    }

    .about-history__layout {
        min-height: 412px;
        align-items: center;
    }

    .about-history__timeline {
        --history-circle-size: 414px;
        --history-circle-left: -325px;
        --history-circle-top: -6px;
        flex: 0 0 186px;
        width: 186px;
        min-height: var(--history-circle-size);
    }

    .about-history__viewport {
        flex: 1 1 auto;
        max-width: calc(100% - 186px);
        align-self: center;
        gap: 0;
    }

    .about-history__slide {
        padding-left: 0;
    }

    .about-history__date {
        margin-bottom: 8px;
    }

    .about-history__date strong {
        font-size: 28px;
        line-height: normal;
    }

    .about-history__text > p,
    .about-history__text blockquote p {
        font-size: 16px;
        line-height: normal;
    }

    .about-history__controls {
        display: none;
    }
}
@media (max-width: 560px) {
    .about-history__timeline {
        flex-basis: 214px;
        width: 214px;
    }

    .about-history__viewport {
        max-width: calc(100% - 214px);
    }
}
@media (max-width: 560px) {
    .about-history__timeline {
        flex-basis: 204px;
        width: 120px;
    }

    .about-history__viewport {
        max-width: calc(100% - 204px);
    }

    .about-history__dot.is-active span {
        transform: translate(-50%, -50%) translate(24px, 0) rotate(0deg);
    }
}
@media (max-width: 560px) {
    .about-history__timeline {
        flex-basis: 124px;
        /* width: 179px; */
    }

    .about-history__viewport {
        flex: 0 0 163px;
        width: 163px;
        max-width: 163px;
    }

    .about-history__text > p,
    .about-history__text blockquote p {
        font-size: 12px;
        line-height: normal;
        font-weight: 300;
    }
}
@media (max-width: 560px) {
    .about-history__viewport {
        margin-left: 24px;
    }
}
