.hero-integrated { min-height: 100vh; }

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-image-side {
    position: sticky;
    top: 0;
    height: 100vh;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content-side {
    padding: 2rem 8%;
    display: flex;
    align-items: center;
}

.content-wrapper { max-width: 600px; }

.label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.8rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.biography p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 0.8rem;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
}

.btn {
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.btn:hover { filter: brightness(1.1); }

.btn-insta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-image-side { height: 45vh; }
    .hero-content-side { padding: 2rem 1.5rem; justify-content: center; text-align: center; }
    .content-wrapper { margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .biography p { text-align: center; }
}

@media (max-width: 768px) {
    .hero-image-side { height: 40vh; }
    .hero-content-side { padding: 1.75rem 1.25rem; }
}

@media (max-width: 600px) {
    .hero-image-side { height: 35vh; }
    .hero-content-side { padding: 1.5rem 1rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-image-side { height: 28vh; }
    .hero-content-side { padding: 1rem 0.75rem; }
    .lead-text { font-size: 0.95rem; margin-bottom: 1rem; }
    .hero-actions { margin-top: 1.25rem; }
}
