/*
 * AIBlocks — team member personal page (v2 per TZ 2026-05-20).
 * 4 blocks: hero / bio / services / cta. Email-only contact.
 */

#vtg-m-hero, #vtg-m-bio, #vtg-m-svc, #vtg-m-cta {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    font-family: var(--vtg-font);
    color: var(--vtg-color-text);
    -webkit-font-smoothing: antialiased;
}
#vtg-m-hero, #vtg-m-svc { background: #ffffff; }
#vtg-m-bio { background: var(--vtg-color-bg-light); }
#vtg-m-cta { background: var(--vtg-color-brand) !important; color: #fff !important; }

.vtg-m-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.vtg-m-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--vtg-color-brand);
    opacity: 0.45; margin-bottom: 16px;
}
.vtg-m-eyebrow::before {
    content: ''; width: 28px; height: 1px;
    background: var(--vtg-color-accent); display: block;
}
.vtg-m-title {
    font-size: clamp(26px, 3.2vw, 40px); font-weight: 700;
    color: var(--vtg-color-text); letter-spacing: -0.8px;
    line-height: 1.18; margin: 0 0 28px;
}

/* ─── 1. HERO ─── */
#vtg-m-hero .vtg-m-hero-grid {
    display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: center;
}
#vtg-m-hero .vtg-m-photo {
    aspect-ratio: 3/4; border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}
#vtg-m-hero .vtg-m-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block;
}
#vtg-m-hero .vtg-m-name {
    font-size: clamp(36px, 5vw, 60px); font-weight: 700;
    color: var(--vtg-color-text); letter-spacing: -2px;
    line-height: 1.05; margin: 0 0 12px;
}
#vtg-m-hero .vtg-m-role {
    font-size: 17px; font-weight: 500;
    color: var(--vtg-color-text-muted); margin: 0 0 8px;
}
#vtg-m-hero .vtg-m-spec {
    display: inline-block; font-size: 14px; font-weight: 600;
    color: var(--vtg-color-brand);
    background: var(--vtg-color-bg-pill);
    padding: 8px 16px; border-radius: 100px;
    margin: 0 0 20px;
}
#vtg-m-hero .vtg-m-meta {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    margin-bottom: 20px;
    font-size: 14px; color: var(--vtg-color-text-muted);
}
#vtg-m-hero .vtg-m-city, #vtg-m-hero .vtg-m-langs {
    display: inline-flex; align-items: center;
}
#vtg-m-hero .vtg-m-email {
    display: inline-block; font-size: 16px; font-weight: 600;
    color: var(--vtg-color-brand) !important; text-decoration: none !important;
    border-bottom: 1px dashed currentColor;
    margin-bottom: 28px;
}
#vtg-m-hero .vtg-m-email:hover { color: var(--vtg-color-accent) !important; }
#vtg-m-hero .vtg-m-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.vtg-m-btn-dark, .vtg-m-btn-light {
    display: inline-flex; align-items: center;
    text-decoration: none !important; font-size: 15px; font-weight: 600;
    padding: 14px 26px; border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vtg-m-btn-dark {
    background: var(--vtg-gradient-brand); color: #fff !important;
    box-shadow: 0 6px 16px rgba(31,44,55,0.2);
}
.vtg-m-btn-dark:hover {
    transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,44,55,0.30);
    color: #fff !important;
}
.vtg-m-btn-light {
    background: var(--vtg-color-tg); color: #fff !important;
}
.vtg-m-btn-light:hover {
    background: var(--vtg-color-tg-hover); transform: translateY(-2px);
    color: #fff !important;
}

/* ─── 2. ABOUT / BIO ─── */
#vtg-m-bio .vtg-m-bio-text {
    max-width: 880px; margin: 0 auto 32px;
    font-size: 16px; line-height: 1.75; color: var(--vtg-color-text);
}
#vtg-m-bio .vtg-m-bio-text p { margin: 0 0 18px; }
#vtg-m-bio .vtg-m-bio-text p:last-child { margin: 0; }
#vtg-m-bio .vtg-m-bio-bullets-title {
    max-width: 880px; margin: 0 auto 16px;
    font-size: 17px; font-weight: 700; color: var(--vtg-color-text);
}
#vtg-m-bio .vtg-m-bio-bullets {
    max-width: 880px; margin: 0 auto;
    padding: 0; list-style: none;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px;
}
#vtg-m-bio .vtg-m-bio-bullets li {
    position: relative; padding-left: 36px;
    font-size: 15px; line-height: 1.55; color: var(--vtg-color-text-muted);
}
#vtg-m-bio .vtg-m-bio-bullets li::before {
    content: '✓'; position: absolute; left: 0; top: -2px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--vtg-color-accent); color: #fff;
    font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
}

