@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f3;
    min-height: 100vh;
}

.card {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: #f5f5f3;
    overflow: hidden;
}

/* Left Side */
.card-left {
    width: 50%;
    flex-shrink: 0;
    padding: 50px 65px 50px 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f3;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.logo {
    width: 240px;
    height: auto;
}

.content {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.title {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #1a2236;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.name {
    font-family: 'EB Garamond', serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a2236;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bio {
    font-family: 'Lora', serif;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.bio p {
    margin-bottom: 16px;
}

.bio p:last-child {
    margin-bottom: 0;
}

.bio strong {
    font-weight: 700;
    color: #1a2236;
}

.bio em {
    font-style: italic;
}

/* Contact Info */
.contact-info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border: 1.5px solid #1a2236;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2236;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a2236;
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* Right Side */
.card-right {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.portrait {
    position: absolute;
    top: 0;
    left: -40%;
    width: 140%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Responsive */
@media (max-width: 850px) {
    .card {
        flex-direction: column;
    }

    .card-left {
        width: 100%;
        padding: 40px 35px;
    }

    .card-right {
        width: 100%;
        min-height: 400px;
        order: -1;
    }

    .name {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .card {
        box-shadow: none;
    }

    .card-left {
        padding: 30px 24px;
    }

    .name {
        font-size: 26px;
    }

    .card-right {
        min-height: 320px;
    }
}
