/* ============================================================
   ABOUT PAGE STYLES — Vladyslav Dovhan
   ============================================================ */

/* ============================
   HERO
   ============================ */
.about-hero {
    background: var(--c-dark);
    padding: var(--section-pad) 0;
}

.about-hero__inner {
    display: flex;
justify-content:space-between;
    align-items: flex-end;
    gap: 32px;
}

.about-hero__titles {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

/* "About" — Demi Bold Italic 96px */
.about-hero__title {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 600;
    font-style: italic;
    color: rgba(216, 216, 204, 1);
    letter-spacing: -2.4px;
    line-height: 96px;
}

/* "Vladyslav Dovhan" — gradient via background-clip */
.about-hero__name {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -2.4px;
    line-height: 96px;
   background: linear-gradient(
    100deg,
    #6f5a2f 0%,
    #c1a875 25%,
    #f5e6c4 40%,
    #c1a875 55%,
    #8a6d3b 75%,
    #3f3218 100%
  );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* "MUSICIAN · CONDUCTOR · EDUCATOR" */
.about-hero__tagline {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-light);
    letter-spacing: 4px;
    line-height: 1.43;
}

/* ============================
   BIOGRAPHY
   ============================ */
.about-bio {
    background: var(--c-dark);
    padding-top: var(--section-pad);
    /* No bottom padding — section flows into next */
}

.about-bio__grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.about-bio__image {
    flex: 0 0 700px;
    max-width: 700px;
}

.about-bio__image img {
    width: 100%;
    aspect-ratio: 700 / 718;
		object-position: top;
    object-fit: cover;
    display: block;
		height: auto;
}

.about-bio__content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* "Biography" — Demi Bold Italic 96px */
.about-bio__heading {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 600;
    font-style: italic;
    color: rgba(216, 216, 204, 1);
    letter-spacing: -2.4px;
    line-height: 96px;
}

.about-bio__paragraphs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-bio__paragraphs p {
    font-size: 16px;
    font-weight: 400;
    color: var(--c-text-light);
    letter-spacing: -0.3125px;
    line-height: 1.5;
}

/* ============================
   QUOTE / CONTINUATION SECTION
   ============================ */
.about-quote {
    background: var(--c-light);
    padding: var(--section-pad) 0;
    position: relative;
}

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

.about-quote__inner p {
    font-size: 16px;
    font-weight: 400;
    color: var(--c-dark);
    letter-spacing: -0.3125px;
    line-height: 1.5;
}

/* Decorative arrow from Figma — bottom, between col 1 and col 2 */
.about-quote__arrow {
    position: absolute;
    bottom: 50px;
    /* center on the gap between col 1 and col 2:
     left = container-pad + col1-width - half-arrow-width + half-gap
     col1-width = (100% - 2*container-pad - 2*gap) / 3
  */
    left: calc(var(--container-pad) + (100% - 2 * var(--container-pad) - 64px) / 3 - 132px);
    width: 296px;
    height: 85px;
    pointer-events: none;
}

/* ============================
   KEY ACHIEVEMENTS
   ============================ */
.about-achievements {
    background: var(--c-light);
    padding: var(--section-pad) 0;
}

.about-achievements__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.about-achievements__titles {
    display: flex;
    flex-direction: column;
}

.achievements-title {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -2.4px;
    line-height: 96px;
    color: var(--c-black);
}

/* Visual weight variants keep italic/600 base, just swap to bold if needed */
.achievements-title--bold {
    font-weight: 700;
}

.achievements-title--normal {
    font-weight: 600;
}

.achievements-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-text-dim);
    letter-spacing: -0.3125px;
    line-height: 1.5;
    text-align: center;
}

/* Card rows */
.achievements-rows {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.achievements-row {
    display: flex;
    gap: 32px;
}

.achievement-card {
    flex: 1 1 0;
    min-width: 0;
    background: rgba(216, 216, 204, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
			border: 1px solid white;
}

.achievement-card__label {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-black);
    letter-spacing: -0.3125px;
    line-height: 1.5;
}

.achievement-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.achievement-card__number {
    display: block;
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 600;
    color: var(--c-dark-alt);
    letter-spacing: -2.4px;
    line-height: 1;
	
}

.achievement-card__desc {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-black);
    letter-spacing: -0.3125px;
    line-height: 1.5;
}

/* ============================
   ACHIEVEMENTS & RECOGNITION TIMELINE
   ============================ */
