/* =========================================================
   СТОРІНКА ПРО НАС
   ========================================================= */

.about-page {
    background: #f1f0eb;
}

.about-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 145px 0 90px;
    background:
            radial-gradient(circle at 78% 18%, rgba(201,111,69,.2), transparent 27%),
            linear-gradient(135deg, #172019 0%, #2d4234 58%, #213129 100%);
    color: #fff;
}

.about-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
            linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 68px 68px;
    animation: aboutGrid 26s linear infinite;
}

.about-hero__circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.about-hero__circle--one {
    top: -240px;
    right: -150px;
    width: 680px;
    height: 680px;
    animation: aboutOrbit 30s linear infinite;
}

.about-hero__circle--two {
    left: -300px;
    bottom: -430px;
    width: 820px;
    height: 820px;
    animation: aboutOrbitReverse 40s linear infinite;
}

.about-hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(430px,.97fr);
    gap: 70px;
    align-items: center;
}

.about-kicker,
.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 19px;
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.about-kicker::before,
.about-section-label::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

.about-hero h1 {
    margin-bottom: 27px;
    font-size: clamp(58px,7.1vw,102px);
    line-height: .93;
    letter-spacing: -4.5px;
}

.about-hero h1 span {
    display: block;
    color: rgba(255,255,255,.42);
}

.about-hero__content > p {
    max-width: 680px;
    margin-bottom: 36px;
    color: rgba(255,255,255,.68);
    font-size: 18px;
    line-height: 1.78;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 13px;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.about-button:hover {
    transform: translateY(-3px);
}

.about-button--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(201,111,69,.22);
}

.about-button--primary:hover {
    background: var(--accent-light);
}

.about-button--secondary {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    backdrop-filter: blur(12px);
}

.about-button--secondary:hover {
    background: rgba(255,255,255,.15);
}

.about-hero__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(0,0,0,.3);
}

.about-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    display: block;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.about-hero__visual:hover img {
    transform: scale(1.06);
}

.about-hero__visual-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(10,14,11,.02), rgba(10,14,11,.7)),
            linear-gradient(90deg, rgba(10,14,11,.18), transparent 58%);
}

.about-hero__year {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    background: rgba(20,29,23,.46);
    backdrop-filter: blur(14px);
}

.about-hero__year span,
.about-hero__year small {
    color: rgba(255,255,255,.58);
    font-size: 10px;
    text-transform: uppercase;
}

.about-hero__year strong {
    color: var(--accent-light);
    font-size: 42px;
    line-height: 1;
}

.about-hero__visual-label {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    background: rgba(20,29,23,.4);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Numbers */

.about-numbers {
    padding: 28px 0 100px;
    background: #f1f0eb;
}

.about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.about-number-card {
    min-height: 230px;
    display: grid;
    align-content: end;
    padding: 24px;
    border: 1px solid rgba(32,35,31,.1);
    border-radius: 22px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-number-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(25,34,28,.09);
}

.about-number-card__value {
    margin-bottom: auto;
    color: var(--accent);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.about-number-card strong {
    margin-bottom: 8px;
    font-size: 18px;
}

.about-number-card p {
    color: #7a7d77;
    font-size: 13px;
    line-height: 1.65;
}

/* Production */

.about-production {
    padding: 115px 0;
    background: #fff;
}

.about-production__grid {
    display: grid;
    grid-template-columns: minmax(430px,.95fr) minmax(0,1.05fr);
    gap: 70px;
    align-items: center;
}

.about-production__image {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    border-radius: 30px;
}

.about-production__image img {
    width: 100%;
    height: 100%;
    min-height: 670px;
    display: block;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-production__image:hover img {
    transform: scale(1.05);
}

.about-production__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,14,11,.62));
}

.about-production__badge {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 5px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: rgba(20,29,23,.62);
    backdrop-filter: blur(14px);
    color: #fff;
}

