*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #FAFAFA;
    --ink: #2C3E50;
    --gold: #5B7C99;
    --gold-light: #7B9CC4;
    --shadow: rgba(44, 62, 80, 0.08);
    --muted: #718096;
    --black: #000000;
}

html,
body {
    min-height: 100vh;
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    color: var(--ink);
}

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

/* ── LEFT COLUMN ── */
.left {
    position: sticky;
    top: 40px;
}

.portrait-frame {
    position: relative;
    width: 340px;
    margin: 0 auto 36px;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--gold);
    border-radius: 2px;
    opacity: 0.45;
    transform: rotate(2deg);
}

.portrait-frame::after {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid var(--gold-light);
    border-radius: 2px;
    opacity: 0.25;
    transform: rotate(-1deg);
}

.portrait-img {
    display: block;
    width: 100%;
    border-radius: 2px;
    box-shadow: 8px 12px 32px var(--shadow), 0 2px 6px var(--shadow);
    position: relative;
    z-index: 1;
    background: transparent;
}

.gold-rule {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 1px;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 6px;
}

.title {
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.contacts {
    list-style: none;
    border-top: 1px solid rgba(184, 148, 95, 0.25);
    padding-top: 20px;
}

.contacts li {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.03em;
}

.contacts li span.ic {
    width: 14px;
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.collection-btn {
    display: block;
    margin-top: 32px;
    padding: 20px 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(91, 124, 153, 0.15);
}

.collection-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 124, 153, 0.25);
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.btn-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── RIGHT COLUMN ── */
.right {
    padding-top: 8px;
}

.section {
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 148, 95, 0.4), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 18px;
}

.section-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 12px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.expertise-item {
    background: white;
    border: 1px solid rgba(184, 148, 95, 0.2);
    border-radius: 3px;
    padding: 14px 16px;
    box-shadow: 0 1px 4px rgba(26, 20, 16, 0.04);
}

.expertise-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.expertise-item p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.timeline {
    list-style: none;
    border-left: 1px solid rgba(184, 148, 95, 0.3);
    padding-left: 24px;
    margin-top: 4px;
}

.timeline li {
    position: relative;
    margin-bottom: 22px;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--cream);
    box-shadow: 0 0 0 1px var(--gold);
}

.tl-year {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.tl-role {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.tl-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 12px;
}

.press-item {
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.press-item h3 {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.press-item h3 a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease;
}

.press-item h3 a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.press-source {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.press-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 720px) {
    .page {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px 20px;
    }

    .left {
        position: static;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}