/* ===================================================================
   About / Biography page — modern layout (scoped to .ws-about-page)
   =================================================================== */

.ws-about-page {
    --ab-radius: 18px;
    --ab-ring: rgba(var(--ws-base-rgb, 184, 146, 46), 0.22);
    --ab-tint: rgba(var(--ws-base-rgb, 184, 146, 46), 0.08);
    --ab-shadow: 0 24px 60px rgba(107, 82, 16, 0.12);
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background:
        radial-gradient(1200px 500px at 85% -8%, var(--ab-tint), transparent 60%),
        var(--ws-cream-light, #fff8e7);
    overflow: hidden;
}

.ws-about-page__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Profile / intro ─────────────────────────────────────────────── */
.ws-about-profile {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    margin-bottom: 4.5rem;
}

.ws-about-profile__media {
    position: relative;
}

.ws-about-profile__frame {
    position: relative;
    border-radius: var(--ab-radius);
    padding: 0px;
    background: linear-gradient(150deg, var(--ws-gold-bright, #d4af37), var(--ws-gold-deep, #8b6914));
    box-shadow: var(--ab-shadow);
}

.ws-about-profile__frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--ab-radius) - 8px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.ws-about-profile__chip {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    background: #fff;
    color: var(--ws-gold-darker, #6b5210);
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(107, 82, 16, 0.18);
}

.ws-about-profile__chip i {
    color: var(--ws-gold, #b8922e);
    font-size: 1.1em;
}

.ws-about-profile__body {
    padding-top: 0.5rem;
}

.ws-about-profile__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--ws-gold-deep, #8b6914);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ws-about-profile__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--ws-gold-bright, #d4af37), var(--ws-gold, #b8922e));
}

.ws-about-profile__name {
    margin: 0 0 0.4rem;
    font-family: var(--ws-font-heading, "Marcellus", serif);
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.1;
    color: var(--ws-gold-darker, #6b5210);
}

.ws-about-profile__native {
    display: block;
    margin-bottom: 1.25rem;
    font-family: var(--ws-font-heading, "Marcellus", serif);
    font-size: 1.15rem;
    color: var(--ws-gold, #b8922e);
}

.ws-about-profile__roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.ws-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px 6px 12px;
    border: 1px solid var(--ab-ring);
    border-radius: 100px;
    background-image: linear-gradient(135deg, rgba(var(--ws-base-rgb, 184, 146, 46), 0.16), rgba(var(--ws-base-rgb, 184, 146, 46), 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--ws-gold-deep, #8b6914);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.ws-about-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ws-gold, #b8922e);
    box-shadow: 0 0 0 3px rgba(var(--ws-base-rgb, 184, 146, 46), 0.18);
}

.ws-about-profile__lead {
    margin: 0 0 1.75rem;
    color: var(--ws-text, #5b6478);
    font-size: 1.12rem;
    line-height: 1.75;
}

.ws-about-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ws-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 250ms ease, box-shadow 250ms ease, background-color 250ms ease, color 250ms ease;
}

.ws-about-btn--solid {
    background: linear-gradient(135deg, var(--ws-gold-bright, #d4af37), var(--ws-gold, #b8922e));
    color: #fff;
    box-shadow: 0 12px 26px rgba(var(--ws-base-rgb, 184, 146, 46), 0.32);
}

.ws-about-btn--solid:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 32px rgba(var(--ws-base-rgb, 184, 146, 46), 0.4);
}

.ws-about-btn--ghost {
    border: 1px solid var(--ab-ring);
    background: #fff;
    color: var(--ws-gold-darker, #6b5210);
}

.ws-about-btn--ghost:hover {
    transform: translateY(-2px);
    color: var(--ws-gold-darker, #6b5210);
    box-shadow: 0 12px 24px rgba(107, 82, 16, 0.12);
}

/* ── Fact cards ──────────────────────────────────────────────────── */
.ws-about-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 4.5rem;
}

.ws-about-fact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 22px;
    border-radius: 16px;
    background:
        radial-gradient(120px 120px at 100% 0%, rgba(var(--ws-base-rgb, 184, 146, 46), 0.1), transparent 70%),
        #fff;
    border: 1px solid rgba(var(--ws-base-rgb, 184, 146, 46), 0.14);
    box-shadow: 0 10px 28px rgba(107, 82, 16, 0.06);
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.ws-about-fact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ws-gold-bright, #d4af37), var(--ws-gold, #b8922e));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms ease;
}

.ws-about-fact:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--ws-base-rgb, 184, 146, 46), 0.3);
    box-shadow: 0 18px 38px rgba(107, 82, 16, 0.14);
}

.ws-about-fact:hover::before {
    transform: scaleX(1);
}

.ws-about-fact__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 3px 10px;
    border-radius: 100px;
    background-image: linear-gradient(135deg, rgba(var(--ws-base-rgb, 184, 146, 46), 0.18), rgba(var(--ws-base-rgb, 184, 146, 46), 0.05));
    border: 1px solid rgba(var(--ws-base-rgb, 184, 146, 46), 0.28);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--ws-gold-deep, #8b6914);
    line-height: 1.5;
}

.ws-about-fact__value {
    display: block;
    color: var(--ws-gold-darker, #6b5210);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.45;
}

/* ── Biography article ───────────────────────────────────────────── */
.ws-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
    align-items: start;
}

.ws-about-block {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.75rem 1.9rem 1.75rem 2.15rem;
    border-radius: var(--ab-radius);
    background: #fff;
    border: 1px solid rgba(var(--ws-base-rgb, 184, 146, 46), 0.12);
    box-shadow: 0 10px 30px rgba(107, 82, 16, 0.05);
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.ws-about-block:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--ws-base-rgb, 184, 146, 46), 0.28);
    box-shadow: 0 20px 44px rgba(107, 82, 16, 0.12);
}

.ws-about-block:hover .ws-about-block__head {
    background: linear-gradient(135deg, rgba(var(--ws-base-rgb, 184, 146, 46), 0.14), rgba(var(--ws-base-rgb, 184, 146, 46), 0.04));
    border-color: rgba(var(--ws-base-rgb, 184, 146, 46), 0.22);
}

.ws-about-block__head {
    position: relative;
    margin-bottom: 1.35rem;
    padding: 0.95rem 1.15rem 1.05rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--ws-base-rgb, 184, 146, 46), 0.1), rgba(var(--ws-base-rgb, 184, 146, 46), 0.02));
    border: 1px solid rgba(var(--ws-base-rgb, 184, 146, 46), 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.ws-about-block__head::after {
    content: "";
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ws-gold-bright, #d4af37), var(--ws-gold, #b8922e), transparent);
    opacity: 0.85;
}

.ws-about-block__title {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    font-family: var(--ws-font-heading, "Marcellus", serif);
    font-size: clamp(1.45rem, 2.2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: 0.015em;
    background: linear-gradient(120deg, var(--ws-gold-darker, #6b5210) 0%, var(--ws-gold, #b8922e) 55%, var(--ws-gold-bright, #d4af37) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ws-gold-darker, #6b5210);
}


.ws-about-block__body p {
    margin: 0 0 1rem;
    color: var(--ws-text, #5b6478);
    line-height: 1.8;
}

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

.ws-about-block__body em {
    color: var(--ws-gold-deep, #8b6914);
    font-style: italic;
}

/* Pull-quote */
.ws-about-quote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 2.25rem 2rem 3.5rem;
    border-radius: var(--ab-radius);
    background: linear-gradient(135deg, rgba(var(--ws-base-rgb, 184, 146, 46), 0.1), rgba(var(--ws-base-rgb, 184, 146, 46), 0.02));
    border: 1px solid var(--ab-ring);
    color: var(--ws-gold-darker, #6b5210);
    font-family: var(--ws-font-heading, "Marcellus", serif);
    font-size: 1.3rem;
    line-height: 1.6;
}

.ws-about-quote::before {
    content: "\201C";
    position: absolute;
    top: -0.4rem;
    left: 1rem;
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(var(--ws-base-rgb, 184, 146, 46), 0.45);
}

.ws-about-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--ws-font-body, sans-serif);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ws-gold, #b8922e);
}

/* ── Sidebar (sticky) ────────────────────────────────────────────── */
.ws-about-side {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ws-about-card {
    padding: 1.6rem;
    border-radius: var(--ab-radius);
    background: #fff;
    border: 1px solid rgba(var(--ws-base-rgb, 184, 146, 46), 0.14);
    box-shadow: 0 14px 34px rgba(107, 82, 16, 0.08);
}

.ws-about-card--accent {
    background: linear-gradient(155deg, var(--ws-gold-deep, #8b6914), var(--ws-gold-darker, #6b5210));
    border: none;
    color: #fff;
}

.ws-about-card__title {
    position: relative;
    display: inline-block;
    margin: 0 0 1.1rem;
    padding-bottom: 10px;
    font-family: var(--ws-font-heading, "Marcellus", serif);
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    line-height: 1.25;
    letter-spacing: 0.015em;
    color: #000;
}

.ws-about-card__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ws-gold-bright, #d4af37), var(--ws-gold, #b8922e));
}

.ws-about-card--accent .ws-about-card__title {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.ws-about-card--accent .ws-about-card__title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35));
}

.ws-about-card--accent p {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.ws-about-card--accent .ws-about-btn--solid {
    background: #fff;
    color: var(--ws-gold-darker, #6b5210);
    box-shadow: none;
}

.ws-about-card--accent .ws-about-btn--solid:hover {
    color: var(--ws-gold-darker, #6b5210);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ── Awards list ─────────────────────────────────────────────────── */
.ws-about-awards {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ws-about-awards li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ws-about-awards__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--ab-tint);
    color: var(--ws-gold, #b8922e);
    font-size: 1.1rem;
}

.ws-about-awards__name {
    display: block;
    color: var(--ws-gold-darker, #6b5210);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
}

.ws-about-awards__note {
    display: block;
    color: var(--ws-text, #5b6478);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ── Tag chips ───────────────────────────────────────────────────── */
.ws-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ws-about-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 10px;
    background: var(--ab-tint);
    border: 1px solid rgba(var(--ws-base-rgb, 184, 146, 46), 0.14);
    color: var(--ws-gold-darker, #6b5210);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.35;
    transition: background-color 200ms ease, transform 200ms ease;
}

.ws-about-tag:hover {
    transform: translateY(-1px);
    background: rgba(var(--ws-base-rgb, 184, 146, 46), 0.16);
}

/* ── Timeline ────────────────────────────────────────────────────── */
.ws-about-timeline {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ws-about-timeline::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 7px;
    width: 2px;
    background: linear-gradient(180deg, var(--ws-gold-bright, #d4af37), rgba(var(--ws-base-rgb, 184, 146, 46), 0.15));
}

.ws-about-timeline li {
    position: relative;
    padding: 0 0 1.35rem 30px;
}

.ws-about-timeline li:last-child {
    padding-bottom: 0;
}

.ws-about-timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--ws-gold, #b8922e);
    box-shadow: 0 0 0 4px rgba(var(--ws-base-rgb, 184, 146, 46), 0.12);
}

.ws-about-timeline__year {
    display: block;
    font-weight: 700;
    color: var(--ws-gold, #b8922e);
    font-size: 0.95rem;
}

.ws-about-timeline__text {
    display: block;
    color: var(--ws-text, #5b6478);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .ws-about-profile {
        grid-template-columns: 1fr;
        gap: 3.25rem;
        max-width: 560px;
        margin-inline: auto;
    }

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

    .ws-about-side {
        position: static;
    }
}

@media (max-width: 767px) {
    .ws-about-page {
        padding: 3.5rem 0 4rem;
    }

    .ws-about-profile {
        gap: 2.75rem;
        margin-bottom: 3.5rem;
    }

    .ws-about-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 3.5rem;
    }

    .ws-about-block {
        padding: 1.4rem 1.4rem 1.4rem 1.5rem;
    }

    .ws-about-quote {
        margin: 2.25rem 0;
        padding: 1.6rem 1.5rem 1.6rem 2.75rem;
        font-size: 1.15rem;
    }

    .ws-about-quote::before {
        font-size: 3.5rem;
        left: 0.75rem;
    }
}

@media (max-width: 575px) {
    .ws-about-page {
        padding: 3rem 0 3.5rem;
    }

    .ws-about-profile__lead {
        font-size: 1.02rem;
    }

    .ws-about-profile__actions {
        width: 100%;
    }

    .ws-about-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 460px) {
    .ws-about-facts {
        grid-template-columns: 1fr;
    }

    .ws-about-profile__chip {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
}
