@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Mulish:wght@300;400;500;600&display=swap');

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

:root {
    --navy: #0f2545;
    --navy-light: #1a3a6b;
    --gold: #c8a951;
    --gold-light: #e8c97a;
    --cream: #f8f5ef;
    --white: #ffffff;
    --text-mid: #4a5568;
    --text-light: #8a9ab5;
    --trans: all 0.35s cubic-bezier(0.4,0,0.2,1);
}


/* ===== HERO ===== */
.pg-hero {
    position: relative;
    background: linear-gradient(135deg, #0f2545 0%, #1a3a6b 55%, #1e3d75 100%);
    padding: 72px 0 56px;
    overflow: hidden;
}
.pg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.pg-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.pg-hero-inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.pg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,81,.18);
    border: 1px solid rgba(200,169,81,.35);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.pg-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4.5vw, 42px);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}
.pg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 13px;
    list-style: none;
}
.pg-breadcrumb a { color: var(--gold-light); text-decoration: none; opacity: .85; transition: var(--trans); }
.pg-breadcrumb a:hover { opacity: 1; }
.pg-breadcrumb .sep { color: var(--gold); opacity: .45; font-size: 10px; }
.pg-breadcrumb .cur { color: rgba(255,255,255,.5); }

/* ===== CONTENT ARTICLE ===== */
.pg-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px 0;
}
.pg-article {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(200,169,81,.12);
    box-shadow: 0 4px 24px rgba(15,37,69,.08);
    overflow: hidden;
    margin-bottom: 64px;
}
.pg-article-head {
    padding: 36px 48px 28px;
    border-bottom: 1px solid rgba(200,169,81,.15);
}
.pg-article-head .overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.pg-article-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.25;
}
.pg-article-body {
    padding: 36px 48px 44px;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.9;
    text-align: left;
}
.pg-article-body p { margin-bottom: 14px; }
.pg-article-body p:last-child { margin-bottom: 0; }

/* ===== STAFF SECTION ===== */
.pg-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.pg-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.pg-section-label { display: flex; align-items: center; gap: 14px; }
.pg-accent {
    width: 4px;
    height: 48px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--navy-light) 100%);
    border-radius: 4px;
    flex-shrink: 0;
}
.pg-label-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.pg-section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.2;
}

/* ===== STAFF GRID ===== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.staff-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200,169,81,.1);
    box-shadow: 0 3px 16px rgba(15,37,69,.08);
    transition: var(--trans);
    display: flex;
    flex-direction: column;
    animation: stfUp .5s ease both;
}
.staff-card:nth-child(1) { animation-delay: .05s; }
.staff-card:nth-child(2) { animation-delay: .12s; }
.staff-card:nth-child(3) { animation-delay: .19s; }
.staff-card:nth-child(4) { animation-delay: .26s; }
.staff-card:nth-child(5) { animation-delay: .33s; }
.staff-card:nth-child(6) { animation-delay: .40s; }

@keyframes stfUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15,37,69,.16);
    border-color: rgba(200,169,81,.3);
}

.staff-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #e8eef7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform .45s ease;
    display: block;
    background: #e8eef7;
}
.staff-card:hover .staff-photo img { transform: scale(1.03); }

.staff-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15,37,69,.75);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.staff-info {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.staff-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 6px;
}
.staff-divider {
    width: 36px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 10px;
    opacity: .7;
}
.staff-lavozim {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--gold);
    margin-bottom: 10px;
}
.staff-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.staff-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-light);
}
.staff-contact-item svg {
    flex-shrink: 0;
    opacity: .55;
}
.staff-contact-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.staff-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--navy);
    color: #fff !important;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 10px 16px;
    transition: var(--trans);
    align-self: flex-start;
    letter-spacing: .03em;
}
.staff-cta:hover { background: var(--gold); color: var(--navy) !important; }
.staff-cta .arrow { transition: transform .25s ease; }
.staff-cta:hover .arrow { transform: translateX(3px); }