.about-timeline {
    background: var(--c-dark-alt);
    padding: var(--section-pad) 0;
}

.about-timeline .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.about-timeline__header {
    /* sticky top so heading stays visible while timeline scrolls */
    position: sticky;
    top: 80px;
}

/* "Achievements & Recognition" — Demi Bold Italic 96px */
.about-timeline__heading {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 600;
    font-style: italic;
    color: rgba(216, 216, 204, 1);
    letter-spacing: -2.4px;
    line-height: 96px;
}

/* Timeline list */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline__item {
    border-left: 1px solid var(--c-text-light);
    padding: 0 0 0 28px;
    min-height: 108px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.timeline__year {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--c-text-light);
    letter-spacing: 0.55px;
    line-height: 1.43;
}

.timeline__title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-text-light);
    letter-spacing: -0.45px;
    line-height: 1.4;
}

.timeline__desc {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-text-light);
    letter-spacing: -0.3125px;
    line-height: 1.5;
}

/* ============================
   RESPONSIVE — ABOUT PAGE
   ============================ */
@media (max-width: 1280px) {
    .about-hero__title,
    .about-hero__name,
    .about-bio__heading,
    .about-timeline__heading,
    .achievements-title {
        font-size: 72px;
        line-height: 72px;
        letter-spacing: -1.8px;
    }

    .about-bio__image {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .achievement-card__number {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .about-hero__title,
    .about-hero__name,
    .about-bio__heading,
    .about-timeline__heading,
    .achievements-title {
        font-size: 56px;
        line-height: 56px;
        letter-spacing: -1.4px;
    }

    .about-bio__image {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .achievements-row {
        flex-wrap: wrap;
    }

    .achievements-row .achievement-card {
        flex: 1 1 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }

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

    .achievement-card__number {
        font-size: 48px;
    }

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

@media (max-width: 768px) {
    .about-hero__title,
    .about-hero__name,
    .about-bio__heading,
    .about-timeline__heading,
    .achievements-title {
        font-size: 42px;
        line-height: 42px;
        letter-spacing: -1px;
    }

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

    .about-bio__image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .about-bio__image img {
        aspect-ratio: 4 / 3;
    }

    .achievements-row {
        flex-direction: column;
    }

    .achievements-row .achievement-card {
        flex: none;
        width: 100%;
        min-width: unset;
    }

    .about-hero__tagline {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .about-quote__arrow {
bottom: 0px;
bottom: 0px;
        right: 20px;
        left: auto;
        transform: rotate(336deg);
    }

    .about-quote__inner {
        grid-template-columns: 1fr;
    }

    .about-timeline .container {
        grid-template-columns: 1fr;
    }

    .about-timeline__header {
        position: static;
    }
.about-bio{
	padding-bottom: 120px;
}
.about-hero__inner {
align-items:flex-start;
    flex-direction: column;

}
}

/* ============================
   MOBILE — 375px (per design)
   ============================ */
@media (max-width: 480px) {
    /* --- Typography (mobile design: 54px, lh 1.185) --- */
    .about-hero__title,
    .about-hero__name,
    .about-bio__heading,
    .about-timeline__heading,
    .achievements-title {
        font-size: 54px;
        line-height: 64px; /* 54 × 1.185 */
        letter-spacing: -2.4px;
    }

    .achievements-title {
        color: var(--c-black);
    }

    /* --- Hero --- */
    .about-hero {
        padding: 120px 0;
    }
    .about-hero__tagline {
        font-size: 12px;
        line-height: 1.667;
        letter-spacing: 4px;
    }

    /* --- Biography --- */
    .about-bio {
        padding-top: 0;
    }
    .about-bio__image img {
        aspect-ratio: auto;
        height: 352px;
        object-fit: cover;
    }

    /* --- Quote — 1 column, arrow hidden --- */
    .about-quote__inner {
        grid-template-columns: 1fr;
    }
   

    /* --- Achievements: all cards stacked vertically --- */
    .achievement-card__number {
        font-size: 48px;
        letter-spacing: -2.4px;
    }

    /* --- Timeline: header on top, items stacked --- */
    .about-timeline .container {
        grid-template-columns: 1fr;
    }
    .about-timeline__header {
        position: static;
    }
    /* padding per mobile design: 12px top/bottom, 28px left */
    .timeline__item {
        min-height: 0;
        padding: 12px 0 12px 28px;
    }
}