/* ─── 3. SERVICES (6 cards) ─── */
#vtg-m-svc .vtg-m-svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
#vtg-m-svc .vtg-m-svc-card {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 24px; border-radius: 16px;
    background: var(--vtg-color-bg-light);
    text-decoration: none !important; color: var(--vtg-color-text) !important;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
#vtg-m-svc .vtg-m-svc-card:hover {
    transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    background: #fff;
    color: var(--vtg-color-text) !important;
}
#vtg-m-svc .vtg-m-svc-ico {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--vtg-gradient-brand);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
#vtg-m-svc .vtg-m-svc-ico svg { width: 22px; height: 22px; fill: #fff; }
#vtg-m-svc .vtg-m-svc-name {
    flex: 1; font-size: 15px; font-weight: 600; color: var(--vtg-color-text);
}
#vtg-m-svc .vtg-m-svc-arrow {
    font-size: 20px; color: var(--vtg-color-brand); opacity: 0.4;
    transition: opacity 0.2s, transform 0.2s;
}
#vtg-m-svc .vtg-m-svc-card:hover .vtg-m-svc-arrow {
    opacity: 1; transform: translateX(3px); color: var(--vtg-color-accent);
}

/* ─── 4. CTA ─── */
#vtg-m-cta { text-align: center; margin-top: 40px; margin-bottom: 60px; }
#vtg-m-cta .vtg-m-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 24px;
}
#vtg-m-cta .vtg-m-cta-eyebrow::before, #vtg-m-cta .vtg-m-cta-eyebrow::after {
    content: ''; width: 24px; height: 1px; background: rgba(255,255,255,0.2); display: block;
}
#vtg-m-cta .vtg-m-cta-title {
    font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: #fff;
    letter-spacing: -0.8px; margin: 0 0 16px;
}
#vtg-m-cta .vtg-m-cta-sub {
    font-size: 17px; color: rgba(255,255,255,0.65); margin: 0 0 36px;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
#vtg-m-cta .vtg-m-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.vtg-m-cta-btn-main {
    display: inline-flex; align-items: center;
    background: #fff; color: var(--vtg-color-brand) !important;
    text-decoration: none !important; font-size: 15px; font-weight: 700;
    padding: 16px 32px; border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vtg-m-cta-btn-main:hover {
    transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    color: var(--vtg-color-brand) !important;
}
.vtg-m-cta-btn-sec {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.08); color: #fff !important;
    text-decoration: none !important; font-size: 15px; font-weight: 600;
    padding: 16px 32px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s, transform 0.2s;
}
.vtg-m-cta-btn-sec:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); color: #fff !important; }
#vtg-m-cta .vtg-m-cta-email {
    font-size: 14px; color: rgba(255,255,255,0.55); margin: 0;
}
#vtg-m-cta .vtg-m-cta-email a {
    color: #fff !important; text-decoration: none !important;
    border-bottom: 1px dashed rgba(255,255,255,0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    #vtg-m-hero, #vtg-m-bio, #vtg-m-svc, #vtg-m-cta {
        padding-top: 60px !important; padding-bottom: 60px !important;
    }
    .vtg-m-wrap { padding: 0 16px; }
    #vtg-m-hero .vtg-m-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    #vtg-m-hero .vtg-m-photo { max-width: 320px; margin: 0 auto; }
    #vtg-m-hero .vtg-m-hero-text { text-align: center; }
    #vtg-m-hero .vtg-m-meta { justify-content: center; }
    #vtg-m-hero .vtg-m-hero-btns { justify-content: center; }
    #vtg-m-bio .vtg-m-bio-bullets { grid-template-columns: 1fr; }
    #vtg-m-svc .vtg-m-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    #vtg-m-svc .vtg-m-svc-grid { grid-template-columns: 1fr; }
    #vtg-m-cta .vtg-m-cta-btns { flex-direction: column; align-items: center; }
    .vtg-m-cta-btn-main, .vtg-m-cta-btn-sec { width: 100%; justify-content: center; }
}