.about-production__badge span {
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-production__content h2,
.about-history__heading h2,
.about-geography__content h2,
.about-principles__heading h2 {
    margin-bottom: 20px;
    font-size: clamp(42px,5vw,68px);
    line-height: .98;
    letter-spacing: -2.7px;
}

.about-production__content > p,
.about-history__heading > p,
.about-geography__content > p {
    color: #747771;
    font-size: 16px;
    line-height: 1.8;
}

.about-production__features {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
    margin-top: 32px;
}

.about-production__features > div {
    min-height: 190px;
    padding: 20px;
    border: 1px solid rgba(32,35,31,.1);
    border-radius: 18px;
    background: #f7f6f2;
    transition: transform .3s ease, border-color .3s ease;
}

.about-production__features > div:hover {
    transform: translateY(-5px);
    border-color: rgba(201,111,69,.4);
}

.about-production__features span {
    display: block;
    margin-bottom: 35px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.about-production__features strong {
    display: block;
    margin-bottom: 8px;
}

.about-production__features p {
    color: #7b7e78;
    font-size: 13px;
    line-height: 1.65;
}

/* History */

.about-history {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #18221b;
    color: #fff;
}

.about-history__background-word {
    position: absolute;
    top: -60px;
    right: -30px;
    color: rgba(255,255,255,.035);
    font-size: min(30vw,420px);
    font-weight: 900;
    line-height: 1;
}

.about-history__container {
    position: relative;
    z-index: 2;
}

.about-history__heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.about-history__heading > p {
    max-width: 720px;
    color: rgba(255,255,255,.58);
}

.about-timeline {
    position: relative;
    max-width: 1000px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 126px;
    width: 1px;
    background: linear-gradient(var(--accent), rgba(255,255,255,.1));
}

.about-timeline__item {
    display: grid;
    grid-template-columns: 100px 28px minmax(0,1fr);
    gap: 12px;
    min-height: 170px;
}

.about-timeline__year {
    padding-top: 2px;
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 800;
}

.about-timeline__dot {
    position: relative;
    width: 14px;
    height: 14px;
    margin-top: 3px;
    border: 3px solid #18221b;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.about-timeline__content {
    padding: 0 0 45px 24px;
}

.about-timeline__content h3 {
    margin-bottom: 10px;
    font-size: 25px;
}

.about-timeline__content p {
    max-width: 660px;
    color: rgba(255,255,255,.56);
    line-height: 1.75;
}

/* Geography */

.about-geography {
    padding: 120px 0;
    background: #f1f0eb;
}

.about-geography__grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(440px,.9fr);
    gap: 70px;
    align-items: center;
}

.about-geography__content > p {
    max-width: 650px;
}

.about-geography__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.about-geography__tags span {
    padding: 10px 13px;
    border: 1px solid rgba(32,35,31,.11);
    border-radius: 100px;
    background: #fff;
    color: #5f625d;
    font-size: 12px;
    font-weight: 700;
}

.about-geography__map {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background:
            radial-gradient(circle at 50% 50%, rgba(201,111,69,.13), transparent 35%),
            #1c2921;
    overflow: hidden;
}

.about-geography__map-shape {
    position: relative;
    width: 78%;
    aspect-ratio: 1.45;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(
            9% 45%, 16% 28%, 30% 23%, 39% 14%, 51% 20%, 61% 12%,
            72% 20%, 84% 18%, 94% 31%, 88% 49%, 96% 61%, 83% 71%,
            70% 69%, 63% 83%, 47% 76%, 35% 87%, 22% 72%, 8% 68%, 2% 55%
    );
    background:
            linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
    color: #fff;
}

.about-geography__map-shape strong {
    font-size: 36px;
    letter-spacing: -1px;
}

.about-geography__map-shape small {
    position: absolute;
    margin-top: 58px;
    color: rgba(255,255,255,.48);
}

.about-map-point {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: aboutPoint 2.2s ease-out infinite;
}

.about-map-point--one { top: 35%; left: 47%; }
.about-map-point--two { top: 25%; left: 23%; animation-delay: .3s; }
.about-map-point--three { top: 64%; left: 22%; animation-delay: .6s; }
.about-map-point--four { top: 55%; left: 72%; animation-delay: .9s; }
.about-map-point--five { top: 35%; left: 78%; animation-delay: 1.2s; }
.about-map-point--six { top: 70%; left: 55%; animation-delay: 1.5s; }

/* Principles */

.about-principles {
    padding: 110px 0;
    background: #fff;
}

.about-principles__heading {
    margin-bottom: 42px;
}

.about-principles__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.about-principle {
    min-height: 285px;
    padding: 24px;
    border: 1px solid rgba(32,35,31,.1);
    border-radius: 22px;
    background: #f7f6f2;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.about-principle:hover {
    transform: translateY(-7px);
    background: #1d2a22;
    color: #fff;
}

.about-principle > span {
    display: block;
    margin-bottom: 90px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.about-principle h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.about-principle p {
    color: #777a74;
    font-size: 13px;
    line-height: 1.7;
}

.about-principle:hover p {
    color: rgba(255,255,255,.58);
}

/* Final CTA */

.about-final {
    padding: 0 0 110px;
    background: #fff;
}

.about-final__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 46px;
    border-radius: 30px;
    background:
            radial-gradient(circle at 90% 10%, rgba(201,111,69,.2), transparent 28%),
            #19251e;
    color: #fff;
}

.about-final__inner > div {
    max-width: 780px;
}

.about-final__inner > div > span {
    display: block;
    margin-bottom: 9px;
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-final h2 {
    font-size: clamp(32px,4.4vw,58px);
    line-height: 1.03;
    letter-spacing: -2px;
}

.about-final__button {
    flex: 0 0 auto;
    min-width: 235px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 20px;
    border-radius: 13px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.about-final__button:hover {
    transform: translateY(-4px);
    background: var(--accent-light);
    box-shadow: 0 16px 34px rgba(201,111,69,.25);
}

/* Reveal */

.about-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity .85s ease, transform .85s cubic-bezier(.2,.75,.2,1);
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-numbers__grid .about-reveal:nth-child(2),
.about-production__features > div:nth-child(2),
.about-principles__grid .about-reveal:nth-child(2) {
    transition-delay: .08s;
}

.about-numbers__grid .about-reveal:nth-child(3),
.about-production__features > div:nth-child(3),
.about-principles__grid .about-reveal:nth-child(3) {
    transition-delay: .16s;
}

.about-numbers__grid .about-reveal:nth-child(4),
.about-production__features > div:nth-child(4),
.about-principles__grid .about-reveal:nth-child(4) {
    transition-delay: .24s;
}

@keyframes aboutGrid {
    from { background-position: 0 0, 0 0; }
    to { background-position: 68px 68px, 68px 68px; }
}

@keyframes aboutOrbit {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

@keyframes aboutOrbitReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}

@keyframes aboutPoint {
    0% { box-shadow: 0 0 0 0 rgba(223,139,99,.65); }
    70% { box-shadow: 0 0 0 12px rgba(223,139,99,0); }
    100% { box-shadow: 0 0 0 0 rgba(223,139,99,0); }
}

@media (max-width: 1080px) {
    .about-hero__container,
    .about-production__grid,
    .about-geography__grid {
        grid-template-columns: 1fr;
    }

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

    .about-numbers__grid,
    .about-principles__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 760px) {
    .about-hero {
        min-height: auto;
        padding: 125px 0 75px;
    }

    .about-hero h1 {
        font-size: 54px;
        letter-spacing: -2.5px;
    }

    .about-hero__visual,
    .about-hero__visual img {
        min-height: 460px;
    }

    .about-numbers {
        padding-bottom: 78px;
    }

    .about-numbers__grid,
    .about-production__features,
    .about-principles__grid {
        grid-template-columns: 1fr;
    }

    .about-production,
    .about-history,
    .about-geography,
    .about-principles {
        padding: 82px 0;
    }

    .about-production__image,
    .about-production__image img {
        min-height: 500px;
    }

    .about-timeline::before {
        left: 8px;
    }

    .about-timeline__item {
        grid-template-columns: 28px 1fr;
    }

    .about-timeline__year {
        grid-column: 2;
        grid-row: 1;
    }

    .about-timeline__dot {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .about-timeline__content {
        grid-column: 2;
        padding-left: 0;
    }

    .about-geography__map {
        min-height: 430px;
    }

    .about-final__inner {
        align-items: stretch;
        flex-direction: column;
        padding: 30px 22px;
    }

    .about-final__button {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .about-hero h1 {
        font-size: 44px;
    }

    .about-hero__actions {
        flex-direction: column;
    }

    .about-button {
        width: 100%;
    }

    .about-hero__visual,
    .about-hero__visual img {
        min-height: 380px;
    }

    .about-number-card {
        min-height: 210px;
    }

    .about-geography__map {
        min-height: 350px;
    }

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

@media (prefers-reduced-motion: reduce) {
    .about-hero__grid,
    .about-hero__circle,
    .about-map-point {
        animation: none;
    }

    .about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}