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

body{
    background: #ffffff;
    color: #111111;
    font-family: "Inclusive Sans", sans-serif;
}

a{
    color: inherit;
    text-decoration: none;
}

/* CONTENEDOR GENERAL */

.bio-page{
    position: relative;
    min-height: 100vh;
    padding: 45px 60px 70px;
}

/* FLECHA */

.back{
    position:absolute;

    top:45px;
    left:60px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;
    line-height:1;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.back:hover{
    opacity:.55;
    transform:translateX(-4px);
}

/* MENÚ */

.menu{
    position:absolute;

    top:60px;
    right:60px;

    display:flex;
    flex-direction:column;
    align-items:flex-end;

    gap:2px;
}

.menu a{

    font-family:"Inclusive Sans",sans-serif;

    font-size:20px;
    font-weight:300;
    line-height:1;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.menu a:hover{

    opacity:.55;

    transform:translateX(-3px);

}

.menu .active{

    color:#9a3d3d;

}

/* CONTENIDO BIO */

.bio-content{
    width: 625px;
    margin: 65px auto 0;
}

.bio-content h1{
    margin-bottom: 45px;

    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;

    text-align: center;
}

.bio-photo{
    display: block;

    width: 625px;
    height: 938px;

    object-fit: cover;
}

.bio-text{
    margin-top: 30px;

    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
}

/* LINKS */

.contact-links{
    width: 625px;
    margin: 95px auto 130px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    font-size: 25px;
    line-height: 1.1;
}

.contact-links a:hover{
    opacity: .5;
}

/* PUNTOS */

.dot {
    position: absolute;

    width: 15px;
    height: 15px;

    background: #c7c2bc;
    border-radius: 50%;

    pointer-events: none;
}

.dot1{
    top: 35px;
    left: 30px;
}

.dot2{
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
}

.dot3{
    top: 35px;
    right: 30px;
}

.dot4{
    top: 31%;
    left: 30px;
}

.dot5{
    top: 31%;
    right: 30px;
}

.dot6{
    top: 68%;
    left: 30px;
}

.dot7{
    top: 68%;
    right: 30px;
}

/* FOOTER */

footer {
    width: min(1250px, calc(100% - 80px));

    margin: 140px auto 0;
    padding: 35px 0 42px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: start;

    border-top: 1px solid rgba(23, 23, 23, 0.22);
}


/* COLUMNA IZQUIERDA */

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 55px;

    justify-self: start;
}

.footer-left h3 {
    margin: 0;

    font-family: "Inclusive Sans", sans-serif;
    font-size: 15px;
    font-weight: 300;
}


/* COLUMNA CENTRAL */

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 22px;

    justify-self: center;
}


/* COLUMNA DERECHA */

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    justify-self: end;
}


/* TEXTOS Y LINKS */

.footer-left,
.footer-center,
.footer-right {
    font-family: "Inclusive Sans", sans-serif;
    font-size: 15px;
    font-weight: 300;
}

footer a {
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    text-decoration: none;
    color: #111111;

    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.55;
}

/* TABLET Y CELULAR */

@media (max-width: 760px){

    .bio-page{
        padding: 35px 24px 60px;
    }

    .back{

    top:35px;
    left:24px;

    width:48px;
    height:48px;

}

    .menu{

    top:45px;
    right:24px;

}

.menu a{

    font-size:16px;

}

    .bio-content{
        width: 100%;
        margin-top: 95px;
    }

    .bio-content h1{
        font-size: 46px;
        margin-bottom: 30px;
    }

    .bio-photo{
        width: 100%;
        height: auto;
        aspect-ratio: 625 / 938;
        object-fit: cover;
    }

    .bio-text{
        font-size: 22px;
    }

    .contact-links{
        width: 100%;
        margin: 70px auto 100px;
        font-size: 20px;
    }

    footer{
        grid-template-columns: 1fr 1fr;
        gap: 50px 20px;
    }

    .footer-right{
        align-items: flex-start;
    }
}